Commit eeb1bca50a8ea77642c8d1c8d3970704a4aef201

Authored by jameslimpiado
1 parent bf17edf2

Add .net sample.

Too many changes to show.

To preserve performance only 18 of 222 files are displayed.

  1 +using System.Web;
  2 +using System.Web.Optimization;
  3 +
  4 +namespace CWA.CpoOnline
  5 +{
  6 + public class BundleConfig
  7 + {
  8 + // For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862
  9 + public static void RegisterBundles(BundleCollection bundles)
  10 + {
  11 + bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
  12 +
  13 + "~/Scripts/jquery-{version}.js",
  14 + "~/Scripts/gridmvc.js",
  15 + "~/Scripts/site.js"
  16 + ));
  17 +
  18 + bundles.Add(new ScriptBundle("~/bundles/login").Include(
  19 + "~/Scripts/login.js"));
  20 +
  21 + bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
  22 + "~/Scripts/jquery.validate*"));
  23 +
  24 + // Use the development version of Modernizr to develop with and learn from. Then, when you're
  25 + // ready for production, use the build tool at http://modernizr.com to pick only the tests you need.
  26 + bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
  27 + "~/Scripts/modernizr-*"));
  28 +
  29 + bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
  30 + "~/Scripts/popper.js",
  31 + "~/Scripts/bootstrap.js",
  32 + "~/Scripts/respond.js"));
  33 +
  34 + bundles.Add(new StyleBundle("~/Content/css").Include(
  35 + "~/Content/bootstrap.css",
  36 + "~/Content/font-awesome.css",
  37 + "~/Content/gridmvc.css",
  38 + "~/Content/ionicons.css",
  39 + "~/Content/site.css"));
  40 +
  41 + bundles.Add(new ScriptBundle("~/bundles/jqueryui").Include(
  42 + "~/Scripts/jquery-ui-{version}.js"));
  43 +
  44 + bundles.Add(new StyleBundle("~/Content/themes/base/css").Include(
  45 + "~/Content/themes/base/jquery.ui.core.css",
  46 + "~/Content/themes/base/jquery.ui.resizable.css",
  47 + "~/Content/themes/base/jquery.ui.selectable.css",
  48 + "~/Content/themes/base/jquery.ui.accordion.css",
  49 + "~/Content/themes/base/jquery.ui.autocomplete.css",
  50 + "~/Content/themes/base/jquery.ui.button.css",
  51 + "~/Content/themes/base/jquery.ui.dialog.css",
  52 + "~/Content/themes/base/jquery.ui.slider.css",
  53 + "~/Content/themes/base/jquery.ui.tabs.css",
  54 + "~/Content/themes/base/jquery.ui.datepicker.css",
  55 + "~/Content/themes/base/jquery.ui.progressbar.css",
  56 + "~/Content/themes/base/jquery.ui.theme.css"));
  57 + }
  58 + }
  59 +}
... ...
  1 +using System.Web;
  2 +using System.Web.Mvc;
  3 +
  4 +namespace CWA.CpoOnline
  5 +{
  6 + public class FilterConfig
  7 + {
  8 + public static void RegisterGlobalFilters(GlobalFilterCollection filters)
  9 + {
  10 + filters.Add(new HandleErrorAttribute());
  11 + }
  12 + }
  13 +}
... ...
  1 +using System;
  2 +using System.Collections.Generic;
  3 +using System.Data.Entity;
  4 +using System.Linq;
  5 +using System.Security.Claims;
  6 +using System.Threading.Tasks;
  7 +using System.Web;
  8 +using CWA.CpoOnline.Helpers;
  9 +using Microsoft.AspNet.Identity;
  10 +using Microsoft.AspNet.Identity.EntityFramework;
  11 +using Microsoft.AspNet.Identity.Owin;
  12 +using Microsoft.Owin;
  13 +using Microsoft.Owin.Security;
  14 +using CWA.CpoOnline.Models;
  15 +
  16 +namespace CWA.CpoOnline
  17 +{
  18 + public class EmailService : IIdentityMessageService
  19 + {
  20 + public Task SendAsync(IdentityMessage message)
  21 + {
  22 + // Plug in your email service here to send an email.
  23 + return EmailHelper.SendSmptEmail(message);
  24 + }
  25 + }
  26 +
  27 + public class SmsService : IIdentityMessageService
  28 + {
  29 + public Task SendAsync(IdentityMessage message)
  30 + {
  31 + // Plug in your SMS service here to send a text message.
  32 + throw new NotImplementedException("Identity SMS service");
  33 + return Task.FromResult(0);
  34 + }
  35 + }
  36 +
  37 + // Configure the application user manager used in this application. UserManager is defined in ASP.NET Identity and is used by the application.
  38 + public class ApplicationUserManager : UserManager<ApplicationUser>
  39 + {
  40 + public ApplicationUserManager(IUserStore<ApplicationUser> store)
  41 + : base(store)
  42 + {
  43 + }
  44 +
  45 + public static ApplicationUserManager Create(IdentityFactoryOptions<ApplicationUserManager> options, IOwinContext context)
  46 + {
  47 + var manager = new ApplicationUserManager(new UserStore<ApplicationUser>(context.Get<ApplicationDbContext>()));
  48 + // Configure validation logic for usernames
  49 + manager.UserValidator = new UserValidator<ApplicationUser>(manager)
  50 + {
  51 + AllowOnlyAlphanumericUserNames = true,
  52 + RequireUniqueEmail = true
  53 + };
  54 +
  55 + // Configure validation logic for passwords
  56 + manager.PasswordValidator = new PasswordValidator
  57 + {
  58 + RequiredLength = 9,
  59 + RequireNonLetterOrDigit = true,
  60 + RequireDigit = true,
  61 + RequireLowercase = true,
  62 + RequireUppercase = true,
  63 + };
  64 +
  65 + // Configure user lockout defaults
  66 + manager.UserLockoutEnabledByDefault = true;
  67 + manager.DefaultAccountLockoutTimeSpan = TimeSpan.FromMinutes(5);
  68 + manager.MaxFailedAccessAttemptsBeforeLockout = 5;
  69 +
  70 + // Register two factor authentication providers. This application uses Phone and Emails as a step of receiving a code for verifying the user
  71 + // You can write your own provider and plug it in here.
  72 + manager.RegisterTwoFactorProvider("Phone Code", new PhoneNumberTokenProvider<ApplicationUser>
  73 + {
  74 + MessageFormat = "Your security code is {0}"
  75 + });
  76 + manager.RegisterTwoFactorProvider("Email Code", new EmailTokenProvider<ApplicationUser>
  77 + {
  78 + Subject = "Security Code",
  79 + BodyFormat = "Your security code is {0}"
  80 + });
  81 + manager.EmailService = new EmailService();
  82 + manager.SmsService = new SmsService();
  83 + var dataProtectionProvider = options.DataProtectionProvider;
  84 + if (dataProtectionProvider != null)
  85 + {
  86 + manager.UserTokenProvider =
  87 + new DataProtectorTokenProvider<ApplicationUser>(dataProtectionProvider.Create("ASP.NET Identity"));
  88 + }
  89 + return manager;
  90 + }
  91 + }
  92 +
  93 + // Configure the application sign-in manager which is used in this application.
  94 + public class ApplicationSignInManager : SignInManager<ApplicationUser, string>
  95 + {
  96 + public ApplicationSignInManager(ApplicationUserManager userManager, IAuthenticationManager authenticationManager)
  97 + : base(userManager, authenticationManager)
  98 + {
  99 + }
  100 +
  101 + public override Task<ClaimsIdentity> CreateUserIdentityAsync(ApplicationUser user)
  102 + {
  103 + return user.GenerateUserIdentityAsync((ApplicationUserManager)UserManager);
  104 + }
  105 +
  106 + public static ApplicationSignInManager Create(IdentityFactoryOptions<ApplicationSignInManager> options, IOwinContext context)
  107 + {
  108 + return new ApplicationSignInManager(context.GetUserManager<ApplicationUserManager>(), context.Authentication);
  109 + }
  110 + }
  111 +}
... ...
  1 +using System;
  2 +using System.Collections.Generic;
  3 +using System.Linq;
  4 +using System.Web;
  5 +using System.Web.Mvc;
  6 +using System.Web.Routing;
  7 +
  8 +namespace CWA.CpoOnline
  9 +{
  10 + public class RouteConfig
  11 + {
  12 + public static void RegisterRoutes(RouteCollection routes)
  13 + {
  14 + routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
  15 +
  16 + routes.MapRoute(
  17 + name: "Default",
  18 + url: "{controller}/{action}/{id}",
  19 + defaults: new { controller = "home", action = "index", id = UrlParameter.Optional }
  20 + );
  21 + }
  22 + }
  23 +}
... ...
  1 +using System;
  2 +using Microsoft.AspNet.Identity;
  3 +using Microsoft.AspNet.Identity.Owin;
  4 +using Microsoft.Owin;
  5 +using Microsoft.Owin.Security.Cookies;
  6 +using Microsoft.Owin.Security.Google;
  7 +using Owin;
  8 +using CWA.CpoOnline.Models;
  9 +
  10 +namespace CWA.CpoOnline
  11 +{
  12 + public partial class Startup
  13 + {
  14 + // For more information on configuring authentication, please visit http://go.microsoft.com/fwlink/?LinkId=301864
  15 + public void ConfigureAuth(IAppBuilder app)
  16 + {
  17 + // Configure the db context, user manager and signin manager to use a single instance per request
  18 + app.CreatePerOwinContext(ApplicationDbContext.Create);
  19 + app.CreatePerOwinContext<ApplicationUserManager>(ApplicationUserManager.Create);
  20 + app.CreatePerOwinContext<ApplicationSignInManager>(ApplicationSignInManager.Create);
  21 +
  22 + // Enable the application to use a cookie to store information for the signed in user
  23 + // and to use a cookie to temporarily store information about a user logging in with a third party login provider
  24 + // Configure the sign in cookie
  25 + app.UseCookieAuthentication(new CookieAuthenticationOptions
  26 + {
  27 + AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
  28 + LoginPath = new PathString("/Account/Login"),
  29 + Provider = new CookieAuthenticationProvider
  30 + {
  31 + // Enables the application to validate the security stamp when the user logs in.
  32 + // This is a security feature which is used when you change a password or add an external login to your account.
  33 + OnValidateIdentity = SecurityStampValidator.OnValidateIdentity<ApplicationUserManager, ApplicationUser>(
  34 + validateInterval: TimeSpan.FromMinutes(30),
  35 + regenerateIdentity: (manager, user) => user.GenerateUserIdentityAsync(manager))
  36 + }
  37 + });
  38 + app.UseExternalSignInCookie(DefaultAuthenticationTypes.ExternalCookie);
  39 +
  40 + // Enables the application to temporarily store user information when they are verifying the second factor in the two-factor authentication process.
  41 + app.UseTwoFactorSignInCookie(DefaultAuthenticationTypes.TwoFactorCookie, TimeSpan.FromMinutes(5));
  42 +
  43 + // Enables the application to remember the second login verification factor such as phone or email.
  44 + // Once you check this option, your second step of verification during the login process will be remembered on the device where you logged in from.
  45 + // This is similar to the RememberMe option when you log in.
  46 + app.UseTwoFactorRememberBrowserCookie(DefaultAuthenticationTypes.TwoFactorRememberBrowserCookie);
  47 +
  48 + // Uncomment the following lines to enable logging in with third party login providers
  49 + //app.UseMicrosoftAccountAuthentication(
  50 + // clientId: "",
  51 + // clientSecret: "");
  52 +
  53 + //app.UseTwitterAuthentication(
  54 + // consumerKey: "",
  55 + // consumerSecret: "");
  56 +
  57 + //app.UseFacebookAuthentication(
  58 + // appId: "",
  59 + // appSecret: "");
  60 +
  61 + //app.UseGoogleAuthentication(new GoogleOAuth2AuthenticationOptions()
  62 + //{
  63 + // ClientId = "",
  64 + // ClientSecret = ""
  65 + //});
  66 + }
  67 + }
  68 +}
\ No newline at end of file
... ...
  1 +using System;
  2 +using System.Collections.Generic;
  3 +using System.Linq;
  4 +using System.Web.Http;
  5 +
  6 +namespace CWA.CpoOnline
  7 +{
  8 + public static class WebApiConfig
  9 + {
  10 + public static void Register(HttpConfiguration config)
  11 + {
  12 + // Web API configuration and services
  13 +
  14 + // Web API routes
  15 + config.MapHttpAttributeRoutes();
  16 +
  17 + config.Routes.MapHttpRoute(
  18 + name: "DefaultApi",
  19 + routeTemplate: "api/{controller}/{id}",
  20 + defaults: new { id = RouteParameter.Optional }
  21 + );
  22 + }
  23 + }
  24 +}
... ...
  1 +<?xml version="1.0" encoding="utf-8"?>
  2 +<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3 + <Import Project="..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7\build\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props" Condition="Exists('..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7\build\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" />
  4 + <Import Project="..\packages\Microsoft.Net.Compilers.2.3.2\build\Microsoft.Net.Compilers.props" Condition="Exists('..\packages\Microsoft.Net.Compilers.2.3.2\build\Microsoft.Net.Compilers.props')" />
  5 + <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  6 + <PropertyGroup>
  7 + <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  8 + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  9 + <ProductVersion>
  10 + </ProductVersion>
  11 + <SchemaVersion>2.0</SchemaVersion>
  12 + <ProjectGuid>{827304C0-8CE2-4449-B602-A54AAE08FFB6}</ProjectGuid>
  13 + <ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
  14 + <OutputType>Library</OutputType>
  15 + <AppDesignerFolder>Properties</AppDesignerFolder>
  16 + <RootNamespace>CWA.CpoOnline</RootNamespace>
  17 + <AssemblyName>CWA.CpoOnline</AssemblyName>
  18 + <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  19 + <MvcBuildViews>false</MvcBuildViews>
  20 + <UseIISExpress>true</UseIISExpress>
  21 + <IISExpressSSLPort />
  22 + <IISExpressAnonymousAuthentication />
  23 + <IISExpressWindowsAuthentication />
  24 + <IISExpressUseClassicPipelineMode />
  25 + <UseGlobalApplicationHostFile />
  26 + <NuGetPackageImportStamp>
  27 + </NuGetPackageImportStamp>
  28 + <Use64BitIISExpress />
  29 + </PropertyGroup>
  30 + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  31 + <DebugSymbols>true</DebugSymbols>
  32 + <DebugType>full</DebugType>
  33 + <Optimize>false</Optimize>
  34 + <OutputPath>bin\</OutputPath>
  35 + <DefineConstants>DEBUG;TRACE</DefineConstants>
  36 + <ErrorReport>prompt</ErrorReport>
  37 + <WarningLevel>4</WarningLevel>
  38 + </PropertyGroup>
  39 + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  40 + <DebugType>pdbonly</DebugType>
  41 + <Optimize>true</Optimize>
  42 + <OutputPath>bin\</OutputPath>
  43 + <DefineConstants>TRACE</DefineConstants>
  44 + <ErrorReport>prompt</ErrorReport>
  45 + <WarningLevel>4</WarningLevel>
  46 + </PropertyGroup>
  47 + <ItemGroup>
  48 + <Reference Include="Antlr3.Runtime, Version=3.5.0.2, Culture=neutral, PublicKeyToken=eb42632606e9261f, processorArchitecture=MSIL">
  49 + <HintPath>..\packages\Antlr.3.5.0.2\lib\Antlr3.Runtime.dll</HintPath>
  50 + </Reference>
  51 + <Reference Include="BxTools, Version=1.9.3.0, Culture=neutral, PublicKeyToken=41af13c5660799fd, processorArchitecture=MSIL">
  52 + <HintPath>..\packages\BxTools.1.9.3\lib\net46\BxTools.dll</HintPath>
  53 + <Private>True</Private>
  54 + </Reference>
  55 + <Reference Include="BxTools.Email, Version=1.1.1.0, Culture=neutral, processorArchitecture=MSIL">
  56 + <HintPath>..\packages\BxTools.Email.1.1.1\lib\net45\BxTools.Email.dll</HintPath>
  57 + </Reference>
  58 + <Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
  59 + <HintPath>..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.dll</HintPath>
  60 + </Reference>
  61 + <Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
  62 + <HintPath>..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.SqlServer.dll</HintPath>
  63 + </Reference>
  64 + <Reference Include="GridMvc, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  65 + <HintPath>..\packages\Grid.Mvc.3.0.0\lib\net40\GridMvc.dll</HintPath>
  66 + </Reference>
  67 + <Reference Include="Microsoft.AspNet.Identity.Core, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  68 + <HintPath>..\packages\Microsoft.AspNet.Identity.Core.2.2.1\lib\net45\Microsoft.AspNet.Identity.Core.dll</HintPath>
  69 + </Reference>
  70 + <Reference Include="Microsoft.AspNet.Identity.EntityFramework, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  71 + <HintPath>..\packages\Microsoft.AspNet.Identity.EntityFramework.2.2.1\lib\net45\Microsoft.AspNet.Identity.EntityFramework.dll</HintPath>
  72 + </Reference>
  73 + <Reference Include="Microsoft.AspNet.Identity.Owin, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  74 + <HintPath>..\packages\Microsoft.AspNet.Identity.Owin.2.2.1\lib\net45\Microsoft.AspNet.Identity.Owin.dll</HintPath>
  75 + </Reference>
  76 + <Reference Include="Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  77 + <HintPath>..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll</HintPath>
  78 + </Reference>
  79 + <Reference Include="Microsoft.CSharp" />
  80 + <Reference Include="Microsoft.Owin, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  81 + <HintPath>..\packages\Microsoft.Owin.3.1.0\lib\net45\Microsoft.Owin.dll</HintPath>
  82 + </Reference>
  83 + <Reference Include="Microsoft.Owin.Host.SystemWeb, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  84 + <HintPath>..\packages\Microsoft.Owin.Host.SystemWeb.3.1.0\lib\net45\Microsoft.Owin.Host.SystemWeb.dll</HintPath>
  85 + </Reference>
  86 + <Reference Include="Microsoft.Owin.Security, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  87 + <HintPath>..\packages\Microsoft.Owin.Security.3.1.0\lib\net45\Microsoft.Owin.Security.dll</HintPath>
  88 + </Reference>
  89 + <Reference Include="Microsoft.Owin.Security.Cookies, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  90 + <HintPath>..\packages\Microsoft.Owin.Security.Cookies.3.1.0\lib\net45\Microsoft.Owin.Security.Cookies.dll</HintPath>
  91 + </Reference>
  92 + <Reference Include="Microsoft.Owin.Security.Facebook, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  93 + <HintPath>..\packages\Microsoft.Owin.Security.Facebook.3.1.0\lib\net45\Microsoft.Owin.Security.Facebook.dll</HintPath>
  94 + </Reference>
  95 + <Reference Include="Microsoft.Owin.Security.Google, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  96 + <HintPath>..\packages\Microsoft.Owin.Security.Google.3.1.0\lib\net45\Microsoft.Owin.Security.Google.dll</HintPath>
  97 + </Reference>
  98 + <Reference Include="Microsoft.Owin.Security.MicrosoftAccount, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  99 + <HintPath>..\packages\Microsoft.Owin.Security.MicrosoftAccount.3.1.0\lib\net45\Microsoft.Owin.Security.MicrosoftAccount.dll</HintPath>
  100 + </Reference>
  101 + <Reference Include="Microsoft.Owin.Security.OAuth, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  102 + <HintPath>..\packages\Microsoft.Owin.Security.OAuth.3.1.0\lib\net45\Microsoft.Owin.Security.OAuth.dll</HintPath>
  103 + </Reference>
  104 + <Reference Include="Microsoft.Owin.Security.Twitter, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  105 + <HintPath>..\packages\Microsoft.Owin.Security.Twitter.3.1.0\lib\net45\Microsoft.Owin.Security.Twitter.dll</HintPath>
  106 + </Reference>
  107 + <Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  108 + <HintPath>..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
  109 + <Private>True</Private>
  110 + </Reference>
  111 + <Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  112 + <HintPath>..\packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
  113 + </Reference>
  114 + <Reference Include="Omu.ValueInjecter, Version=3.1.1.0, Culture=neutral, PublicKeyToken=c7694541b0ac80e4, processorArchitecture=MSIL">
  115 + <HintPath>..\packages\ValueInjecter.3.1.1.5\lib\net40\Omu.ValueInjecter.dll</HintPath>
  116 + </Reference>
  117 + <Reference Include="Owin, Version=1.0.0.0, Culture=neutral, PublicKeyToken=f0ebd12fd5e55cc5, processorArchitecture=MSIL">
  118 + <HintPath>..\packages\Owin.1.0\lib\net40\Owin.dll</HintPath>
  119 + </Reference>
  120 + <Reference Include="System" />
  121 + <Reference Include="System.Data" />
  122 + <Reference Include="System.Drawing" />
  123 + <Reference Include="System.Net.Http.Formatting, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  124 + <HintPath>..\packages\Microsoft.AspNet.WebApi.Client.5.2.3\lib\net45\System.Net.Http.Formatting.dll</HintPath>
  125 + </Reference>
  126 + <Reference Include="System.Web.DynamicData" />
  127 + <Reference Include="System.Web.Entity" />
  128 + <Reference Include="System.Web.ApplicationServices" />
  129 + <Reference Include="System.ComponentModel.DataAnnotations" />
  130 + <Reference Include="System.Core" />
  131 + <Reference Include="System.Data.DataSetExtensions" />
  132 + <Reference Include="System.Web.Helpers, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  133 + <HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.Helpers.dll</HintPath>
  134 + </Reference>
  135 + <Reference Include="System.Web.Http, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  136 + <HintPath>..\packages\Microsoft.AspNet.WebApi.Core.5.2.3\lib\net45\System.Web.Http.dll</HintPath>
  137 + </Reference>
  138 + <Reference Include="System.Web.Http.WebHost, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  139 + <HintPath>..\packages\Microsoft.AspNet.WebApi.WebHost.5.2.3\lib\net45\System.Web.Http.WebHost.dll</HintPath>
  140 + </Reference>
  141 + <Reference Include="System.Web.Mvc, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  142 + <HintPath>..\packages\Microsoft.AspNet.Mvc.5.2.3\lib\net45\System.Web.Mvc.dll</HintPath>
  143 + </Reference>
  144 + <Reference Include="System.Web.Optimization, Version=1.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  145 + <HintPath>..\packages\Microsoft.AspNet.Web.Optimization.1.1.3\lib\net40\System.Web.Optimization.dll</HintPath>
  146 + </Reference>
  147 + <Reference Include="System.Web.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  148 + <HintPath>..\packages\Microsoft.AspNet.Razor.3.2.3\lib\net45\System.Web.Razor.dll</HintPath>
  149 + </Reference>
  150 + <Reference Include="System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  151 + <HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.dll</HintPath>
  152 + </Reference>
  153 + <Reference Include="System.Web.WebPages.Deployment, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  154 + <HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.Deployment.dll</HintPath>
  155 + </Reference>
  156 + <Reference Include="System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  157 + <HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.Razor.dll</HintPath>
  158 + </Reference>
  159 + <Reference Include="System.Xml.Linq" />
  160 + <Reference Include="System.Web" />
  161 + <Reference Include="System.Web.Extensions" />
  162 + <Reference Include="System.Web.Abstractions" />
  163 + <Reference Include="System.Web.Routing" />
  164 + <Reference Include="System.Xml" />
  165 + <Reference Include="System.Configuration" />
  166 + <Reference Include="System.Web.Services" />
  167 + <Reference Include="System.EnterpriseServices" />
  168 + <Reference Include="System.Net.Http">
  169 + </Reference>
  170 + <Reference Include="System.Net.Http.WebRequest">
  171 + </Reference>
  172 + <Reference Include="WebGrease, Version=1.6.5135.21930, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  173 + <HintPath>..\packages\WebGrease.1.6.0\lib\WebGrease.dll</HintPath>
  174 + </Reference>
  175 + </ItemGroup>
  176 + <ItemGroup>
  177 + <Compile Include="App_Start\BundleConfig.cs" />
  178 + <Compile Include="App_Start\FilterConfig.cs" />
  179 + <Compile Include="App_Start\IdentityConfig.cs" />
  180 + <Compile Include="App_Start\RouteConfig.cs" />
  181 + <Compile Include="App_Start\Startup.Auth.cs" />
  182 + <Compile Include="App_Start\WebApiConfig.cs" />
  183 + <Compile Include="Controllers\AccountController.cs" />
  184 + <Compile Include="Controllers\ChartController.cs" />
  185 + <Compile Include="Controllers\HomeController.cs" />
  186 + <Compile Include="Controllers\SectorsController.cs" />
  187 + <Compile Include="Controllers\SettingsController.cs" />
  188 + <Compile Include="Controllers\SymbolsController.cs" />
  189 + <Compile Include="Controllers\SystemController.cs" />
  190 + <Compile Include="Controllers\UsersController.cs" />
  191 + <Compile Include="Extensions\GenericPrincipalExtensions.cs" />
  192 + <Compile Include="Global.asax.cs">
  193 + <DependentUpon>Global.asax</DependentUpon>
  194 + </Compile>
  195 + <Compile Include="Helpers\ChartHelper.cs" />
  196 + <Compile Include="Helpers\CurrentUser.cs" />
  197 + <Compile Include="Helpers\DataSeeder.cs" />
  198 + <Compile Include="Helpers\EmailHelper.cs" />
  199 + <Compile Include="Helpers\HardCode.cs" />
  200 + <Compile Include="Helpers\WebConfig.cs" />
  201 + <Compile Include="Models\AccountViewModels.cs" />
  202 + <Compile Include="Models\CpoClaimsAndRoles.cs" />
  203 + <Compile Include="Models\CpoConstants.cs" />
  204 + <Compile Include="Models\IdentityModels.cs" />
  205 + <Compile Include="Models\ManageViewModels.cs" />
  206 + <Compile Include="Models\CpoViewModels.cs" />
  207 + <Compile Include="Models\UserSetting.cs" />
  208 + <Compile Include="Models\UserViewModels.cs" />
  209 + <Compile Include="Properties\AssemblyInfo.cs" />
  210 + <Compile Include="Startup.cs" />
  211 + </ItemGroup>
  212 + <ItemGroup>
  213 + <Content Include="Content\apple-touch-icon.png" />
  214 + <Content Include="Content\bootstrap-theme.css" />
  215 + <Content Include="Content\bootstrap-theme.min.css" />
  216 + <Content Include="Content\bootstrap.css" />
  217 + <Content Include="Content\bootstrap.min.css" />
  218 + <Content Include="Content\charts\empty.txt" />
  219 + <Content Include="Content\favicon.ico" />
  220 + <Content Include="Content\font-awesome.css" />
  221 + <Content Include="Content\font-awesome.min.css">
  222 + <DependentUpon>font-awesome.css</DependentUpon>
  223 + </Content>
  224 + <Content Include="Content\bootstrap.min.css.map" />
  225 + <Content Include="Content\bootstrap.css.map" />
  226 + <Content Include="Content\bootstrap-theme.min.css.map" />
  227 + <Content Include="Content\bootstrap-theme.css.map" />
  228 + <None Include="Content\Gridmvc.less" />
  229 + <Content Include="Content\Gridmvc.css">
  230 + <DependentUpon>Gridmvc.less</DependentUpon>
  231 + </Content>
  232 + <Content Include="Content\Gridmvc.min.css">
  233 + <DependentUpon>Gridmvc.css</DependentUpon>
  234 + </Content>
  235 + <Content Include="Content\img\dropdown-arrow%402x.png" />
  236 + <Content Include="Content\img\dropdown-arrow.png" />
  237 + <Content Include="Content\img\filter-clear%402x.png" />
  238 + <Content Include="Content\img\filter-clear.png" />
  239 + <Content Include="Content\img\filter-off%402x.png" />
  240 + <Content Include="Content\img\filter-off.png" />
  241 + <Content Include="Content\img\filter-on%402x.png" />
  242 + <Content Include="Content\img\filter-on.png" />
  243 + <Content Include="Content\img\Logo-1024.png" />
  244 + <Content Include="Content\img\Logo-128.png" />
  245 + <Content Include="Content\img\Logo-16.png" />
  246 + <Content Include="Content\img\Logo-24.png" />
  247 + <Content Include="Content\img\Logo-256.png" />
  248 + <Content Include="Content\img\Logo-30.png" />
  249 + <Content Include="Content\img\Logo-32.png" />
  250 + <Content Include="Content\img\Logo-48.png" />
  251 + <Content Include="Content\img\Logo-64.png" />
  252 + <Content Include="Content\img\Logo-80.png" />
  253 + <Content Include="Content\img\Logo-96.png" />
  254 + <Content Include="Content\img\logo-footer-16.png" />
  255 + <Content Include="Content\img\logo-footer-24.png" />
  256 + <Content Include="Content\img\logo-footer-32.png" />
  257 + <Content Include="Content\img\logo-footer-48.png" />
  258 + <Content Include="Content\img\logo-footer-64.png" />
  259 + <Content Include="Content\img\logo-footer-80.png" />
  260 + <Content Include="Content\img\logo-footer-96.png" />
  261 + <Content Include="Content\ionicons.css" />
  262 + <Content Include="Content\ionicons.min.css">
  263 + <DependentUpon>ionicons.css</DependentUpon>
  264 + </Content>
  265 + <Content Include="Content\Site.css">
  266 + <DependentUpon>Site.less</DependentUpon>
  267 + </Content>
  268 + <Content Include="Content\Site.min.css">
  269 + <DependentUpon>Site.css</DependentUpon>
  270 + </Content>
  271 + <Content Include="Content\themes\base\accordion.css" />
  272 + <Content Include="Content\themes\base\all.css" />
  273 + <Content Include="Content\themes\base\autocomplete.css" />
  274 + <Content Include="Content\themes\base\base.css" />
  275 + <Content Include="Content\themes\base\button.css" />
  276 + <Content Include="Content\themes\base\core.css" />
  277 + <Content Include="Content\themes\base\datepicker.css" />
  278 + <Content Include="Content\themes\base\dialog.css" />
  279 + <Content Include="Content\themes\base\draggable.css" />
  280 + <Content Include="Content\themes\base\images\ui-bg_flat_0_aaaaaa_40x100.png" />
  281 + <Content Include="Content\themes\base\images\ui-bg_flat_75_ffffff_40x100.png" />
  282 + <Content Include="Content\themes\base\images\ui-bg_glass_55_fbf9ee_1x400.png" />
  283 + <Content Include="Content\themes\base\images\ui-bg_glass_65_ffffff_1x400.png" />
  284 + <Content Include="Content\themes\base\images\ui-bg_glass_75_dadada_1x400.png" />
  285 + <Content Include="Content\themes\base\images\ui-bg_glass_75_e6e6e6_1x400.png" />
  286 + <Content Include="Content\themes\base\images\ui-bg_glass_95_fef1ec_1x400.png" />
  287 + <Content Include="Content\themes\base\images\ui-bg_highlight-soft_75_cccccc_1x100.png" />
  288 + <Content Include="Content\themes\base\images\ui-icons_222222_256x240.png" />
  289 + <Content Include="Content\themes\base\images\ui-icons_2e83ff_256x240.png" />
  290 + <Content Include="Content\themes\base\images\ui-icons_444444_256x240.png" />
  291 + <Content Include="Content\themes\base\images\ui-icons_454545_256x240.png" />
  292 + <Content Include="Content\themes\base\images\ui-icons_555555_256x240.png" />
  293 + <Content Include="Content\themes\base\images\ui-icons_777620_256x240.png" />
  294 + <Content Include="Content\themes\base\images\ui-icons_777777_256x240.png" />
  295 + <Content Include="Content\themes\base\images\ui-icons_888888_256x240.png" />
  296 + <Content Include="Content\themes\base\images\ui-icons_cc0000_256x240.png" />
  297 + <Content Include="Content\themes\base\images\ui-icons_cd0a0a_256x240.png" />
  298 + <Content Include="Content\themes\base\images\ui-icons_ffffff_256x240.png" />
  299 + <Content Include="Content\themes\base\jquery-ui.css" />
  300 + <Content Include="Content\themes\base\jquery-ui.min.css" />
  301 + <Content Include="Content\themes\base\menu.css" />
  302 + <Content Include="Content\themes\base\progressbar.css" />
  303 + <Content Include="Content\themes\base\resizable.css" />
  304 + <Content Include="Content\themes\base\selectable.css" />
  305 + <Content Include="Content\themes\base\selectmenu.css" />
  306 + <Content Include="Content\themes\base\slider.css" />
  307 + <Content Include="Content\themes\base\sortable.css" />
  308 + <Content Include="Content\themes\base\spinner.css" />
  309 + <Content Include="Content\themes\base\tabs.css" />
  310 + <Content Include="Content\themes\base\theme.css" />
  311 + <Content Include="Content\themes\base\tooltip.css" />
  312 + <Content Include="favicon.ico" />
  313 + <Content Include="fonts\fontawesome-webfont.svg" />
  314 + <Content Include="fonts\glyphicons-halflings-regular.svg" />
  315 + <Content Include="fonts\ionicons.svg" />
  316 + <Content Include="Global.asax" />
  317 + <None Include="bundleconfig.json" />
  318 + <None Include="compilerconfig.json" />
  319 + <None Include="compilerconfig.json.defaults">
  320 + <DependentUpon>compilerconfig.json</DependentUpon>
  321 + </None>
  322 + <None Include="Content\Site.less" />
  323 + <Content Include="fonts\fontawesome-webfont.eot" />
  324 + <Content Include="fonts\fontawesome-webfont.ttf" />
  325 + <Content Include="fonts\fontawesome-webfont.woff" />
  326 + <Content Include="fonts\fontawesome-webfont.woff2" />
  327 + <Content Include="fonts\FontAwesome.otf" />
  328 + <Content Include="fonts\ionicons.eot" />
  329 + <Content Include="fonts\ionicons.ttf" />
  330 + <Content Include="fonts\ionicons.woff" />
  331 + <Content Include="Grid.mvc.readme" />
  332 + <Content Include="fonts\glyphicons-halflings-regular.woff2" />
  333 + <Content Include="fonts\glyphicons-halflings-regular.woff" />
  334 + <Content Include="fonts\glyphicons-halflings-regular.ttf" />
  335 + <Content Include="fonts\glyphicons-halflings-regular.eot" />
  336 + <None Include="packages.config" />
  337 + <None Include="Properties\PublishProfiles\Localhost.pubxml" />
  338 + <None Include="Properties\PublishProfiles\ptiweb - FTP.pubxml" />
  339 + <None Include="Properties\PublishProfiles\ptiweb - Web Deploy.pubxml" />
  340 + <None Include="Properties\PublishProfiles\USAPPD04.pubxml" />
  341 + <None Include="Scripts\jquery-3.1.1.intellisense.js" />
  342 + <Content Include="Scripts\bootstrap.js" />
  343 + <Content Include="Scripts\bootstrap.min.js" />
  344 + <Content Include="Scripts\gridmvc.js" />
  345 + <Content Include="Scripts\gridmvc.lang.ru.js" />
  346 + <Content Include="Scripts\gridmvc.min.js" />
  347 + <None Include="Scripts\jquery-3.1.1-vsdoc.js" />
  348 + <Content Include="Scripts\jquery-3.1.1.js" />
  349 + <Content Include="Scripts\jquery-3.1.1.min.js" />
  350 + <Content Include="Scripts\jquery-3.1.1.slim.js" />
  351 + <Content Include="Scripts\jquery-3.1.1.slim.min.js" />
  352 + <None Include="Scripts\jquery.validate-vsdoc.js" />
  353 + <Content Include="Scripts\jquery-ui-1.12.1.js" />
  354 + <Content Include="Scripts\jquery-ui-1.12.1.min.js" />
  355 + <Content Include="Scripts\jquery.validate.js" />
  356 + <Content Include="Scripts\jquery.validate.min.js" />
  357 + <Content Include="Scripts\jquery.validate.unobtrusive.js" />
  358 + <Content Include="Scripts\jquery.validate.unobtrusive.min.js" />
  359 + <Content Include="Scripts\login.js" />
  360 + <Content Include="Scripts\modernizr-2.8.3.js" />
  361 + <Content Include="Scripts\popper.js" />
  362 + <Content Include="Scripts\popper.min.js" />
  363 + <Content Include="Scripts\respond.js" />
  364 + <Content Include="Scripts\respond.matchmedia.addListener.js" />
  365 + <Content Include="Scripts\respond.matchmedia.addListener.min.js" />
  366 + <Content Include="Scripts\respond.min.js" />
  367 + <Content Include="Scripts\Site.js" />
  368 + <Content Include="Scripts\_references.js" />
  369 + <Content Include="Web.config" />
  370 + <Content Include="Web.Debug.config">
  371 + <DependentUpon>Web.config</DependentUpon>
  372 + </Content>
  373 + <Content Include="Web.Release.config">
  374 + <DependentUpon>Web.config</DependentUpon>
  375 + </Content>
  376 + <Content Include="Views\Web.config" />
  377 + <Content Include="Views\_ViewStart.cshtml" />
  378 + <Content Include="Views\Shared\Error.cshtml" />
  379 + <Content Include="Views\Shared\_Layout.cshtml" />
  380 + <Content Include="Views\Home\Index.cshtml" />
  381 + <Content Include="Views\Account\_ExternalLoginsListPartial.cshtml" />
  382 + <Content Include="Views\Account\ConfirmEmail.cshtml" />
  383 + <Content Include="Views\Account\ExternalLoginConfirmation.cshtml" />
  384 + <Content Include="Views\Account\ExternalLoginFailure.cshtml" />
  385 + <Content Include="Views\Account\ForgotPassword.cshtml" />
  386 + <Content Include="Views\Account\ForgotPasswordConfirmation.cshtml" />
  387 + <Content Include="Views\Account\Login.cshtml" />
  388 + <Content Include="Views\Account\Register.cshtml" />
  389 + <Content Include="Views\Account\ResetPassword.cshtml" />
  390 + <Content Include="Views\Account\ResetPasswordConfirmation.cshtml" />
  391 + <Content Include="Views\Account\SendCode.cshtml" />
  392 + <Content Include="Views\Account\VerifyCode.cshtml" />
  393 + <Content Include="Views\Settings\AddPhoneNumber.cshtml" />
  394 + <Content Include="Views\Settings\ChangePassword.cshtml" />
  395 + <Content Include="Views\Settings\ManageLogins.cshtml" />
  396 + <Content Include="Views\Settings\SetPassword.cshtml" />
  397 + <Content Include="Views\Settings\VerifyPhoneNumber.cshtml" />
  398 + <Content Include="Views\Shared\Lockout.cshtml" />
  399 + <Content Include="Views\Shared\_LoginPartial.cshtml" />
  400 + <Content Include="Views\Shared\_Navbar.cshtml" />
  401 + <Content Include="Views\Shared\_Footer.cshtml" />
  402 + <Content Include="Views\Shared\_LayoutFluid.cshtml" />
  403 + <Content Include="Views\Users\Index.cshtml" />
  404 + <Content Include="Views\System\Index.cshtml" />
  405 + <Content Include="Views\Symbols\Index.cshtml" />
  406 + <Content Include="Views\Settings\Index.cshtml" />
  407 + <Content Include="Views\Chart\Index.cshtml" />
  408 + <Content Include="Views\Chart\Two.cshtml" />
  409 + <Content Include="Views\Shared\_ChartToolbar.cshtml" />
  410 + <Content Include="Views\Shared\_GridPager.cshtml" />
  411 + <Content Include="Views\Shared\_Grid.cshtml" />
  412 + <Content Include="Views\Users\Add.cshtml" />
  413 + <Content Include="Views\Users\Edit.cshtml" />
  414 + <Content Include="Views\Settings\Account.cshtml" />
  415 + <Content Include="Views\Symbols\Add.cshtml" />
  416 + <Content Include="Views\Sectors\Index.cshtml" />
  417 + <Content Include="Views\Sectors\Edit.cshtml" />
  418 + <Content Include="Views\Sectors\Add.cshtml" />
  419 + <Content Include="Views\Symbols\Edit.cshtml" />
  420 + <Content Include="Views\Users\Access.cshtml" />
  421 + <Content Include="Views\Shared\_LocalTime.cshtml" />
  422 + <Content Include="Views\Home\Admin.cshtml" />
  423 + <Content Include="Scripts\jquery-3.1.1.slim.min.map" />
  424 + <Content Include="Scripts\jquery-3.1.1.min.map" />
  425 + <Content Include="Views\Chart\Display.cshtml" />
  426 + </ItemGroup>
  427 + <ItemGroup>
  428 + <Folder Include="App_Data\" />
  429 + <Folder Include="Content\charts\" />
  430 + </ItemGroup>
  431 + <ItemGroup>
  432 + <None Include="Project_Readme.html" />
  433 + </ItemGroup>
  434 + <ItemGroup>
  435 + <WCFMetadata Include="Service References\" />
  436 + </ItemGroup>
  437 + <PropertyGroup>
  438 + <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
  439 + <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
  440 + </PropertyGroup>
  441 + <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  442 + <Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
  443 + <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
  444 + <Target Name="MvcBuildViews" AfterTargets="AfterBuild" Condition="'$(MvcBuildViews)'=='true'">
  445 + <AspNetCompiler VirtualPath="temp" PhysicalPath="$(WebProjectOutputDir)" />
  446 + </Target>
  447 + <ProjectExtensions>
  448 + <VisualStudio>
  449 + <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
  450 + <WebProjectProperties>
  451 + <UseIIS>False</UseIIS>
  452 + <AutoAssignPort>True</AutoAssignPort>
  453 + <DevelopmentServerPort>51951</DevelopmentServerPort>
  454 + <DevelopmentServerVPath>/</DevelopmentServerVPath>
  455 + <IISUrl>http://localhost:51951/</IISUrl>
  456 + <NTLMAuthentication>False</NTLMAuthentication>
  457 + <UseCustomServer>False</UseCustomServer>
  458 + <CustomServerUrl>
  459 + </CustomServerUrl>
  460 + <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
  461 + </WebProjectProperties>
  462 + </FlavorProperties>
  463 + </VisualStudio>
  464 + </ProjectExtensions>
  465 + <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  466 + <PropertyGroup>
  467 + <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
  468 + </PropertyGroup>
  469 + <Error Condition="!Exists('..\packages\Microsoft.Net.Compilers.2.3.2\build\Microsoft.Net.Compilers.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Net.Compilers.2.3.2\build\Microsoft.Net.Compilers.props'))" />
  470 + <Error Condition="!Exists('..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7\build\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.7\build\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props'))" />
  471 + </Target>
  472 + <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  473 + Other similar extension points exist, see Microsoft.Common.targets.
  474 + <Target Name="BeforeBuild">
  475 + </Target>
  476 + <Target Name="AfterBuild">
  477 + </Target> -->
  478 +</Project>
\ No newline at end of file
... ...
  1 +/***
  2 +* Grid.Mvc stylesheet http://gridmvc.codeplex.com/
  3 +* This file contains default styles for Grid.Mvc.
  4 +*/
  5 +.boxshadow {
  6 + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  7 +}
  8 +/* Grid */
  9 +table.grid-table {
  10 + margin: 0;
  11 +}
  12 +table.grid-table .grid-wrap {
  13 + padding: 0;
  14 + position: relative;
  15 +}
  16 +table.grid-table .grid-empty-text {
  17 + color: #606060;
  18 +}
  19 +/* Grid headers */
  20 +table.grid-table .grid-header {
  21 + position: relative;
  22 +}
  23 +table.grid-table .grid-header .sorted-asc .grid-sort-arrow:after {
  24 + content: " \2193";
  25 +}
  26 +table.grid-table .grid-header .sorted-desc .grid-sort-arrow:after {
  27 + content: " \2191";
  28 +}
  29 +table.grid-table .grid-header > .grid-header-title {
  30 + width: 100%;
  31 + margin-left: 20px;
  32 + white-space: nowrap;
  33 +}
  34 +/* Grid body */
  35 +table.grid-table tr.grid-row-selected td {
  36 + background: rgba(0, 169, 255, 0.1) !important;
  37 + /*color: black;*/
  38 +}
  39 +table.grid-table tr.grid-row-selected a {
  40 + /*color: black;*/
  41 +}
  42 +/* Grid filtering */
  43 +table.grid-table .grid-filter {
  44 + float: left;
  45 + position: absolute;
  46 + width: 22px;
  47 + height: 22px;
  48 + top: 14px;
  49 + left: 8px;
  50 +}
  51 +table.grid-table .grid-filter-btn {
  52 + cursor: pointer;
  53 + display: block;
  54 + width: 22px;
  55 + height: 22px;
  56 + background-repeat: no-repeat;
  57 + background-position: 0 -2px;
  58 + background-image: url('/content/img/filter-off.png');
  59 + background-image: -webkit-image-set(url("/content/img/filter-off.png") 1x, url("/content/img/filter-off@2x.png") 2x);
  60 +}
  61 +table.grid-table .grid-filter-btn.filtered {
  62 + background-image: url('/content/img/filter-on.png');
  63 + background-image: -webkit-image-set(url("/content/img/filter-on.png") 1x, url("/content/img/filter-on@2x.png") 2x);
  64 +}
  65 +table.grid-table .grid-filter-buttons {
  66 + padding: 0;
  67 +}
  68 +table.grid-table .grid-filter-datepicker {
  69 + font-size: 12px;
  70 +}
  71 +table.grid-table .grid-filter-datepicker table td {
  72 + padding: 1px!important;
  73 +}
  74 +table.grid-table .grid-filter-datepicker .ui-datepicker {
  75 + width: auto;
  76 +}
  77 +table.grid-table .grid-dropdown-inner ul.menu-list li a.grid-filter-clear {
  78 + white-space: nowrap;
  79 + padding-left: 26px;
  80 + background-image: url('/content/img/filter-clear.png');
  81 + background-image: -webkit-image-set(url("/content/img/filter-clear.png") 1x, url("/content/img/filter-clear@2x.png") 2x);
  82 + background-position: 3px center;
  83 + background-repeat: no-repeat;
  84 +}
  85 +table.grid-table .grid-filter-choose.choose-selected {
  86 + background-color: white!important;
  87 + cursor: default;
  88 + color: #999;
  89 +}
  90 +table.grid-table .grid-popup-additional {
  91 + padding: 3px 0 0 0;
  92 +}
  93 +/* POP-UP */
  94 +.grid-dropdown {
  95 + font-weight: normal;
  96 + left: -96px;
  97 + top: 18px !important;
  98 + min-width: 180px;
  99 + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  100 +}
  101 +.grid-dropdown-arrow {
  102 + background-repeat: no-repeat;
  103 + background-image: url('/content/img/dropdown-arrow.png');
  104 + background-image: -webkit-image-set(url("/content/img/dropdown-arrow.png") 1x, url("/content/img/dropdown-arrow@2x.png") 2x);
  105 + height: 8px;
  106 + left: 99px;
  107 + position: absolute;
  108 + top: -8px;
  109 + width: 14px;
  110 +}
  111 +.grid-dropdown-inner {
  112 + padding: 5px 7px;
  113 +}
  114 +.grid-dropdown ul.menu-list {
  115 + list-style-type: none;
  116 + margin: 3px 0 0 0;
  117 + padding: 0;
  118 +}
  119 +.grid-dropdown ul.menu-list li a {
  120 + text-decoration: none;
  121 + background-position: 6px center;
  122 + background-repeat: no-repeat;
  123 + display: block;
  124 + padding: 4px 5px;
  125 +}
  126 +.grid-dropdown ul.menu-list li a:hover {
  127 + background-color: #EEE;
  128 + text-decoration: none;
  129 +}
\ No newline at end of file
... ...
  1 +/***
  2 +* Grid.Mvc stylesheet http://gridmvc.codeplex.com/
  3 +* This file contains default styles for Grid.Mvc.
  4 +*/
  5 +
  6 +// Variables
  7 +@filterwidth: 22px;
  8 +@filterheight: 22px;
  9 +@filtertop: 14px;
  10 +@filtetleft: 8px;
  11 +@headertextmargin: 20px;
  12 +@filtercleartextmargin: 26px;
  13 +@dropdownleft: -96px;
  14 +@dropdowntop: 18px;
  15 +
  16 +.boxshadow { box-shadow: 0 2px 5px rgba(0,0,0,0.3); }
  17 +
  18 +/* Grid */
  19 +table.grid-table { margin: 0; }
  20 + table.grid-table .grid-wrap { padding: 0; position: relative; }
  21 + table.grid-table .grid-empty-text { color: #606060; }
  22 +
  23 + /* Grid headers */
  24 + table.grid-table .grid-header { position: relative; }
  25 + table.grid-table .grid-header .sorted-asc .grid-sort-arrow:after { content: " \2193"; }
  26 + table.grid-table .grid-header .sorted-desc .grid-sort-arrow:after { content: " \2191"; }
  27 + table.grid-table .grid-header > .grid-header-title { width: 100%; margin-left: @headertextmargin; white-space: nowrap; }
  28 +
  29 + /* Grid body */
  30 + table.grid-table tr.grid-row-selected td { background: rgba(0, 169, 255, 0.1) !important; /*color: black;*/ }
  31 + table.grid-table tr.grid-row-selected a { /*color: black;*/ }
  32 +
  33 +/* Grid filtering */
  34 +input.grid-filter-input { }
  35 +table.grid-table .grid-filter { float: left; position: absolute; width: @filterwidth; height: @filterheight; top: @filtertop; left: @filtetleft; }
  36 +table.grid-table .grid-filter-btn { cursor: pointer; display: block; width: @filterwidth; height: @filterheight;
  37 + background-repeat: no-repeat;
  38 + background-position: 0 -2px;
  39 + background-image: url('/content/img/filter-off.png');
  40 + background-image: -webkit-image-set(
  41 + url("/content/img/filter-off.png") 1x,
  42 + url("/content/img/filter-off@2x.png") 2x
  43 + );
  44 +
  45 +}
  46 + table.grid-table .grid-filter-btn.filtered {
  47 + background-image: url('/content/img/filter-on.png');
  48 + background-image: -webkit-image-set(url("/content/img/filter-on.png") 1x, url("/content/img/filter-on@2x.png") 2x);
  49 + }
  50 +
  51 +table.grid-table .grid-filter-buttons { padding: 0; }
  52 +table.grid-table .grid-filter-datepicker { font-size: 12px; }
  53 + table.grid-table .grid-filter-datepicker table td { padding: 1px!important; }
  54 + table.grid-table .grid-filter-datepicker .ui-datepicker { width: auto; }
  55 +table.grid-table .grid-dropdown-inner ul.menu-list li a.grid-filter-clear { white-space: nowrap; padding-left: @filtercleartextmargin;
  56 + background-image: url('/content/img/filter-clear.png');
  57 + background-image: -webkit-image-set(url("/content/img/filter-clear.png") 1x, url("/content/img/filter-clear@2x.png") 2x);
  58 + background-position: 3px center; background-repeat: no-repeat; }
  59 +table.grid-table .grid-filter-choose.choose-selected { background-color: white!important; cursor: default; color: #999; }
  60 +table.grid-table .grid-popup-additional { padding: 3px 0 0 0; }
  61 +
  62 +
  63 +/* POP-UP */
  64 +.grid-dropdown { font-weight: normal; left: @dropdownleft; top: @dropdowntop !important; min-width: 180px; .boxshadow }
  65 +.grid-dropdown-arrow {
  66 + background-repeat: no-repeat;
  67 + background-image: url('/content/img/dropdown-arrow.png');
  68 + background-image: -webkit-image-set(
  69 + url("/content/img/dropdown-arrow.png") 1x,
  70 + url("/content/img/dropdown-arrow@2x.png") 2x
  71 + );;
  72 + height: 8px; left: 99px; position: absolute; top: -8px; width: 14px; }
  73 +.grid-dropdown-inner { padding: 5px 7px; }
  74 +.grid-dropdown ul.menu-list { list-style-type: none; margin: 3px 0 0 0; padding: 0; }
  75 + .grid-dropdown ul.menu-list li a { text-decoration: none; background-position: 6px center; background-repeat: no-repeat; display: block; padding: 4px 5px; }
  76 + .grid-dropdown ul.menu-list li a:hover { background-color: #EEE; text-decoration: none; }
... ...
  1 +.boxshadow{box-shadow:0 2px 5px rgba(0,0,0,.3);}table.grid-table{margin:0;}table.grid-table .grid-wrap{padding:0;position:relative;}table.grid-table .grid-empty-text{color:#606060;}table.grid-table .grid-header{position:relative;}table.grid-table .grid-header .sorted-asc .grid-sort-arrow:after{content:" ↓";}table.grid-table .grid-header .sorted-desc .grid-sort-arrow:after{content:" ↑";}table.grid-table .grid-header>.grid-header-title{width:100%;margin-left:20px;white-space:nowrap;}table.grid-table tr.grid-row-selected td{background:rgba(0,169,255,.1) !important;}table.grid-table .grid-filter{float:left;position:absolute;width:22px;height:22px;top:14px;left:8px;}table.grid-table .grid-filter-btn{cursor:pointer;display:block;width:22px;height:22px;background-repeat:no-repeat;background-position:0 -2px;background-image:url('/content/img/filter-off.png');background-image:-webkit-image-set(url("/content/img/filter-off.png") 1x,url("/content/img/filter-off@2x.png") 2x);}table.grid-table .grid-filter-btn.filtered{background-image:url('/content/img/filter-on.png');background-image:-webkit-image-set(url("/content/img/filter-on.png") 1x,url("/content/img/filter-on@2x.png") 2x);}table.grid-table .grid-filter-buttons{padding:0;}table.grid-table .grid-filter-datepicker{font-size:12px;}table.grid-table .grid-filter-datepicker table td{padding:1px!important;}table.grid-table .grid-filter-datepicker .ui-datepicker{width:auto;}table.grid-table .grid-dropdown-inner ul.menu-list li a.grid-filter-clear{white-space:nowrap;padding-left:26px;background-image:url('/content/img/filter-clear.png');background-image:-webkit-image-set(url("/content/img/filter-clear.png") 1x,url("/content/img/filter-clear@2x.png") 2x);background-position:3px center;background-repeat:no-repeat;}table.grid-table .grid-filter-choose.choose-selected{background-color:#fff!important;cursor:default;color:#999;}table.grid-table .grid-popup-additional{padding:3px 0 0 0;}.grid-dropdown{font-weight:normal;left:-96px;top:18px !important;min-width:180px;box-shadow:0 2px 5px rgba(0,0,0,.3);}.grid-dropdown-arrow{background-repeat:no-repeat;background-image:url('/content/img/dropdown-arrow.png');background-image:-webkit-image-set(url("/content/img/dropdown-arrow.png") 1x,url("/content/img/dropdown-arrow@2x.png") 2x);height:8px;left:99px;position:absolute;top:-8px;width:14px;}.grid-dropdown-inner{padding:5px 7px;}.grid-dropdown ul.menu-list{list-style-type:none;margin:3px 0 0 0;padding:0;}.grid-dropdown ul.menu-list li a{text-decoration:none;background-position:6px center;background-repeat:no-repeat;display:block;padding:4px 5px;}.grid-dropdown ul.menu-list li a:hover{background-color:#eee;text-decoration:none;}
\ No newline at end of file
... ...
  1 +html {
  2 + position: relative;
  3 + min-height: 100%;
  4 +}
  5 +body {
  6 + color: #2C3E50;
  7 + background-color: #FBFBFB;
  8 + /* Sticky Footer: Margin bottom by footer height */
  9 + margin-bottom: 122px;
  10 +}
  11 +header {
  12 + margin-bottom: 30px;
  13 +}
  14 +a {
  15 + color: #00AF50;
  16 +}
  17 +.footer {
  18 + position: absolute;
  19 + bottom: 0;
  20 + width: 100%;
  21 + /* Sticky Footer: Set the fixed height of the footer here */
  22 + min-height: 120px;
  23 + background-color: #2A3990;
  24 + color: #FFFFFF;
  25 +}
  26 +textarea {
  27 + resize: vertical;
  28 +}
  29 +h1,
  30 +h2,
  31 +h3,
  32 +h4,
  33 +h5,
  34 +h6 {
  35 + text-shadow: 0.5px 0.5px 0.5px #2C3E50;
  36 + color: #2A3990;
  37 + font-weight: bold;
  38 + line-height: 1.25;
  39 +}
  40 +.text-lg {
  41 + font-size: 1.5rem;
  42 +}
  43 +.text-sm {
  44 + font-size: 0.75rem;
  45 +}
  46 +.navbar-dark,
  47 +.bg-dark {
  48 + background-color: #2A3990 !important;
  49 +}
  50 +.navbar-dark .navbar-nav .nav-link,
  51 +.bg-dark .navbar-nav .nav-link {
  52 + color: #FFFFFF;
  53 +}
  54 +.headerlogo {
  55 + text-align: left;
  56 + text-indent: -9999px;
  57 + min-width: 32px;
  58 + min-height: 32px;
  59 + background-position: 0 4px;
  60 + background-repeat: no-repeat;
  61 + background-image: url("img/logo-32.png");
  62 + background-image: -webkit-image-set(url("img/logo-32.png") 1x, url("img/logo-64.png") 2x);
  63 +}
  64 +.btn {
  65 + background-color: #2A3990;
  66 + color: #FFFFFF;
  67 + border-color: #2A3990;
  68 +}
  69 +.dropdown-toggle::after {
  70 + display: none;
  71 +}
  72 +.btn-toggle {
  73 + cursor: pointer;
  74 +}
  75 +.btn-toggle .fa {
  76 + font-size: 1.2rem;
  77 +}
  78 +.btn-toggle-label {
  79 + font-size: 0.8rem;
  80 + position: relative;
  81 + top: -2px;
  82 +}
  83 +.btn-xs,
  84 +.btn-group-xs > .btn {
  85 + padding: 1px 5px;
  86 + font-size: 0.9rem;
  87 + line-height: 1.5;
  88 + border-radius: 3px;
  89 +}
  90 +.table-cpo {
  91 + color: #495057;
  92 +}
  93 +.table-cpo thead th {
  94 + color: #495057;
  95 + background-color: #f4f4f4;
  96 +}
  97 +.table-cpo thead th a {
  98 + color: #0c3c80;
  99 +}
  100 +.table-cpo th,
  101 +.table-cpo td,
  102 +.table-cpo thead th {
  103 + border-color: #ddd;
  104 +}
  105 +td.datetime {
  106 + font-family: 'Segoe UI', Calibri, Arial, Helvetica, sans-serif;
  107 + font-size: 0.8rem;
  108 +}
  109 +.list-group {
  110 + margin-bottom: 1rem;
  111 +}
  112 +.list-group .list-group-item .col {
  113 + line-height: 2.5rem;
  114 + font-weight: bold;
  115 +}
  116 +.list-group .list-group-item.list-group-item-action + .collapse .list-group-item {
  117 + background-color: #ecfff5;
  118 +}
  119 +.list-group .list-group-item.list-group-item-action + .collapse .list-group-item .col {
  120 + font-size: 87%;
  121 + font-weight: normal;
  122 +}
  123 +.list-group .list-group-item.list-group-item-action + .collapse .list-group-item:hover {
  124 + background-color: #FFFFFF;
  125 +}
  126 +.form-control:focus {
  127 + border-color: #2A3990;
  128 +}
  129 +.card.card-border {
  130 + border: none;
  131 + box-shadow: 0 0 5px rgba(0, 0, 0, 0.75);
  132 +}
  133 +.img-100 {
  134 + width: 100%;
  135 + max-height: 700px;
  136 +}
  137 +.top-padding-1 {
  138 + padding-top: 1%;
  139 +}
  140 +.color-invert {
  141 + -webkit-filter: invert(60%);
  142 + filter: invert(60%);
  143 +}
... ...
  1 +// VARIABLES
  2 +@baseunit: 1rem;
  3 +@top-margin: @baseunit * 5;
  4 +@footer-height: 120px;
  5 +
  6 +@primary-color: #2A3990;
  7 +@secondary-color: #00AF50;
  8 +@bg-color: #FBFBFB;
  9 +
  10 +@white: #FFFFFF;
  11 +@black: #2C3E50;
  12 +
  13 +html {
  14 + position: relative;
  15 + min-height: 100%;
  16 +}
  17 +
  18 +body {
  19 + color: @black;
  20 + background-color: @bg-color;
  21 + /* Sticky Footer: Margin bottom by footer height */
  22 + margin-bottom: @footer-height + @baseunit * 2;
  23 +}
  24 +
  25 +header {
  26 + margin-bottom: 30px;
  27 +}
  28 +
  29 +a {
  30 + color: @secondary-color;
  31 +}
  32 +
  33 +.footer {
  34 + position: absolute;
  35 + bottom: 0;
  36 + width: 100%;
  37 + /* Sticky Footer: Set the fixed height of the footer here */
  38 + min-height: @footer-height;
  39 + background-color: @primary-color;
  40 + color: @white;
  41 +}
  42 +
  43 +// Vertical resize for text areas
  44 +textarea {
  45 + resize: vertical;
  46 +}
  47 +
  48 +
  49 +// Typography
  50 +h1,
  51 +h2,
  52 +h3,
  53 +h4,
  54 +h5,
  55 +h6 {
  56 + text-shadow: 0.5px 0.5px 0.5px @black;
  57 + color: @primary-color;
  58 + font-weight: bold;
  59 + line-height: 1.25;
  60 +}
  61 +
  62 +.text-lg {
  63 + font-size: 1.5rem;
  64 +}
  65 +
  66 +.text-sm {
  67 + font-size: 0.75rem;
  68 +}
  69 +
  70 +.navbar-dark,
  71 +.bg-dark {
  72 + background-color: @primary-color !important;
  73 + .navbar-nav {
  74 + .nav-link {
  75 + color: @white;
  76 + }
  77 + }
  78 +}
  79 +
  80 +// Header logo
  81 +.headerlogo {
  82 + text-align: left;
  83 + text-indent: -9999px;
  84 + min-width: 32px;
  85 + min-height: 32px;
  86 + background-position: 0 4px;
  87 + background-repeat: no-repeat;
  88 + background-image: url("img/logo-32.png");
  89 + background-image: -webkit-image-set(
  90 + url("img/logo-32.png") 1x,
  91 + url("img/logo-64.png") 2x
  92 + );
  93 +}
  94 +
  95 +.btn {
  96 + background-color: @primary-color;
  97 + color: @white;
  98 + border-color: @primary-color;
  99 +}
  100 +
  101 +// Bootstrap override - Hide drop down menu caret
  102 +.dropdown-toggle::after {
  103 + display: none;
  104 +}
  105 +
  106 +.btn-toggle {
  107 + cursor: pointer;
  108 +}
  109 +
  110 +.btn-toggle .fa {
  111 + font-size: 1.2rem;
  112 +}
  113 +
  114 +.btn-toggle-label {
  115 + font-size: 0.8rem;
  116 + position: relative;
  117 + top: -2px;
  118 +}
  119 +
  120 +
  121 +.btn-xs,
  122 +.btn-group-xs > .btn {
  123 + padding: 1px 5px;
  124 + font-size: 0.9rem;
  125 + line-height: 1.5;
  126 + border-radius: 3px;
  127 +}
  128 +
  129 +
  130 +.table-cpo {
  131 + color: #495057;
  132 +}
  133 +
  134 +.table-cpo thead th {
  135 + color: #495057;
  136 + background-color: #f4f4f4;
  137 +
  138 + a {
  139 + color: #0c3c80;
  140 + }
  141 +}
  142 +
  143 +.table-cpo th,
  144 +.table-cpo td,
  145 +.table-cpo thead th {
  146 + border-color: #ddd;
  147 +}
  148 +
  149 +td.datetime {
  150 + font-family: 'Segoe UI', Calibri, Arial, Helvetica, sans-serif;
  151 + font-size: 0.8rem;
  152 +}
  153 +
  154 +.list-group {
  155 + margin-bottom: 1rem;
  156 + .list-group-item {
  157 + .col {
  158 + line-height: 2.5rem;
  159 + font-weight: bold;
  160 + }
  161 + &.list-group-item-action {
  162 + + .collapse {
  163 + .list-group-item {
  164 + background-color: lighten(@secondary-color, 62%);
  165 + .col {
  166 + font-size: 87%;
  167 + font-weight: normal;
  168 + }
  169 + &:hover {
  170 + background-color: @white;
  171 + }
  172 + }
  173 + }
  174 + }
  175 + }
  176 +}
  177 +
  178 +.form-control {
  179 + &:focus {
  180 + border-color: @primary-color;
  181 + }
  182 +}
  183 +
  184 +.card.card-border {
  185 + border: none;
  186 + box-shadow: 0 0 5px rgba(0, 0, 0, 0.75);
  187 +}
  188 +
  189 +.img-100 {
  190 + width: 100%;
  191 + max-height: 700px;
  192 +}
  193 +
  194 +// Utilities
  195 +.top-padding-1 {
  196 + padding-top: 1%;
  197 +}
  198 +
  199 +.color-invert {
  200 + filter: invert(60%);
  201 +}
... ...
  1 +html{position:relative;min-height:100%;}body{background-color:#ddd;margin-bottom:150px;}header{margin-bottom:30px;}.footer{position:absolute;bottom:0;width:100%;min-height:120px;background-color:#ccc;color:#555;}textarea{resize:vertical;}.text-lg{font-size:1.5rem;}.text-sm{font-size:.75rem;}.headerlogo{text-align:left;text-indent:-9999px;min-width:32px;min-height:32px;background-position:0 4px;background-repeat:no-repeat;background-image:url("img/logo-32.png");background-image:-webkit-image-set(url("img/logo-32.png") 1x,url("img/logo-64.png") 2x);}.dropdown-toggle::after{display:none;}.color-invert{filter:invert(60%);}.btn-toggle{cursor:pointer;}.btn-toggle .fa{font-size:1.2rem;}.btn-toggle-label{font-size:.8rem;position:relative;top:-2px;}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:.9rem;line-height:1.5;border-radius:3px;}.table-cpo{color:#495057;}.table-cpo thead th{color:#495057;background-color:#f4f4f4;}.table-cpo thead th a{color:#0c3c80;}.table-cpo th,.table-cpo td,.table-cpo thead th{border-color:#ddd;}.img-100{width:100%;max-height:700px;}td.datetime{font-family:'Segoe UI',Calibri,Arial,Helvetica,sans-serif;font-size:.8rem;}.top-padding-1{padding-top:1%;}.card.card-border{border:none;box-shadow:0 0 5px rgba(0,0,0,.75);}
\ No newline at end of file
... ...
  1 +/*!
  2 + * Bootstrap v3.3.7 (http://getbootstrap.com)
  3 + * Copyright 2011-2016 Twitter, Inc.
  4 + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  5 + */
  6 +.btn-default,
  7 +.btn-primary,
  8 +.btn-success,
  9 +.btn-info,
  10 +.btn-warning,
  11 +.btn-danger {
  12 + text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
  13 + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
  14 + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
  15 +}
  16 +.btn-default:active,
  17 +.btn-primary:active,
  18 +.btn-success:active,
  19 +.btn-info:active,
  20 +.btn-warning:active,
  21 +.btn-danger:active,
  22 +.btn-default.active,
  23 +.btn-primary.active,
  24 +.btn-success.active,
  25 +.btn-info.active,
  26 +.btn-warning.active,
  27 +.btn-danger.active {
  28 + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  29 + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  30 +}
  31 +.btn-default.disabled,
  32 +.btn-primary.disabled,
  33 +.btn-success.disabled,
  34 +.btn-info.disabled,
  35 +.btn-warning.disabled,
  36 +.btn-danger.disabled,
  37 +.btn-default[disabled],
  38 +.btn-primary[disabled],
  39 +.btn-success[disabled],
  40 +.btn-info[disabled],
  41 +.btn-warning[disabled],
  42 +.btn-danger[disabled],
  43 +fieldset[disabled] .btn-default,
  44 +fieldset[disabled] .btn-primary,
  45 +fieldset[disabled] .btn-success,
  46 +fieldset[disabled] .btn-info,
  47 +fieldset[disabled] .btn-warning,
  48 +fieldset[disabled] .btn-danger {
  49 + -webkit-box-shadow: none;
  50 + box-shadow: none;
  51 +}
  52 +.btn-default .badge,
  53 +.btn-primary .badge,
  54 +.btn-success .badge,
  55 +.btn-info .badge,
  56 +.btn-warning .badge,
  57 +.btn-danger .badge {
  58 + text-shadow: none;
  59 +}
  60 +.btn:active,
  61 +.btn.active {
  62 + background-image: none;
  63 +}
  64 +.btn-default {
  65 + text-shadow: 0 1px 0 #fff;
  66 + background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);
  67 + background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);
  68 + background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0));
  69 + background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);
  70 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
  71 + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  72 + background-repeat: repeat-x;
  73 + border-color: #dbdbdb;
  74 + border-color: #ccc;
  75 +}
  76 +.btn-default:hover,
  77 +.btn-default:focus {
  78 + background-color: #e0e0e0;
  79 + background-position: 0 -15px;
  80 +}
  81 +.btn-default:active,
  82 +.btn-default.active {
  83 + background-color: #e0e0e0;
  84 + border-color: #dbdbdb;
  85 +}
  86 +.btn-default.disabled,
  87 +.btn-default[disabled],
  88 +fieldset[disabled] .btn-default,
  89 +.btn-default.disabled:hover,
  90 +.btn-default[disabled]:hover,
  91 +fieldset[disabled] .btn-default:hover,
  92 +.btn-default.disabled:focus,
  93 +.btn-default[disabled]:focus,
  94 +fieldset[disabled] .btn-default:focus,
  95 +.btn-default.disabled.focus,
  96 +.btn-default[disabled].focus,
  97 +fieldset[disabled] .btn-default.focus,
  98 +.btn-default.disabled:active,
  99 +.btn-default[disabled]:active,
  100 +fieldset[disabled] .btn-default:active,
  101 +.btn-default.disabled.active,
  102 +.btn-default[disabled].active,
  103 +fieldset[disabled] .btn-default.active {
  104 + background-color: #e0e0e0;
  105 + background-image: none;
  106 +}
  107 +.btn-primary {
  108 + background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);
  109 + background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);
  110 + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88));
  111 + background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);
  112 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);
  113 + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  114 + background-repeat: repeat-x;
  115 + border-color: #245580;
  116 +}
  117 +.btn-primary:hover,
  118 +.btn-primary:focus {
  119 + background-color: #265a88;
  120 + background-position: 0 -15px;
  121 +}
  122 +.btn-primary:active,
  123 +.btn-primary.active {
  124 + background-color: #265a88;
  125 + border-color: #245580;
  126 +}
  127 +.btn-primary.disabled,
  128 +.btn-primary[disabled],
  129 +fieldset[disabled] .btn-primary,
  130 +.btn-primary.disabled:hover,
  131 +.btn-primary[disabled]:hover,
  132 +fieldset[disabled] .btn-primary:hover,
  133 +.btn-primary.disabled:focus,
  134 +.btn-primary[disabled]:focus,
  135 +fieldset[disabled] .btn-primary:focus,
  136 +.btn-primary.disabled.focus,
  137 +.btn-primary[disabled].focus,
  138 +fieldset[disabled] .btn-primary.focus,
  139 +.btn-primary.disabled:active,
  140 +.btn-primary[disabled]:active,
  141 +fieldset[disabled] .btn-primary:active,
  142 +.btn-primary.disabled.active,
  143 +.btn-primary[disabled].active,
  144 +fieldset[disabled] .btn-primary.active {
  145 + background-color: #265a88;
  146 + background-image: none;
  147 +}
  148 +.btn-success {
  149 + background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
  150 + background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);
  151 + background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641));
  152 + background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
  153 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
  154 + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  155 + background-repeat: repeat-x;
  156 + border-color: #3e8f3e;
  157 +}
  158 +.btn-success:hover,
  159 +.btn-success:focus {
  160 + background-color: #419641;
  161 + background-position: 0 -15px;
  162 +}
  163 +.btn-success:active,
  164 +.btn-success.active {
  165 + background-color: #419641;
  166 + border-color: #3e8f3e;
  167 +}
  168 +.btn-success.disabled,
  169 +.btn-success[disabled],
  170 +fieldset[disabled] .btn-success,
  171 +.btn-success.disabled:hover,
  172 +.btn-success[disabled]:hover,
  173 +fieldset[disabled] .btn-success:hover,
  174 +.btn-success.disabled:focus,
  175 +.btn-success[disabled]:focus,
  176 +fieldset[disabled] .btn-success:focus,
  177 +.btn-success.disabled.focus,
  178 +.btn-success[disabled].focus,
  179 +fieldset[disabled] .btn-success.focus,
  180 +.btn-success.disabled:active,
  181 +.btn-success[disabled]:active,
  182 +fieldset[disabled] .btn-success:active,
  183 +.btn-success.disabled.active,
  184 +.btn-success[disabled].active,
  185 +fieldset[disabled] .btn-success.active {
  186 + background-color: #419641;
  187 + background-image: none;
  188 +}
  189 +.btn-info {
  190 + background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
  191 + background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
  192 + background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2));
  193 + background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
  194 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
  195 + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  196 + background-repeat: repeat-x;
  197 + border-color: #28a4c9;
  198 +}
  199 +.btn-info:hover,
  200 +.btn-info:focus {
  201 + background-color: #2aabd2;
  202 + background-position: 0 -15px;
  203 +}
  204 +.btn-info:active,
  205 +.btn-info.active {
  206 + background-color: #2aabd2;
  207 + border-color: #28a4c9;
  208 +}
  209 +.btn-info.disabled,
  210 +.btn-info[disabled],
  211 +fieldset[disabled] .btn-info,
  212 +.btn-info.disabled:hover,
  213 +.btn-info[disabled]:hover,
  214 +fieldset[disabled] .btn-info:hover,
  215 +.btn-info.disabled:focus,
  216 +.btn-info[disabled]:focus,
  217 +fieldset[disabled] .btn-info:focus,
  218 +.btn-info.disabled.focus,
  219 +.btn-info[disabled].focus,
  220 +fieldset[disabled] .btn-info.focus,
  221 +.btn-info.disabled:active,
  222 +.btn-info[disabled]:active,
  223 +fieldset[disabled] .btn-info:active,
  224 +.btn-info.disabled.active,
  225 +.btn-info[disabled].active,
  226 +fieldset[disabled] .btn-info.active {
  227 + background-color: #2aabd2;
  228 + background-image: none;
  229 +}
  230 +.btn-warning {
  231 + background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
  232 + background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
  233 + background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316));
  234 + background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
  235 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
  236 + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  237 + background-repeat: repeat-x;
  238 + border-color: #e38d13;
  239 +}
  240 +.btn-warning:hover,
  241 +.btn-warning:focus {
  242 + background-color: #eb9316;
  243 + background-position: 0 -15px;
  244 +}
  245 +.btn-warning:active,
  246 +.btn-warning.active {
  247 + background-color: #eb9316;
  248 + border-color: #e38d13;
  249 +}
  250 +.btn-warning.disabled,
  251 +.btn-warning[disabled],
  252 +fieldset[disabled] .btn-warning,
  253 +.btn-warning.disabled:hover,
  254 +.btn-warning[disabled]:hover,
  255 +fieldset[disabled] .btn-warning:hover,
  256 +.btn-warning.disabled:focus,
  257 +.btn-warning[disabled]:focus,
  258 +fieldset[disabled] .btn-warning:focus,
  259 +.btn-warning.disabled.focus,
  260 +.btn-warning[disabled].focus,
  261 +fieldset[disabled] .btn-warning.focus,
  262 +.btn-warning.disabled:active,
  263 +.btn-warning[disabled]:active,
  264 +fieldset[disabled] .btn-warning:active,
  265 +.btn-warning.disabled.active,
  266 +.btn-warning[disabled].active,
  267 +fieldset[disabled] .btn-warning.active {
  268 + background-color: #eb9316;
  269 + background-image: none;
  270 +}
  271 +.btn-danger {
  272 + background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
  273 + background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
  274 + background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a));
  275 + background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
  276 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
  277 + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  278 + background-repeat: repeat-x;
  279 + border-color: #b92c28;
  280 +}
  281 +.btn-danger:hover,
  282 +.btn-danger:focus {
  283 + background-color: #c12e2a;
  284 + background-position: 0 -15px;
  285 +}
  286 +.btn-danger:active,
  287 +.btn-danger.active {
  288 + background-color: #c12e2a;
  289 + border-color: #b92c28;
  290 +}
  291 +.btn-danger.disabled,
  292 +.btn-danger[disabled],
  293 +fieldset[disabled] .btn-danger,
  294 +.btn-danger.disabled:hover,
  295 +.btn-danger[disabled]:hover,
  296 +fieldset[disabled] .btn-danger:hover,
  297 +.btn-danger.disabled:focus,
  298 +.btn-danger[disabled]:focus,
  299 +fieldset[disabled] .btn-danger:focus,
  300 +.btn-danger.disabled.focus,
  301 +.btn-danger[disabled].focus,
  302 +fieldset[disabled] .btn-danger.focus,
  303 +.btn-danger.disabled:active,
  304 +.btn-danger[disabled]:active,
  305 +fieldset[disabled] .btn-danger:active,
  306 +.btn-danger.disabled.active,
  307 +.btn-danger[disabled].active,
  308 +fieldset[disabled] .btn-danger.active {
  309 + background-color: #c12e2a;
  310 + background-image: none;
  311 +}
  312 +.thumbnail,
  313 +.img-thumbnail {
  314 + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
  315 + box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
  316 +}
  317 +.dropdown-menu > li > a:hover,
  318 +.dropdown-menu > li > a:focus {
  319 + background-color: #e8e8e8;
  320 + background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
  321 + background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
  322 + background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
  323 + background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
  324 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
  325 + background-repeat: repeat-x;
  326 +}
  327 +.dropdown-menu > .active > a,
  328 +.dropdown-menu > .active > a:hover,
  329 +.dropdown-menu > .active > a:focus {
  330 + background-color: #2e6da4;
  331 + background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
  332 + background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
  333 + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
  334 + background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
  335 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
  336 + background-repeat: repeat-x;
  337 +}
  338 +.navbar-default {
  339 + background-image: -webkit-linear-gradient(top, #fff 0%, #f8f8f8 100%);
  340 + background-image: -o-linear-gradient(top, #fff 0%, #f8f8f8 100%);
  341 + background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f8f8f8));
  342 + background-image: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%);
  343 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);
  344 + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  345 + background-repeat: repeat-x;
  346 + border-radius: 4px;
  347 + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
  348 + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
  349 +}
  350 +.navbar-default .navbar-nav > .open > a,
  351 +.navbar-default .navbar-nav > .active > a {
  352 + background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
  353 + background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
  354 + background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2));
  355 + background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);
  356 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);
  357 + background-repeat: repeat-x;
  358 + -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
  359 + box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
  360 +}
  361 +.navbar-brand,
  362 +.navbar-nav > li > a {
  363 + text-shadow: 0 1px 0 rgba(255, 255, 255, .25);
  364 +}
  365 +.navbar-inverse {
  366 + background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);
  367 + background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%);
  368 + background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222));
  369 + background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%);
  370 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
  371 + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  372 + background-repeat: repeat-x;
  373 + border-radius: 4px;
  374 +}
  375 +.navbar-inverse .navbar-nav > .open > a,
  376 +.navbar-inverse .navbar-nav > .active > a {
  377 + background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);
  378 + background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);
  379 + background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f));
  380 + background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);
  381 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);
  382 + background-repeat: repeat-x;
  383 + -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);
  384 + box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);
  385 +}
  386 +.navbar-inverse .navbar-brand,
  387 +.navbar-inverse .navbar-nav > li > a {
  388 + text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
  389 +}
  390 +.navbar-static-top,
  391 +.navbar-fixed-top,
  392 +.navbar-fixed-bottom {
  393 + border-radius: 0;
  394 +}
  395 +@media (max-width: 767px) {
  396 + .navbar .navbar-nav .open .dropdown-menu > .active > a,
  397 + .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,
  398 + .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {
  399 + color: #fff;
  400 + background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
  401 + background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
  402 + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
  403 + background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
  404 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
  405 + background-repeat: repeat-x;
  406 + }
  407 +}
  408 +.alert {
  409 + text-shadow: 0 1px 0 rgba(255, 255, 255, .2);
  410 + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
  411 + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
  412 +}
  413 +.alert-success {
  414 + background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
  415 + background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
  416 + background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc));
  417 + background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
  418 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
  419 + background-repeat: repeat-x;
  420 + border-color: #b2dba1;
  421 +}
  422 +.alert-info {
  423 + background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
  424 + background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
  425 + background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0));
  426 + background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
  427 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
  428 + background-repeat: repeat-x;
  429 + border-color: #9acfea;
  430 +}
  431 +.alert-warning {
  432 + background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
  433 + background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
  434 + background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0));
  435 + background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
  436 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
  437 + background-repeat: repeat-x;
  438 + border-color: #f5e79e;
  439 +}
  440 +.alert-danger {
  441 + background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
  442 + background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
  443 + background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3));
  444 + background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
  445 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
  446 + background-repeat: repeat-x;
  447 + border-color: #dca7a7;
  448 +}
  449 +.progress {
  450 + background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
  451 + background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
  452 + background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5));
  453 + background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
  454 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
  455 + background-repeat: repeat-x;
  456 +}
  457 +.progress-bar {
  458 + background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);
  459 + background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%);
  460 + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090));
  461 + background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%);
  462 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);
  463 + background-repeat: repeat-x;
  464 +}
  465 +.progress-bar-success {
  466 + background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);
  467 + background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);
  468 + background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44));
  469 + background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
  470 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
  471 + background-repeat: repeat-x;
  472 +}
  473 +.progress-bar-info {
  474 + background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
  475 + background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
  476 + background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5));
  477 + background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
  478 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
  479 + background-repeat: repeat-x;
  480 +}
  481 +.progress-bar-warning {
  482 + background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
  483 + background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
  484 + background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f));
  485 + background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
  486 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
  487 + background-repeat: repeat-x;
  488 +}
  489 +.progress-bar-danger {
  490 + background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);
  491 + background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);
  492 + background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c));
  493 + background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
  494 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
  495 + background-repeat: repeat-x;
  496 +}
  497 +.progress-bar-striped {
  498 + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  499 + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  500 + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  501 +}
  502 +.list-group {
  503 + border-radius: 4px;
  504 + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
  505 + box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
  506 +}
  507 +.list-group-item.active,
  508 +.list-group-item.active:hover,
  509 +.list-group-item.active:focus {
  510 + text-shadow: 0 -1px 0 #286090;
  511 + background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);
  512 + background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);
  513 + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2b669a));
  514 + background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);
  515 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);
  516 + background-repeat: repeat-x;
  517 + border-color: #2b669a;
  518 +}
  519 +.list-group-item.active .badge,
  520 +.list-group-item.active:hover .badge,
  521 +.list-group-item.active:focus .badge {
  522 + text-shadow: none;
  523 +}
  524 +.panel {
  525 + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
  526 + box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
  527 +}
  528 +.panel-default > .panel-heading {
  529 + background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
  530 + background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
  531 + background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
  532 + background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
  533 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
  534 + background-repeat: repeat-x;
  535 +}
  536 +.panel-primary > .panel-heading {
  537 + background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
  538 + background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
  539 + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
  540 + background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
  541 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
  542 + background-repeat: repeat-x;
  543 +}
  544 +.panel-success > .panel-heading {
  545 + background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
  546 + background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
  547 + background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6));
  548 + background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);
  549 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);
  550 + background-repeat: repeat-x;
  551 +}
  552 +.panel-info > .panel-heading {
  553 + background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
  554 + background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
  555 + background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3));
  556 + background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);
  557 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
  558 + background-repeat: repeat-x;
  559 +}
  560 +.panel-warning > .panel-heading {
  561 + background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
  562 + background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
  563 + background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc));
  564 + background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);
  565 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);
  566 + background-repeat: repeat-x;
  567 +}
  568 +.panel-danger > .panel-heading {
  569 + background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
  570 + background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
  571 + background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc));
  572 + background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
  573 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
  574 + background-repeat: repeat-x;
  575 +}
  576 +.well {
  577 + background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
  578 + background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
  579 + background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5));
  580 + background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
  581 + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);
  582 + background-repeat: repeat-x;
  583 + border-color: #dcdcdc;
  584 + -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);
  585 + box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);
  586 +}
  587 +/*# sourceMappingURL=bootstrap-theme.css.map */
... ...
  1 +{"version":3,"sources":["bootstrap-theme.css","less/theme.less","less/mixins/vendor-prefixes.less","less/mixins/gradients.less","less/mixins/reset-filter.less"],"names":[],"mappings":"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","file":"bootstrap-theme.css","sourcesContent":["/*!\n * Bootstrap v3.3.7 (http://getbootstrap.com)\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.btn-default:active,\n.btn-primary:active,\n.btn-success:active,\n.btn-info:active,\n.btn-warning:active,\n.btn-danger:active,\n.btn-default.active,\n.btn-primary.active,\n.btn-success.active,\n.btn-info.active,\n.btn-warning.active,\n.btn-danger.active {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-default.disabled,\n.btn-primary.disabled,\n.btn-success.disabled,\n.btn-info.disabled,\n.btn-warning.disabled,\n.btn-danger.disabled,\n.btn-default[disabled],\n.btn-primary[disabled],\n.btn-success[disabled],\n.btn-info[disabled],\n.btn-warning[disabled],\n.btn-danger[disabled],\nfieldset[disabled] .btn-default,\nfieldset[disabled] .btn-primary,\nfieldset[disabled] .btn-success,\nfieldset[disabled] .btn-info,\nfieldset[disabled] .btn-warning,\nfieldset[disabled] .btn-danger {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-default .badge,\n.btn-primary .badge,\n.btn-success .badge,\n.btn-info .badge,\n.btn-warning .badge,\n.btn-danger .badge {\n text-shadow: none;\n}\n.btn:active,\n.btn.active {\n background-image: none;\n}\n.btn-default {\n background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);\n background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);\n background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #dbdbdb;\n text-shadow: 0 1px 0 #fff;\n border-color: #ccc;\n}\n.btn-default:hover,\n.btn-default:focus {\n background-color: #e0e0e0;\n background-position: 0 -15px;\n}\n.btn-default:active,\n.btn-default.active {\n background-color: #e0e0e0;\n border-color: #dbdbdb;\n}\n.btn-default.disabled,\n.btn-default[disabled],\nfieldset[disabled] .btn-default,\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus,\n.btn-default.disabled:active,\n.btn-default[disabled]:active,\nfieldset[disabled] .btn-default:active,\n.btn-default.disabled.active,\n.btn-default[disabled].active,\nfieldset[disabled] .btn-default.active {\n background-color: #e0e0e0;\n background-image: none;\n}\n.btn-primary {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #245580;\n}\n.btn-primary:hover,\n.btn-primary:focus {\n background-color: #265a88;\n background-position: 0 -15px;\n}\n.btn-primary:active,\n.btn-primary.active {\n background-color: #265a88;\n border-color: #245580;\n}\n.btn-primary.disabled,\n.btn-primary[disabled],\nfieldset[disabled] .btn-primary,\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus,\n.btn-primary.disabled:active,\n.btn-primary[disabled]:active,\nfieldset[disabled] .btn-primary:active,\n.btn-primary.disabled.active,\n.btn-primary[disabled].active,\nfieldset[disabled] .btn-primary.active {\n background-color: #265a88;\n background-image: none;\n}\n.btn-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #3e8f3e;\n}\n.btn-success:hover,\n.btn-success:focus {\n background-color: #419641;\n background-position: 0 -15px;\n}\n.btn-success:active,\n.btn-success.active {\n background-color: #419641;\n border-color: #3e8f3e;\n}\n.btn-success.disabled,\n.btn-success[disabled],\nfieldset[disabled] .btn-success,\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus,\n.btn-success.disabled:active,\n.btn-success[disabled]:active,\nfieldset[disabled] .btn-success:active,\n.btn-success.disabled.active,\n.btn-success[disabled].active,\nfieldset[disabled] .btn-success.active {\n background-color: #419641;\n background-image: none;\n}\n.btn-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #28a4c9;\n}\n.btn-info:hover,\n.btn-info:focus {\n background-color: #2aabd2;\n background-position: 0 -15px;\n}\n.btn-info:active,\n.btn-info.active {\n background-color: #2aabd2;\n border-color: #28a4c9;\n}\n.btn-info.disabled,\n.btn-info[disabled],\nfieldset[disabled] .btn-info,\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus,\n.btn-info.disabled:active,\n.btn-info[disabled]:active,\nfieldset[disabled] .btn-info:active,\n.btn-info.disabled.active,\n.btn-info[disabled].active,\nfieldset[disabled] .btn-info.active {\n background-color: #2aabd2;\n background-image: none;\n}\n.btn-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #e38d13;\n}\n.btn-warning:hover,\n.btn-warning:focus {\n background-color: #eb9316;\n background-position: 0 -15px;\n}\n.btn-warning:active,\n.btn-warning.active {\n background-color: #eb9316;\n border-color: #e38d13;\n}\n.btn-warning.disabled,\n.btn-warning[disabled],\nfieldset[disabled] .btn-warning,\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus,\n.btn-warning.disabled:active,\n.btn-warning[disabled]:active,\nfieldset[disabled] .btn-warning:active,\n.btn-warning.disabled.active,\n.btn-warning[disabled].active,\nfieldset[disabled] .btn-warning.active {\n background-color: #eb9316;\n background-image: none;\n}\n.btn-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #b92c28;\n}\n.btn-danger:hover,\n.btn-danger:focus {\n background-color: #c12e2a;\n background-position: 0 -15px;\n}\n.btn-danger:active,\n.btn-danger.active {\n background-color: #c12e2a;\n border-color: #b92c28;\n}\n.btn-danger.disabled,\n.btn-danger[disabled],\nfieldset[disabled] .btn-danger,\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus,\n.btn-danger.disabled:active,\n.btn-danger[disabled]:active,\nfieldset[disabled] .btn-danger:active,\n.btn-danger.disabled.active,\n.btn-danger[disabled].active,\nfieldset[disabled] .btn-danger.active {\n background-color: #c12e2a;\n background-image: none;\n}\n.thumbnail,\n.img-thumbnail {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n background-color: #e8e8e8;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n background-color: #2e6da4;\n}\n.navbar-default {\n background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: -o-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);\n}\n.navbar-inverse {\n background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);\n background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%);\n background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n border-radius: 4px;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n}\n.navbar-inverse .navbar-brand,\n.navbar-inverse .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n@media (max-width: 767px) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #fff;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n }\n}\n.alert {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.alert-success {\n background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);\n border-color: #b2dba1;\n}\n.alert-info {\n background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);\n border-color: #9acfea;\n}\n.alert-warning {\n background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);\n border-color: #f5e79e;\n}\n.alert-danger {\n background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);\n border-color: #dca7a7;\n}\n.progress {\n background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);\n}\n.progress-bar {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);\n}\n.progress-bar-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);\n}\n.progress-bar-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);\n}\n.progress-bar-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);\n}\n.progress-bar-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);\n}\n.progress-bar-striped {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.list-group {\n border-radius: 4px;\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 #286090;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);\n border-color: #2b669a;\n}\n.list-group-item.active .badge,\n.list-group-item.active:hover .badge,\n.list-group-item.active:focus .badge {\n text-shadow: none;\n}\n.panel {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.panel-default > .panel-heading {\n background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n}\n.panel-primary > .panel-heading {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n}\n.panel-success > .panel-heading {\n background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);\n}\n.panel-info > .panel-heading {\n background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);\n}\n.panel-warning > .panel-heading {\n background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);\n}\n.panel-danger > .panel-heading {\n background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);\n}\n.well {\n background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);\n border-color: #dcdcdc;\n -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n}\n/*# sourceMappingURL=bootstrap-theme.css.map */","/*!\n * Bootstrap v3.3.7 (http://getbootstrap.com)\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n\n//\n// Load core variables and mixins\n// --------------------------------------------------\n\n@import \"variables.less\";\n@import \"mixins.less\";\n\n\n//\n// Buttons\n// --------------------------------------------------\n\n// Common styles\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0,0,0,.2);\n @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);\n .box-shadow(@shadow);\n\n // Reset the shadow\n &:active,\n &.active {\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n .box-shadow(none);\n }\n\n .badge {\n text-shadow: none;\n }\n}\n\n// Mixin for generating new styles\n.btn-styles(@btn-color: #555) {\n #gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%));\n .reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners; see https://github.com/twbs/bootstrap/issues/10620\n background-repeat: repeat-x;\n border-color: darken(@btn-color, 14%);\n\n &:hover,\n &:focus {\n background-color: darken(@btn-color, 12%);\n background-position: 0 -15px;\n }\n\n &:active,\n &.active {\n background-color: darken(@btn-color, 12%);\n border-color: darken(@btn-color, 14%);\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n &,\n &:hover,\n &:focus,\n &.focus,\n &:active,\n &.active {\n background-color: darken(@btn-color, 12%);\n background-image: none;\n }\n }\n}\n\n// Common styles\n.btn {\n // Remove the gradient for the pressed/active state\n &:active,\n &.active {\n background-image: none;\n }\n}\n\n// Apply the mixin to the buttons\n.btn-default { .btn-styles(@btn-default-bg); text-shadow: 0 1px 0 #fff; border-color: #ccc; }\n.btn-primary { .btn-styles(@btn-primary-bg); }\n.btn-success { .btn-styles(@btn-success-bg); }\n.btn-info { .btn-styles(@btn-info-bg); }\n.btn-warning { .btn-styles(@btn-warning-bg); }\n.btn-danger { .btn-styles(@btn-danger-bg); }\n\n\n//\n// Images\n// --------------------------------------------------\n\n.thumbnail,\n.img-thumbnail {\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n\n\n//\n// Dropdowns\n// --------------------------------------------------\n\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-hover-bg; @end-color: darken(@dropdown-link-hover-bg, 5%));\n background-color: darken(@dropdown-link-hover-bg, 5%);\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n background-color: darken(@dropdown-link-active-bg, 5%);\n}\n\n\n//\n// Navbar\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n #gradient > .vertical(@start-color: lighten(@navbar-default-bg, 10%); @end-color: @navbar-default-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered\n border-radius: @navbar-border-radius;\n @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);\n .box-shadow(@shadow);\n\n .navbar-nav > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: darken(@navbar-default-link-active-bg, 5%); @end-color: darken(@navbar-default-link-active-bg, 2%));\n .box-shadow(inset 0 3px 9px rgba(0,0,0,.075));\n }\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255,255,255,.25);\n}\n\n// Inverted navbar\n.navbar-inverse {\n #gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered; see https://github.com/twbs/bootstrap/issues/10257\n border-radius: @navbar-border-radius;\n .navbar-nav > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: @navbar-inverse-link-active-bg; @end-color: lighten(@navbar-inverse-link-active-bg, 2.5%));\n .box-shadow(inset 0 3px 9px rgba(0,0,0,.25));\n }\n\n .navbar-brand,\n .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0,0,0,.25);\n }\n}\n\n// Undo rounded corners in static and fixed navbars\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n\n// Fix active state of dropdown items in collapsed mode\n@media (max-width: @grid-float-breakpoint-max) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: #fff;\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n }\n }\n}\n\n\n//\n// Alerts\n// --------------------------------------------------\n\n// Common styles\n.alert {\n text-shadow: 0 1px 0 rgba(255,255,255,.2);\n @shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 1px 2px rgba(0,0,0,.05);\n .box-shadow(@shadow);\n}\n\n// Mixin for generating new styles\n.alert-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 7.5%));\n border-color: darken(@color, 15%);\n}\n\n// Apply the mixin to the alerts\n.alert-success { .alert-styles(@alert-success-bg); }\n.alert-info { .alert-styles(@alert-info-bg); }\n.alert-warning { .alert-styles(@alert-warning-bg); }\n.alert-danger { .alert-styles(@alert-danger-bg); }\n\n\n//\n// Progress bars\n// --------------------------------------------------\n\n// Give the progress background some depth\n.progress {\n #gradient > .vertical(@start-color: darken(@progress-bg, 4%); @end-color: @progress-bg)\n}\n\n// Mixin for generating new styles\n.progress-bar-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 10%));\n}\n\n// Apply the mixin to the progress bars\n.progress-bar { .progress-bar-styles(@progress-bar-bg); }\n.progress-bar-success { .progress-bar-styles(@progress-bar-success-bg); }\n.progress-bar-info { .progress-bar-styles(@progress-bar-info-bg); }\n.progress-bar-warning { .progress-bar-styles(@progress-bar-warning-bg); }\n.progress-bar-danger { .progress-bar-styles(@progress-bar-danger-bg); }\n\n// Reset the striped class because our mixins don't do multiple gradients and\n// the above custom styles override the new `.progress-bar-striped` in v3.2.0.\n.progress-bar-striped {\n #gradient > .striped();\n}\n\n\n//\n// List groups\n// --------------------------------------------------\n\n.list-group {\n border-radius: @border-radius-base;\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 darken(@list-group-active-bg, 10%);\n #gradient > .vertical(@start-color: @list-group-active-bg; @end-color: darken(@list-group-active-bg, 7.5%));\n border-color: darken(@list-group-active-border, 7.5%);\n\n .badge {\n text-shadow: none;\n }\n}\n\n\n//\n// Panels\n// --------------------------------------------------\n\n// Common styles\n.panel {\n .box-shadow(0 1px 2px rgba(0,0,0,.05));\n}\n\n// Mixin for generating new styles\n.panel-heading-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 5%));\n}\n\n// Apply the mixin to the panel headings only\n.panel-default > .panel-heading { .panel-heading-styles(@panel-default-heading-bg); }\n.panel-primary > .panel-heading { .panel-heading-styles(@panel-primary-heading-bg); }\n.panel-success > .panel-heading { .panel-heading-styles(@panel-success-heading-bg); }\n.panel-info > .panel-heading { .panel-heading-styles(@panel-info-heading-bg); }\n.panel-warning > .panel-heading { .panel-heading-styles(@panel-warning-heading-bg); }\n.panel-danger > .panel-heading { .panel-heading-styles(@panel-danger-heading-bg); }\n\n\n//\n// Wells\n// --------------------------------------------------\n\n.well {\n #gradient > .vertical(@start-color: darken(@well-bg, 5%); @end-color: @well-bg);\n border-color: darken(@well-bg, 10%);\n @shadow: inset 0 1px 3px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1);\n .box-shadow(@shadow);\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n -o-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n -webkit-animation-fill-mode: @fill-mode;\n animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n word-wrap: break-word;\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n // Firefox\n &::-moz-placeholder {\n color: @color;\n opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n }\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n -webkit-transform: scale(@ratio);\n -ms-transform: scale(@ratio); // IE9 only\n -o-transform: scale(@ratio);\n transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n -webkit-transform: scale(@ratioX, @ratioY);\n -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n -o-transform: scale(@ratioX, @ratioY);\n transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n -webkit-transform: scaleX(@ratio);\n -ms-transform: scaleX(@ratio); // IE9 only\n -o-transform: scaleX(@ratio);\n transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n -webkit-transform: scaleY(@ratio);\n -ms-transform: scaleY(@ratio); // IE9 only\n -o-transform: scaleY(@ratio);\n transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n -webkit-transform: skewX(@x) skewY(@y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n -o-transform: skewX(@x) skewY(@y);\n transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n -o-transform: translate(@x, @y);\n transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n -o-transform: rotate(@degrees);\n transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n -o-transform: rotateX(@degrees);\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n -o-transform: rotateY(@degrees);\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n -webkit-transition: @transition;\n -o-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n -webkit-transition-timing-function: @timing-function;\n transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}\n","// Gradients\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-repeat: repeat-x;\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n"]}
\ No newline at end of file
... ...
  1 +/*!
  2 + * Bootstrap v3.3.7 (http://getbootstrap.com)
  3 + * Copyright 2011-2016 Twitter, Inc.
  4 + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  5 + */.btn-danger,.btn-default,.btn-info,.btn-primary,.btn-success,.btn-warning{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn-warning.active,.btn-warning:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-danger.disabled,.btn-danger[disabled],.btn-default.disabled,.btn-default[disabled],.btn-info.disabled,.btn-info[disabled],.btn-primary.disabled,.btn-primary[disabled],.btn-success.disabled,.btn-success[disabled],.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-danger,fieldset[disabled] .btn-default,fieldset[disabled] .btn-info,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-success,fieldset[disabled] .btn-warning{-webkit-box-shadow:none;box-shadow:none}.btn-danger .badge,.btn-default .badge,.btn-info .badge,.btn-primary .badge,.btn-success .badge,.btn-warning .badge{text-shadow:none}.btn.active,.btn:active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-o-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc}.btn-default:focus,.btn-default:hover{background-color:#e0e0e0;background-position:0 -15px}.btn-default.active,.btn-default:active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-o-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#265a88));background-image:linear-gradient(to bottom,#337ab7 0,#265a88 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#245580}.btn-primary:focus,.btn-primary:hover{background-color:#265a88;background-position:0 -15px}.btn-primary.active,.btn-primary:active{background-color:#265a88;border-color:#245580}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#265a88;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:focus,.btn-success:hover{background-color:#419641;background-position:0 -15px}.btn-success.active,.btn-success:active{background-color:#419641;border-color:#3e8f3e}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#419641;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:focus,.btn-info:hover{background-color:#2aabd2;background-position:0 -15px}.btn-info.active,.btn-info:active{background-color:#2aabd2;border-color:#28a4c9}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#2aabd2;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316));background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:focus,.btn-warning:hover{background-color:#eb9316;background-position:0 -15px}.btn-warning.active,.btn-warning:active{background-color:#eb9316;border-color:#e38d13}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#eb9316;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c12e2a));background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:focus,.btn-danger:hover{background-color:#c12e2a;background-position:0 -15px}.btn-danger.active,.btn-danger:active{background-color:#c12e2a;border-color:#b92c28}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#c12e2a;background-image:none}.img-thumbnail,.thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{background-color:#e8e8e8;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#2e6da4;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-o-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f8f8f8));background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075)}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-o-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dbdbdb),to(#e2e2e2));background-image:linear-gradient(to bottom,#dbdbdb 0,#e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.075);box-shadow:inset 0 3px 9px rgba(0,0,0,.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-o-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#3c3c3c),to(#222));background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-o-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#080808),to(#0f0f0f));background-image:linear-gradient(to bottom,#080808 0,#0f0f0f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.25);box-shadow:inset 0 3px 9px rgba(0,0,0,.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}@media (max-width:767px){.navbar .navbar-nav .open .dropdown-menu>.active>a,.navbar .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}}.alert{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#c8e5bc));background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);background-repeat:repeat-x;border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#b9def0));background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);background-repeat:repeat-x;border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#f8efc0));background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);background-repeat:repeat-x;border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-o-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#e7c3c3));background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);background-repeat:repeat-x;border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#f5f5f5));background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x}.progress-bar{background-image:-webkit-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-o-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#286090));background-image:linear-gradient(to bottom,#337ab7 0,#286090 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);background-repeat:repeat-x}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#449d44));background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);background-repeat:repeat-x}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#31b0d5));background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);background-repeat:repeat-x}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#ec971f));background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);background-repeat:repeat-x}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c9302c));background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);background-repeat:repeat-x}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{text-shadow:0 -1px 0 #286090;background-image:-webkit-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2b669a));background-image:linear-gradient(to bottom,#337ab7 0,#2b669a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);background-repeat:repeat-x;border-color:#2b669a}.list-group-item.active .badge,.list-group-item.active:focus .badge,.list-group-item.active:hover .badge{text-shadow:none}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#d0e9c6));background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);background-repeat:repeat-x}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#c4e3f3));background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);background-repeat:repeat-x}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#faf2cc));background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);background-repeat:repeat-x}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-o-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#ebcccc));background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);background-repeat:repeat-x}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#e8e8e8),to(#f5f5f5));background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x;border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)}
  6 +/*# sourceMappingURL=bootstrap-theme.min.css.map */
\ No newline at end of file
... ...
  1 +{"version":3,"sources":["less/theme.less","less/mixins/vendor-prefixes.less","less/mixins/gradients.less","less/mixins/reset-filter.less"],"names":[],"mappings":"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","sourcesContent":["/*!\n * Bootstrap v3.3.7 (http://getbootstrap.com)\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n\n//\n// Load core variables and mixins\n// --------------------------------------------------\n\n@import \"variables.less\";\n@import \"mixins.less\";\n\n\n//\n// Buttons\n// --------------------------------------------------\n\n// Common styles\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0,0,0,.2);\n @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);\n .box-shadow(@shadow);\n\n // Reset the shadow\n &:active,\n &.active {\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n .box-shadow(none);\n }\n\n .badge {\n text-shadow: none;\n }\n}\n\n// Mixin for generating new styles\n.btn-styles(@btn-color: #555) {\n #gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%));\n .reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners; see https://github.com/twbs/bootstrap/issues/10620\n background-repeat: repeat-x;\n border-color: darken(@btn-color, 14%);\n\n &:hover,\n &:focus {\n background-color: darken(@btn-color, 12%);\n background-position: 0 -15px;\n }\n\n &:active,\n &.active {\n background-color: darken(@btn-color, 12%);\n border-color: darken(@btn-color, 14%);\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n &,\n &:hover,\n &:focus,\n &.focus,\n &:active,\n &.active {\n background-color: darken(@btn-color, 12%);\n background-image: none;\n }\n }\n}\n\n// Common styles\n.btn {\n // Remove the gradient for the pressed/active state\n &:active,\n &.active {\n background-image: none;\n }\n}\n\n// Apply the mixin to the buttons\n.btn-default { .btn-styles(@btn-default-bg); text-shadow: 0 1px 0 #fff; border-color: #ccc; }\n.btn-primary { .btn-styles(@btn-primary-bg); }\n.btn-success { .btn-styles(@btn-success-bg); }\n.btn-info { .btn-styles(@btn-info-bg); }\n.btn-warning { .btn-styles(@btn-warning-bg); }\n.btn-danger { .btn-styles(@btn-danger-bg); }\n\n\n//\n// Images\n// --------------------------------------------------\n\n.thumbnail,\n.img-thumbnail {\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n\n\n//\n// Dropdowns\n// --------------------------------------------------\n\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-hover-bg; @end-color: darken(@dropdown-link-hover-bg, 5%));\n background-color: darken(@dropdown-link-hover-bg, 5%);\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n background-color: darken(@dropdown-link-active-bg, 5%);\n}\n\n\n//\n// Navbar\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n #gradient > .vertical(@start-color: lighten(@navbar-default-bg, 10%); @end-color: @navbar-default-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered\n border-radius: @navbar-border-radius;\n @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);\n .box-shadow(@shadow);\n\n .navbar-nav > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: darken(@navbar-default-link-active-bg, 5%); @end-color: darken(@navbar-default-link-active-bg, 2%));\n .box-shadow(inset 0 3px 9px rgba(0,0,0,.075));\n }\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255,255,255,.25);\n}\n\n// Inverted navbar\n.navbar-inverse {\n #gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered; see https://github.com/twbs/bootstrap/issues/10257\n border-radius: @navbar-border-radius;\n .navbar-nav > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: @navbar-inverse-link-active-bg; @end-color: lighten(@navbar-inverse-link-active-bg, 2.5%));\n .box-shadow(inset 0 3px 9px rgba(0,0,0,.25));\n }\n\n .navbar-brand,\n .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0,0,0,.25);\n }\n}\n\n// Undo rounded corners in static and fixed navbars\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n\n// Fix active state of dropdown items in collapsed mode\n@media (max-width: @grid-float-breakpoint-max) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: #fff;\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n }\n }\n}\n\n\n//\n// Alerts\n// --------------------------------------------------\n\n// Common styles\n.alert {\n text-shadow: 0 1px 0 rgba(255,255,255,.2);\n @shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 1px 2px rgba(0,0,0,.05);\n .box-shadow(@shadow);\n}\n\n// Mixin for generating new styles\n.alert-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 7.5%));\n border-color: darken(@color, 15%);\n}\n\n// Apply the mixin to the alerts\n.alert-success { .alert-styles(@alert-success-bg); }\n.alert-info { .alert-styles(@alert-info-bg); }\n.alert-warning { .alert-styles(@alert-warning-bg); }\n.alert-danger { .alert-styles(@alert-danger-bg); }\n\n\n//\n// Progress bars\n// --------------------------------------------------\n\n// Give the progress background some depth\n.progress {\n #gradient > .vertical(@start-color: darken(@progress-bg, 4%); @end-color: @progress-bg)\n}\n\n// Mixin for generating new styles\n.progress-bar-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 10%));\n}\n\n// Apply the mixin to the progress bars\n.progress-bar { .progress-bar-styles(@progress-bar-bg); }\n.progress-bar-success { .progress-bar-styles(@progress-bar-success-bg); }\n.progress-bar-info { .progress-bar-styles(@progress-bar-info-bg); }\n.progress-bar-warning { .progress-bar-styles(@progress-bar-warning-bg); }\n.progress-bar-danger { .progress-bar-styles(@progress-bar-danger-bg); }\n\n// Reset the striped class because our mixins don't do multiple gradients and\n// the above custom styles override the new `.progress-bar-striped` in v3.2.0.\n.progress-bar-striped {\n #gradient > .striped();\n}\n\n\n//\n// List groups\n// --------------------------------------------------\n\n.list-group {\n border-radius: @border-radius-base;\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 darken(@list-group-active-bg, 10%);\n #gradient > .vertical(@start-color: @list-group-active-bg; @end-color: darken(@list-group-active-bg, 7.5%));\n border-color: darken(@list-group-active-border, 7.5%);\n\n .badge {\n text-shadow: none;\n }\n}\n\n\n//\n// Panels\n// --------------------------------------------------\n\n// Common styles\n.panel {\n .box-shadow(0 1px 2px rgba(0,0,0,.05));\n}\n\n// Mixin for generating new styles\n.panel-heading-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 5%));\n}\n\n// Apply the mixin to the panel headings only\n.panel-default > .panel-heading { .panel-heading-styles(@panel-default-heading-bg); }\n.panel-primary > .panel-heading { .panel-heading-styles(@panel-primary-heading-bg); }\n.panel-success > .panel-heading { .panel-heading-styles(@panel-success-heading-bg); }\n.panel-info > .panel-heading { .panel-heading-styles(@panel-info-heading-bg); }\n.panel-warning > .panel-heading { .panel-heading-styles(@panel-warning-heading-bg); }\n.panel-danger > .panel-heading { .panel-heading-styles(@panel-danger-heading-bg); }\n\n\n//\n// Wells\n// --------------------------------------------------\n\n.well {\n #gradient > .vertical(@start-color: darken(@well-bg, 5%); @end-color: @well-bg);\n border-color: darken(@well-bg, 10%);\n @shadow: inset 0 1px 3px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1);\n .box-shadow(@shadow);\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n -o-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n -webkit-animation-fill-mode: @fill-mode;\n animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n word-wrap: break-word;\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n // Firefox\n &::-moz-placeholder {\n color: @color;\n opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n }\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n -webkit-transform: scale(@ratio);\n -ms-transform: scale(@ratio); // IE9 only\n -o-transform: scale(@ratio);\n transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n -webkit-transform: scale(@ratioX, @ratioY);\n -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n -o-transform: scale(@ratioX, @ratioY);\n transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n -webkit-transform: scaleX(@ratio);\n -ms-transform: scaleX(@ratio); // IE9 only\n -o-transform: scaleX(@ratio);\n transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n -webkit-transform: scaleY(@ratio);\n -ms-transform: scaleY(@ratio); // IE9 only\n -o-transform: scaleY(@ratio);\n transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n -webkit-transform: skewX(@x) skewY(@y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n -o-transform: skewX(@x) skewY(@y);\n transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n -o-transform: translate(@x, @y);\n transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n -o-transform: rotate(@degrees);\n transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n -o-transform: rotateX(@degrees);\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n -o-transform: rotateY(@degrees);\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n -webkit-transition: @transition;\n -o-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n -webkit-transition-timing-function: @timing-function;\n transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}\n","// Gradients\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-repeat: repeat-x;\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n"]}
\ No newline at end of file
... ...