|
|
|
@ -1,4 +1,4 @@
|
|
|
|
|
//
|
|
|
|
|
// Paper 3.3.5
|
|
|
|
|
// Variables
|
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
|
@ -9,16 +9,16 @@
|
|
|
|
|
|
|
|
|
|
@gray-base: #000;
|
|
|
|
|
@gray-darker: lighten(@gray-base, 13.5%); // #222
|
|
|
|
|
@gray-dark: lighten(@gray-base, 20%); // #333
|
|
|
|
|
@gray: lighten(@gray-base, 33.5%); // #555
|
|
|
|
|
@gray-light: lighten(@gray-base, 46.7%); // #777
|
|
|
|
|
@gray-dark: #212121;
|
|
|
|
|
@gray: #666;
|
|
|
|
|
@gray-light: #bbb;
|
|
|
|
|
@gray-lighter: lighten(@gray-base, 93.5%); // #eee
|
|
|
|
|
|
|
|
|
|
@brand-primary: darken(#428bca, 6.5%); // #337ab7
|
|
|
|
|
@brand-success: #5cb85c;
|
|
|
|
|
@brand-info: #5bc0de;
|
|
|
|
|
@brand-warning: #f0ad4e;
|
|
|
|
|
@brand-danger: #d9534f;
|
|
|
|
|
@brand-primary: #2196F3;
|
|
|
|
|
@brand-success: #4CAF50;
|
|
|
|
|
@brand-info: #9C27B0;
|
|
|
|
|
@brand-warning: #ff9800;
|
|
|
|
|
@brand-danger: #e51c23;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//== Scaffolding
|
|
|
|
@ -28,7 +28,7 @@
|
|
|
|
|
//** Background color for `<body>`.
|
|
|
|
|
@body-bg: #fff;
|
|
|
|
|
//** Global text color on `<body>`.
|
|
|
|
|
@text-color: @gray-dark;
|
|
|
|
|
@text-color: @gray;
|
|
|
|
|
|
|
|
|
|
//** Global textual link color.
|
|
|
|
|
@link-color: @brand-primary;
|
|
|
|
@ -42,33 +42,33 @@
|
|
|
|
|
//
|
|
|
|
|
//## Font, line-height, and color for body text, headings, and more.
|
|
|
|
|
|
|
|
|
|
@font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
|
|
|
@font-family-sans-serif: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
|
|
|
@font-family-serif: Georgia, "Times New Roman", Times, serif;
|
|
|
|
|
//** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
|
|
|
|
|
@font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace;
|
|
|
|
|
@font-family-base: @font-family-sans-serif;
|
|
|
|
|
|
|
|
|
|
@font-size-base: 14px;
|
|
|
|
|
@font-size-base: 13px;
|
|
|
|
|
@font-size-large: ceil((@font-size-base * 1.25)); // ~18px
|
|
|
|
|
@font-size-small: ceil((@font-size-base * 0.85)); // ~12px
|
|
|
|
|
|
|
|
|
|
@font-size-h1: floor((@font-size-base * 2.6)); // ~36px
|
|
|
|
|
@font-size-h2: floor((@font-size-base * 2.15)); // ~30px
|
|
|
|
|
@font-size-h3: ceil((@font-size-base * 1.7)); // ~24px
|
|
|
|
|
@font-size-h4: ceil((@font-size-base * 1.25)); // ~18px
|
|
|
|
|
@font-size-h5: @font-size-base;
|
|
|
|
|
@font-size-h6: ceil((@font-size-base * 0.85)); // ~12px
|
|
|
|
|
@font-size-h1: 56px;
|
|
|
|
|
@font-size-h2: 45px;
|
|
|
|
|
@font-size-h3: 34px;
|
|
|
|
|
@font-size-h4: 24px;
|
|
|
|
|
@font-size-h5: 20px;
|
|
|
|
|
@font-size-h6: 14px;
|
|
|
|
|
|
|
|
|
|
//** Unit-less `line-height` for use in components like buttons.
|
|
|
|
|
@line-height-base: 1.428571429; // 20/14
|
|
|
|
|
@line-height-base: 1.846; // 20/14
|
|
|
|
|
//** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
|
|
|
|
|
@line-height-computed: floor((@font-size-base * @line-height-base)); // ~20px
|
|
|
|
|
|
|
|
|
|
//** By default, this inherits from the `<body>`.
|
|
|
|
|
@headings-font-family: inherit;
|
|
|
|
|
@headings-font-weight: 500;
|
|
|
|
|
@headings-font-weight: 400;
|
|
|
|
|
@headings-line-height: 1.1;
|
|
|
|
|
@headings-color: inherit;
|
|
|
|
|
@headings-color: #444;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//== Iconography
|
|
|
|
@ -88,7 +88,7 @@
|
|
|
|
|
//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
|
|
|
|
|
|
|
|
|
|
@padding-base-vertical: 6px;
|
|
|
|
|
@padding-base-horizontal: 12px;
|
|
|
|
|
@padding-base-horizontal: 16px;
|
|
|
|
|
|
|
|
|
|
@padding-large-vertical: 10px;
|
|
|
|
|
@padding-large-horizontal: 16px;
|
|
|
|
@ -102,9 +102,9 @@
|
|
|
|
|
@line-height-large: 1.3333333; // extra decimals for Win 8.1 Chrome
|
|
|
|
|
@line-height-small: 1.5;
|
|
|
|
|
|
|
|
|
|
@border-radius-base: 4px;
|
|
|
|
|
@border-radius-large: 6px;
|
|
|
|
|
@border-radius-small: 3px;
|
|
|
|
|
@border-radius-base: 0px;
|
|
|
|
|
@border-radius-large: 0px;
|
|
|
|
|
@border-radius-small: 0px;
|
|
|
|
|
|
|
|
|
|
//** Global color for active items (e.g., navs or dropdowns).
|
|
|
|
|
@component-active-color: #fff;
|
|
|
|
@ -144,29 +144,29 @@
|
|
|
|
|
|
|
|
|
|
@btn-font-weight: normal;
|
|
|
|
|
|
|
|
|
|
@btn-default-color: #333;
|
|
|
|
|
@btn-default-color: #444;
|
|
|
|
|
@btn-default-bg: #fff;
|
|
|
|
|
@btn-default-border: #ccc;
|
|
|
|
|
@btn-default-border: transparent;
|
|
|
|
|
|
|
|
|
|
@btn-primary-color: #fff;
|
|
|
|
|
@btn-primary-bg: @brand-primary;
|
|
|
|
|
@btn-primary-border: darken(@btn-primary-bg, 5%);
|
|
|
|
|
@btn-primary-border: transparent;
|
|
|
|
|
|
|
|
|
|
@btn-success-color: #fff;
|
|
|
|
|
@btn-success-bg: @brand-success;
|
|
|
|
|
@btn-success-border: darken(@btn-success-bg, 5%);
|
|
|
|
|
@btn-success-border: transparent;
|
|
|
|
|
|
|
|
|
|
@btn-info-color: #fff;
|
|
|
|
|
@btn-info-bg: @brand-info;
|
|
|
|
|
@btn-info-border: darken(@btn-info-bg, 5%);
|
|
|
|
|
@btn-info-border: transparent;
|
|
|
|
|
|
|
|
|
|
@btn-warning-color: #fff;
|
|
|
|
|
@btn-warning-bg: @brand-warning;
|
|
|
|
|
@btn-warning-border: darken(@btn-warning-bg, 5%);
|
|
|
|
|
@btn-warning-border: transparent;
|
|
|
|
|
|
|
|
|
|
@btn-danger-color: #fff;
|
|
|
|
|
@btn-danger-bg: @brand-danger;
|
|
|
|
|
@btn-danger-border: darken(@btn-danger-bg, 5%);
|
|
|
|
|
@btn-danger-border: transparent;
|
|
|
|
|
|
|
|
|
|
@btn-link-disabled-color: @gray-light;
|
|
|
|
|
|
|
|
|
@ -181,14 +181,14 @@
|
|
|
|
|
//##
|
|
|
|
|
|
|
|
|
|
//** `<input>` background color
|
|
|
|
|
@input-bg: #fff;
|
|
|
|
|
@input-bg: transparent;
|
|
|
|
|
//** `<input disabled>` background color
|
|
|
|
|
@input-bg-disabled: @gray-lighter;
|
|
|
|
|
@input-bg-disabled: transparent;
|
|
|
|
|
|
|
|
|
|
//** Text color for `<input>`s
|
|
|
|
|
@input-color: @gray;
|
|
|
|
|
//** `<input>` border color
|
|
|
|
|
@input-border: #ccc;
|
|
|
|
|
@input-border: transparent;
|
|
|
|
|
|
|
|
|
|
// TODO: Rename `@input-border-radius` to `@input-border-radius-base` in v4
|
|
|
|
|
//** Default `.form-control` border radius
|
|
|
|
@ -203,7 +203,7 @@
|
|
|
|
|
@input-border-focus: #66afe9;
|
|
|
|
|
|
|
|
|
|
//** Placeholder text color
|
|
|
|
|
@input-color-placeholder: #999;
|
|
|
|
|
@input-color-placeholder: @gray-light;
|
|
|
|
|
|
|
|
|
|
//** Default `.form-control` height
|
|
|
|
|
@input-height-base: (@line-height-computed + (@padding-base-vertical * 2) + 2);
|
|
|
|
@ -219,7 +219,7 @@
|
|
|
|
|
@legend-border-color: #e5e5e5;
|
|
|
|
|
|
|
|
|
|
//** Background color for textual input addons
|
|
|
|
|
@input-group-addon-bg: @gray-lighter;
|
|
|
|
|
@input-group-addon-bg: transparent;
|
|
|
|
|
//** Border color for textual input addons
|
|
|
|
|
@input-group-addon-border-color: @input-border;
|
|
|
|
|
|
|
|
|
@ -241,11 +241,11 @@
|
|
|
|
|
@dropdown-divider-bg: #e5e5e5;
|
|
|
|
|
|
|
|
|
|
//** Dropdown link text color.
|
|
|
|
|
@dropdown-link-color: @gray-dark;
|
|
|
|
|
@dropdown-link-color: @text-color;
|
|
|
|
|
//** Hover color for dropdown links.
|
|
|
|
|
@dropdown-link-hover-color: darken(@gray-dark, 5%);
|
|
|
|
|
//** Hover background for dropdown links.
|
|
|
|
|
@dropdown-link-hover-bg: #f5f5f5;
|
|
|
|
|
@dropdown-link-hover-bg: @gray-lighter;
|
|
|
|
|
|
|
|
|
|
//** Active dropdown menu item text color.
|
|
|
|
|
@dropdown-link-active-color: @component-active-color;
|
|
|
|
@ -259,7 +259,7 @@
|
|
|
|
|
@dropdown-header-color: @gray-light;
|
|
|
|
|
|
|
|
|
|
//** Deprecated `@dropdown-caret-color` as of v3.1.0
|
|
|
|
|
@dropdown-caret-color: #000;
|
|
|
|
|
@dropdown-caret-color: @gray-light;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//-- Z-index master list
|
|
|
|
@ -357,45 +357,45 @@
|
|
|
|
|
//##
|
|
|
|
|
|
|
|
|
|
// Basics of a navbar
|
|
|
|
|
@navbar-height: 50px;
|
|
|
|
|
@navbar-height: 64px;
|
|
|
|
|
@navbar-margin-bottom: @line-height-computed;
|
|
|
|
|
@navbar-border-radius: @border-radius-base;
|
|
|
|
|
@navbar-padding-horizontal: floor((@grid-gutter-width / 2));
|
|
|
|
|
@navbar-padding-vertical: ((@navbar-height - @line-height-computed) / 2);
|
|
|
|
|
@navbar-collapse-max-height: 340px;
|
|
|
|
|
|
|
|
|
|
@navbar-default-color: #777;
|
|
|
|
|
@navbar-default-bg: #f8f8f8;
|
|
|
|
|
@navbar-default-border: darken(@navbar-default-bg, 6.5%);
|
|
|
|
|
@navbar-default-color: @gray-light;
|
|
|
|
|
@navbar-default-bg: #fff;
|
|
|
|
|
@navbar-default-border: transparent;
|
|
|
|
|
|
|
|
|
|
// Navbar links
|
|
|
|
|
@navbar-default-link-color: #777;
|
|
|
|
|
@navbar-default-link-hover-color: #333;
|
|
|
|
|
@navbar-default-link-color: @gray;
|
|
|
|
|
@navbar-default-link-hover-color: @gray-dark;
|
|
|
|
|
@navbar-default-link-hover-bg: transparent;
|
|
|
|
|
@navbar-default-link-active-color: #555;
|
|
|
|
|
@navbar-default-link-active-color: @gray-dark;
|
|
|
|
|
@navbar-default-link-active-bg: darken(@navbar-default-bg, 6.5%);
|
|
|
|
|
@navbar-default-link-disabled-color: #ccc;
|
|
|
|
|
@navbar-default-link-disabled-bg: transparent;
|
|
|
|
|
|
|
|
|
|
// Navbar brand label
|
|
|
|
|
@navbar-default-brand-color: @navbar-default-link-color;
|
|
|
|
|
@navbar-default-brand-hover-color: darken(@navbar-default-brand-color, 10%);
|
|
|
|
|
@navbar-default-brand-hover-color: @navbar-default-link-hover-color;
|
|
|
|
|
@navbar-default-brand-hover-bg: transparent;
|
|
|
|
|
|
|
|
|
|
// Navbar toggle
|
|
|
|
|
@navbar-default-toggle-hover-bg: #ddd;
|
|
|
|
|
@navbar-default-toggle-icon-bar-bg: #888;
|
|
|
|
|
@navbar-default-toggle-border-color: #ddd;
|
|
|
|
|
@navbar-default-toggle-hover-bg: transparent;
|
|
|
|
|
@navbar-default-toggle-icon-bar-bg: rgba(0,0,0,0.5);
|
|
|
|
|
@navbar-default-toggle-border-color: transparent;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//=== Inverted navbar
|
|
|
|
|
// Reset inverted navbar basics
|
|
|
|
|
@navbar-inverse-color: lighten(@gray-light, 15%);
|
|
|
|
|
@navbar-inverse-bg: #222;
|
|
|
|
|
@navbar-inverse-border: darken(@navbar-inverse-bg, 10%);
|
|
|
|
|
@navbar-inverse-color: @gray-light;
|
|
|
|
|
@navbar-inverse-bg: @brand-primary;
|
|
|
|
|
@navbar-inverse-border: transparent;
|
|
|
|
|
|
|
|
|
|
// Inverted navbar links
|
|
|
|
|
@navbar-inverse-link-color: lighten(@gray-light, 15%);
|
|
|
|
|
@navbar-inverse-link-color: lighten(@brand-primary, 30%);
|
|
|
|
|
@navbar-inverse-link-hover-color: #fff;
|
|
|
|
|
@navbar-inverse-link-hover-bg: transparent;
|
|
|
|
|
@navbar-inverse-link-active-color: @navbar-inverse-link-hover-color;
|
|
|
|
@ -408,10 +408,10 @@
|
|
|
|
|
@navbar-inverse-brand-hover-color: #fff;
|
|
|
|
|
@navbar-inverse-brand-hover-bg: transparent;
|
|
|
|
|
|
|
|
|
|
// Inverted navbar toggle
|
|
|
|
|
@navbar-inverse-toggle-hover-bg: #333;
|
|
|
|
|
@navbar-inverse-toggle-icon-bar-bg: #fff;
|
|
|
|
|
@navbar-inverse-toggle-border-color: #333;
|
|
|
|
|
// Inverted navbar toggle\
|
|
|
|
|
@navbar-inverse-toggle-hover-bg: transparent;
|
|
|
|
|
@navbar-inverse-toggle-icon-bar-bg: rgba(0,0,0,0.5);
|
|
|
|
|
@navbar-inverse-toggle-border-color: transparent;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//== Navs
|
|
|
|
@ -426,15 +426,15 @@
|
|
|
|
|
@nav-disabled-link-hover-color: @gray-light;
|
|
|
|
|
|
|
|
|
|
//== Tabs
|
|
|
|
|
@nav-tabs-border-color: #ddd;
|
|
|
|
|
@nav-tabs-border-color: transparent;
|
|
|
|
|
|
|
|
|
|
@nav-tabs-link-hover-border-color: @gray-lighter;
|
|
|
|
|
|
|
|
|
|
@nav-tabs-active-link-hover-bg: @body-bg;
|
|
|
|
|
@nav-tabs-active-link-hover-bg: transparent;
|
|
|
|
|
@nav-tabs-active-link-hover-color: @gray;
|
|
|
|
|
@nav-tabs-active-link-hover-border-color: #ddd;
|
|
|
|
|
@nav-tabs-active-link-hover-border-color: transparent;
|
|
|
|
|
|
|
|
|
|
@nav-tabs-justified-link-border-color: #ddd;
|
|
|
|
|
@nav-tabs-justified-link-border-color: @nav-tabs-border-color;
|
|
|
|
|
@nav-tabs-justified-active-link-border-color: @body-bg;
|
|
|
|
|
|
|
|
|
|
//== Pills
|
|
|
|
@ -486,8 +486,8 @@
|
|
|
|
|
|
|
|
|
|
@jumbotron-padding: 30px;
|
|
|
|
|
@jumbotron-color: inherit;
|
|
|
|
|
@jumbotron-bg: @gray-lighter;
|
|
|
|
|
@jumbotron-heading-color: inherit;
|
|
|
|
|
@jumbotron-bg: #f9f9f9;
|
|
|
|
|
@jumbotron-heading-color: @headings-color;
|
|
|
|
|
@jumbotron-font-size: ceil((@font-size-base * 1.5));
|
|
|
|
|
@jumbotron-heading-font-size: ceil((@font-size-base * 4.5));
|
|
|
|
|
|
|
|
|
@ -496,20 +496,20 @@
|
|
|
|
|
//
|
|
|
|
|
//## Define colors for form feedback states and, by default, alerts.
|
|
|
|
|
|
|
|
|
|
@state-success-text: #3c763d;
|
|
|
|
|
@state-success-text: @brand-success;
|
|
|
|
|
@state-success-bg: #dff0d8;
|
|
|
|
|
@state-success-border: darken(spin(@state-success-bg, -10), 5%);
|
|
|
|
|
|
|
|
|
|
@state-info-text: #31708f;
|
|
|
|
|
@state-info-bg: #d9edf7;
|
|
|
|
|
@state-info-text: @brand-info;
|
|
|
|
|
@state-info-bg: #e1bee7;
|
|
|
|
|
@state-info-border: darken(spin(@state-info-bg, -10), 7%);
|
|
|
|
|
|
|
|
|
|
@state-warning-text: #8a6d3b;
|
|
|
|
|
@state-warning-bg: #fcf8e3;
|
|
|
|
|
@state-warning-text: @brand-warning;
|
|
|
|
|
@state-warning-bg: #ffe0b2;
|
|
|
|
|
@state-warning-border: darken(spin(@state-warning-bg, -10), 5%);
|
|
|
|
|
|
|
|
|
|
@state-danger-text: #a94442;
|
|
|
|
|
@state-danger-bg: #f2dede;
|
|
|
|
|
@state-danger-text: @brand-danger;
|
|
|
|
|
@state-danger-bg: #f9bdbb;
|
|
|
|
|
@state-danger-border: darken(spin(@state-danger-bg, -10), 5%);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -522,7 +522,7 @@
|
|
|
|
|
//** Tooltip text color
|
|
|
|
|
@tooltip-color: #fff;
|
|
|
|
|
//** Tooltip background color
|
|
|
|
|
@tooltip-bg: #000;
|
|
|
|
|
@tooltip-bg: #727272;
|
|
|
|
|
@tooltip-opacity: .9;
|
|
|
|
|
|
|
|
|
|
//** Tooltip arrow width
|
|
|
|
@ -540,9 +540,9 @@
|
|
|
|
|
//** Popover maximum width
|
|
|
|
|
@popover-max-width: 276px;
|
|
|
|
|
//** Popover border color
|
|
|
|
|
@popover-border-color: rgba(0,0,0,.2);
|
|
|
|
|
@popover-border-color: transparent;
|
|
|
|
|
//** Popover fallback border color
|
|
|
|
|
@popover-fallback-border-color: #ccc;
|
|
|
|
|
@popover-fallback-border-color: transparent;
|
|
|
|
|
|
|
|
|
|
//** Popover title background color
|
|
|
|
|
@popover-title-bg: darken(@popover-bg, 3%);
|
|
|
|
@ -555,7 +555,7 @@
|
|
|
|
|
//** Popover outer arrow width
|
|
|
|
|
@popover-arrow-outer-width: (@popover-arrow-width + 1);
|
|
|
|
|
//** Popover outer arrow color
|
|
|
|
|
@popover-arrow-outer-color: fadein(@popover-border-color, 5%);
|
|
|
|
|
@popover-arrow-outer-color: fadein(@popover-border-color, 7.5%);
|
|
|
|
|
//** Popover outer arrow fallback color
|
|
|
|
|
@popover-arrow-outer-fallback-color: darken(@popover-fallback-border-color, 20%);
|
|
|
|
|
|
|
|
|
@ -598,7 +598,7 @@
|
|
|
|
|
//** Background color of modal content area
|
|
|
|
|
@modal-content-bg: #fff;
|
|
|
|
|
//** Modal content border color
|
|
|
|
|
@modal-content-border-color: rgba(0,0,0,.2);
|
|
|
|
|
@modal-content-border-color: transparent;
|
|
|
|
|
//** Modal content border color **for IE8**
|
|
|
|
|
@modal-content-fallback-border-color: #999;
|
|
|
|
|
|
|
|
|
@ -607,7 +607,7 @@
|
|
|
|
|
//** Modal backdrop opacity
|
|
|
|
|
@modal-backdrop-opacity: .5;
|
|
|
|
|
//** Modal header border color
|
|
|
|
|
@modal-header-border-color: #e5e5e5;
|
|
|
|
|
@modal-header-border-color: transparent;
|
|
|
|
|
//** Modal footer border color
|
|
|
|
|
@modal-footer-border-color: @modal-header-border-color;
|
|
|
|
|
|
|
|
|
@ -720,21 +720,21 @@
|
|
|
|
|
@panel-primary-border: @brand-primary;
|
|
|
|
|
@panel-primary-heading-bg: @brand-primary;
|
|
|
|
|
|
|
|
|
|
@panel-success-text: @state-success-text;
|
|
|
|
|
@panel-success-text: #fff;
|
|
|
|
|
@panel-success-border: @state-success-border;
|
|
|
|
|
@panel-success-heading-bg: @state-success-bg;
|
|
|
|
|
@panel-success-heading-bg: @brand-success;
|
|
|
|
|
|
|
|
|
|
@panel-info-text: @state-info-text;
|
|
|
|
|
@panel-info-text: #fff;
|
|
|
|
|
@panel-info-border: @state-info-border;
|
|
|
|
|
@panel-info-heading-bg: @state-info-bg;
|
|
|
|
|
@panel-info-heading-bg: @brand-info;
|
|
|
|
|
|
|
|
|
|
@panel-warning-text: @state-warning-text;
|
|
|
|
|
@panel-warning-text: #fff;
|
|
|
|
|
@panel-warning-border: @state-warning-border;
|
|
|
|
|
@panel-warning-heading-bg: @state-warning-bg;
|
|
|
|
|
@panel-warning-heading-bg: @brand-warning;
|
|
|
|
|
|
|
|
|
|
@panel-danger-text: @state-danger-text;
|
|
|
|
|
@panel-danger-text: #fff;
|
|
|
|
|
@panel-danger-border: @state-danger-border;
|
|
|
|
|
@panel-danger-heading-bg: @state-danger-bg;
|
|
|
|
|
@panel-danger-heading-bg: @brand-danger;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//== Thumbnails
|
|
|
|
@ -760,8 +760,8 @@
|
|
|
|
|
//
|
|
|
|
|
//##
|
|
|
|
|
|
|
|
|
|
@well-bg: #f5f5f5;
|
|
|
|
|
@well-border: darken(@well-bg, 7%);
|
|
|
|
|
@well-bg: #f9f9f9;
|
|
|
|
|
@well-border: transparent;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//== Badges
|
|
|
|
@ -778,7 +778,7 @@
|
|
|
|
|
//** Badge background color in active nav link
|
|
|
|
|
@badge-active-bg: #fff;
|
|
|
|
|
|
|
|
|
|
@badge-font-weight: bold;
|
|
|
|
|
@badge-font-weight: normal;
|
|
|
|
|
@badge-line-height: 1;
|
|
|
|
|
@badge-border-radius: 10px;
|
|
|
|
|
|
|
|
|
@ -820,9 +820,9 @@
|
|
|
|
|
//
|
|
|
|
|
//##
|
|
|
|
|
|
|
|
|
|
@close-font-weight: bold;
|
|
|
|
|
@close-font-weight: normal;
|
|
|
|
|
@close-color: #000;
|
|
|
|
|
@close-text-shadow: 0 1px 0 #fff;
|
|
|
|
|
@close-text-shadow: none;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//== Code
|
|
|
|
|