2012-06-29 12:46:45 +08:00
|
|
|
//
|
|
|
|
// Variables
|
|
|
|
// --------------------------------------------------
|
2011-09-13 11:07:26 +08:00
|
|
|
|
|
|
|
|
2012-06-29 12:46:45 +08:00
|
|
|
// Global values
|
2012-01-18 16:12:58 +08:00
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
// Grays
|
2012-03-06 14:47:39 +08:00
|
|
|
// -------------------------
|
2013-02-02 08:21:38 +08:00
|
|
|
|
2013-04-22 10:35:36 +08:00
|
|
|
@gray-darker: lighten(#000, 13.5%); // #222
|
|
|
|
@gray-dark: lighten(#000, 20%); // #333
|
|
|
|
@gray: lighten(#000, 33.5%); // #555
|
|
|
|
@gray-light: lighten(#000, 60%); // #999
|
|
|
|
@gray-lighter: lighten(#000, 93.5%); // #eee
|
2012-01-18 16:12:58 +08:00
|
|
|
|
2013-02-02 08:21:38 +08:00
|
|
|
// Brand colors
|
|
|
|
// -------------------------
|
|
|
|
|
|
|
|
@brand-primary: #428bca;
|
|
|
|
@brand-success: #5cb85c;
|
|
|
|
@brand-warning: #f0ad4e;
|
|
|
|
@brand-danger: #d9534f;
|
|
|
|
@brand-info: #5bc0de;
|
2012-03-06 14:47:39 +08:00
|
|
|
|
2012-03-05 16:29:16 +08:00
|
|
|
// Scaffolding
|
2012-03-06 14:47:39 +08:00
|
|
|
// -------------------------
|
2012-12-01 07:09:57 +08:00
|
|
|
|
2013-04-01 08:29:05 +08:00
|
|
|
@body-bg: #fff;
|
2013-04-22 10:35:36 +08:00
|
|
|
@text-color: @gray-dark;
|
2012-03-06 14:47:39 +08:00
|
|
|
|
2012-03-05 16:29:16 +08:00
|
|
|
// Links
|
2012-03-06 14:47:39 +08:00
|
|
|
// -------------------------
|
2012-12-01 07:09:57 +08:00
|
|
|
|
2013-04-01 03:16:16 +08:00
|
|
|
@link-color: @brand-primary;
|
2013-04-01 08:27:22 +08:00
|
|
|
@link-hover-color: darken(@link-color, 15%);
|
2012-03-06 14:47:39 +08:00
|
|
|
|
2012-01-18 16:12:58 +08:00
|
|
|
// Typography
|
2012-03-06 14:47:39 +08:00
|
|
|
// -------------------------
|
2012-12-01 07:33:56 +08:00
|
|
|
|
2012-12-01 06:37:24 +08:00
|
|
|
@font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
|
|
@font-family-serif: Georgia, "Times New Roman", Times, serif;
|
|
|
|
@font-family-monospace: Monaco, Menlo, Consolas, "Courier New", monospace;
|
2012-12-01 06:45:25 +08:00
|
|
|
@font-family-base: @font-family-sans-serif;
|
2012-03-23 08:18:07 +08:00
|
|
|
|
2013-04-01 03:00:04 +08:00
|
|
|
@font-size-base: 14px;
|
2013-05-11 01:33:35 +08:00
|
|
|
@font-size-large: ceil(@font-size-base * 1.25); // ~18px
|
|
|
|
@font-size-small: ceil(@font-size-base * 0.85); // ~12px
|
2012-03-05 16:29:16 +08:00
|
|
|
|
2013-08-21 08:49:17 +08:00
|
|
|
@font-size-h1: floor(@font-size-base * 2.60); // ~36px
|
|
|
|
@font-size-h2: floor(@font-size-base * 2.15); // ~30px
|
|
|
|
@font-size-h3: ceil(@font-size-base * 1.70); // ~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
|
|
|
|
|
2013-05-15 14:21:30 +08:00
|
|
|
@line-height-base: 1.428571429; // 20/14
|
|
|
|
@line-height-computed: floor(@font-size-base * @line-height-base); // ~20px
|
2012-12-01 06:45:25 +08:00
|
|
|
|
2013-06-21 06:38:18 +08:00
|
|
|
@headings-font-family: @font-family-base;
|
2013-01-16 09:55:14 +08:00
|
|
|
@headings-font-weight: 500;
|
2013-05-15 14:21:30 +08:00
|
|
|
@headings-line-height: 1.1;
|
2013-09-01 15:49:28 +08:00
|
|
|
@headings-color: inherit;
|
|
|
|
|
2011-10-04 15:20:38 +08:00
|
|
|
|
2013-08-18 15:36:51 +08:00
|
|
|
// Iconography
|
|
|
|
// -------------------------
|
|
|
|
|
|
|
|
@icon-font-path: "../fonts/";
|
2013-08-18 16:46:26 +08:00
|
|
|
@icon-font-name: "glyphicons-halflings-regular";
|
2013-08-18 15:36:51 +08:00
|
|
|
|
2012-09-19 11:56:20 +08:00
|
|
|
|
2013-04-01 03:16:16 +08:00
|
|
|
// Components
|
2012-09-19 12:16:08 +08:00
|
|
|
// -------------------------
|
2013-05-15 14:21:30 +08:00
|
|
|
// Based on 14px font-size and 1.428 line-height (~20px to start)
|
2012-09-19 12:16:08 +08:00
|
|
|
|
2013-08-03 06:09:48 +08:00
|
|
|
@padding-base-vertical: 6px;
|
2013-05-15 14:21:30 +08:00
|
|
|
@padding-base-horizontal: 12px;
|
2012-09-19 12:16:08 +08:00
|
|
|
|
2013-08-03 06:09:48 +08:00
|
|
|
@padding-large-vertical: 10px;
|
2013-05-15 14:21:30 +08:00
|
|
|
@padding-large-horizontal: 16px;
|
|
|
|
|
|
|
|
@padding-small-vertical: 5px;
|
|
|
|
@padding-small-horizontal: 10px;
|
|
|
|
|
2013-08-03 06:09:48 +08:00
|
|
|
@line-height-large: 1.33;
|
|
|
|
@line-height-small: 1.5;
|
|
|
|
|
2013-05-15 14:21:30 +08:00
|
|
|
@border-radius-base: 4px;
|
|
|
|
@border-radius-large: 6px;
|
|
|
|
@border-radius-small: 3px;
|
2012-09-19 12:16:08 +08:00
|
|
|
|
2013-09-02 05:38:11 +08:00
|
|
|
@component-active-color: #fff;
|
2013-04-01 03:16:16 +08:00
|
|
|
@component-active-bg: @brand-primary;
|
|
|
|
|
2013-08-06 07:03:10 +08:00
|
|
|
@caret-width-base: 4px;
|
|
|
|
@caret-width-large: 5px;
|
2012-09-19 12:16:08 +08:00
|
|
|
|
2012-03-06 14:47:39 +08:00
|
|
|
// Tables
|
|
|
|
// -------------------------
|
2012-12-01 07:09:57 +08:00
|
|
|
|
2013-07-18 14:34:04 +08:00
|
|
|
@table-cell-padding: 8px;
|
|
|
|
@table-condensed-cell-padding: 5px;
|
|
|
|
|
2013-04-01 08:29:05 +08:00
|
|
|
@table-bg: transparent; // overall background-color
|
|
|
|
@table-bg-accent: #f9f9f9; // for striping
|
2013-07-18 15:23:35 +08:00
|
|
|
@table-bg-hover: #f5f5f5;
|
|
|
|
@table-bg-active: @table-bg-hover;
|
2012-12-01 07:09:57 +08:00
|
|
|
|
2013-04-15 10:45:32 +08:00
|
|
|
@table-border-color: #ddd; // table and cell border
|
2012-03-06 14:47:39 +08:00
|
|
|
|
2012-10-01 14:52:02 +08:00
|
|
|
|
2012-01-18 16:12:58 +08:00
|
|
|
// Buttons
|
2012-03-06 14:47:39 +08:00
|
|
|
// -------------------------
|
2012-12-01 07:09:57 +08:00
|
|
|
|
2013-08-19 02:11:31 +08:00
|
|
|
@btn-font-weight: normal;
|
2013-08-06 07:03:10 +08:00
|
|
|
|
2013-08-06 00:02:59 +08:00
|
|
|
@btn-default-color: #333;
|
|
|
|
@btn-default-bg: #fff;
|
|
|
|
@btn-default-border: #ccc;
|
2012-03-05 16:29:16 +08:00
|
|
|
|
2013-08-06 00:02:59 +08:00
|
|
|
@btn-primary-color: #fff;
|
2013-04-01 08:32:45 +08:00
|
|
|
@btn-primary-bg: @brand-primary;
|
2013-08-06 02:30:50 +08:00
|
|
|
@btn-primary-border: darken(@btn-primary-bg, 5%);
|
2012-03-05 16:29:16 +08:00
|
|
|
|
2013-08-06 00:02:59 +08:00
|
|
|
@btn-success-color: #fff;
|
2013-04-08 05:52:12 +08:00
|
|
|
@btn-success-bg: @brand-success;
|
2013-08-06 02:30:50 +08:00
|
|
|
@btn-success-border: darken(@btn-success-bg, 5%);
|
2012-03-05 16:29:16 +08:00
|
|
|
|
2013-08-06 00:02:59 +08:00
|
|
|
@btn-warning-color: #fff;
|
2013-04-08 05:52:12 +08:00
|
|
|
@btn-warning-bg: @brand-warning;
|
2013-08-06 02:30:50 +08:00
|
|
|
@btn-warning-border: darken(@btn-warning-bg, 5%);
|
2012-03-05 16:29:16 +08:00
|
|
|
|
2013-08-06 00:02:59 +08:00
|
|
|
@btn-danger-color: #fff;
|
2013-04-08 05:52:12 +08:00
|
|
|
@btn-danger-bg: @brand-danger;
|
2013-08-06 02:30:50 +08:00
|
|
|
@btn-danger-border: darken(@btn-danger-bg, 5%);
|
2012-03-05 16:29:16 +08:00
|
|
|
|
2013-08-06 00:02:59 +08:00
|
|
|
@btn-info-color: #fff;
|
2013-04-08 05:52:12 +08:00
|
|
|
@btn-info-bg: @brand-info;
|
2013-08-06 02:30:50 +08:00
|
|
|
@btn-info-border: darken(@btn-info-bg, 5%);
|
2013-01-18 11:51:22 +08:00
|
|
|
|
2013-08-06 07:03:10 +08:00
|
|
|
@btn-link-disabled-color: @gray-light;
|
2013-07-28 20:32:08 +08:00
|
|
|
|
2012-03-06 14:47:39 +08:00
|
|
|
|
2012-03-05 16:29:16 +08:00
|
|
|
// Forms
|
2012-03-06 14:47:39 +08:00
|
|
|
// -------------------------
|
2012-12-01 07:09:57 +08:00
|
|
|
|
2013-04-01 08:33:55 +08:00
|
|
|
@input-bg: #fff;
|
2013-04-22 10:35:36 +08:00
|
|
|
@input-bg-disabled: @gray-lighter;
|
2012-12-01 07:09:57 +08:00
|
|
|
|
2013-08-12 09:06:26 +08:00
|
|
|
@input-color: @gray;
|
2012-12-01 07:05:23 +08:00
|
|
|
@input-border: #ccc;
|
|
|
|
@input-border-radius: @border-radius-base;
|
2013-08-05 14:05:54 +08:00
|
|
|
@input-border-focus: #66afe9;
|
2012-12-01 07:09:57 +08:00
|
|
|
|
2013-04-22 10:35:36 +08:00
|
|
|
@input-color-placeholder: @gray-light;
|
2012-12-01 07:09:57 +08:00
|
|
|
|
2013-06-16 02:46:13 +08:00
|
|
|
@input-height-base: (@line-height-computed + (@padding-base-vertical * 2) + 2);
|
2013-08-03 06:09:48 +08:00
|
|
|
@input-height-large: (floor(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2);
|
|
|
|
@input-height-small: (floor(@font-size-small * @line-height-small) + (@padding-small-vertical * 2) + 2);
|
2013-02-01 05:00:22 +08:00
|
|
|
|
2013-08-12 09:06:26 +08:00
|
|
|
@legend-color: @gray-dark;
|
2013-07-20 16:38:27 +08:00
|
|
|
@legend-border-color: #e5e5e5;
|
|
|
|
|
2013-08-12 09:09:56 +08:00
|
|
|
@input-group-addon-bg: @gray-lighter;
|
2013-07-24 14:25:46 +08:00
|
|
|
@input-group-addon-border-color: @input-border;
|
2013-07-20 16:38:27 +08:00
|
|
|
|
2012-03-06 14:47:39 +08:00
|
|
|
|
2012-03-05 16:29:16 +08:00
|
|
|
// Dropdowns
|
2012-03-06 14:47:39 +08:00
|
|
|
// -------------------------
|
2012-01-07 20:07:53 +08:00
|
|
|
|
2013-04-01 08:36:23 +08:00
|
|
|
@dropdown-bg: #fff;
|
2013-01-13 20:04:16 +08:00
|
|
|
@dropdown-border: rgba(0,0,0,.15);
|
2013-07-20 16:17:56 +08:00
|
|
|
@dropdown-fallback-border: #ccc;
|
2013-07-24 14:18:53 +08:00
|
|
|
@dropdown-divider-bg: #e5e5e5;
|
2012-12-01 07:09:57 +08:00
|
|
|
|
2013-09-01 17:00:40 +08:00
|
|
|
@dropdown-link-color: @gray-dark;
|
|
|
|
@dropdown-link-hover-color: darken(@gray-dark, 5%);
|
|
|
|
@dropdown-link-hover-bg: #f5f5f5;
|
|
|
|
|
2013-09-02 05:38:11 +08:00
|
|
|
@dropdown-link-active-color: @component-active-color;
|
2013-04-01 08:36:23 +08:00
|
|
|
@dropdown-link-active-bg: @component-active-bg;
|
2012-06-20 10:17:42 +08:00
|
|
|
|
2013-08-12 08:47:30 +08:00
|
|
|
@dropdown-link-disabled-color: @gray-light;
|
|
|
|
|
|
|
|
@dropdown-header-color: @gray-light;
|
2013-08-12 08:47:53 +08:00
|
|
|
|
2013-07-24 14:18:53 +08:00
|
|
|
@dropdown-caret-color: #000;
|
2013-07-20 16:17:56 +08:00
|
|
|
|
2012-03-11 03:23:05 +08:00
|
|
|
|
2012-01-18 16:12:58 +08:00
|
|
|
// COMPONENT VARIABLES
|
|
|
|
// --------------------------------------------------
|
2012-01-09 04:40:30 +08:00
|
|
|
|
2012-09-19 11:56:20 +08:00
|
|
|
|
2012-01-18 16:12:58 +08:00
|
|
|
// Z-index master list
|
2012-03-11 03:23:05 +08:00
|
|
|
// -------------------------
|
2012-01-18 16:12:58 +08:00
|
|
|
// Used for a bird's eye view of components dependent on the z-axis
|
2012-01-25 08:54:35 +08:00
|
|
|
// Try to avoid customizing these :)
|
2012-12-01 07:27:13 +08:00
|
|
|
|
2013-08-20 00:31:16 +08:00
|
|
|
@zindex-navbar: 1000;
|
2012-12-01 07:23:13 +08:00
|
|
|
@zindex-dropdown: 1000;
|
|
|
|
@zindex-popover: 1010;
|
|
|
|
@zindex-tooltip: 1030;
|
|
|
|
@zindex-navbar-fixed: 1030;
|
|
|
|
@zindex-modal-background: 1040;
|
|
|
|
@zindex-modal: 1050;
|
2012-03-11 03:23:05 +08:00
|
|
|
|
2013-07-29 07:03:46 +08:00
|
|
|
// Media queries breakpoints
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2013-08-04 12:39:57 +08:00
|
|
|
// Extra small screen / phone
|
2013-08-24 13:56:23 +08:00
|
|
|
// Note: Deprecated @screen-xs and @screen-phone as of v3.0.1
|
2013-08-18 06:21:38 +08:00
|
|
|
@screen-xs: 480px;
|
2013-08-21 08:31:02 +08:00
|
|
|
@screen-xs-min: @screen-xs;
|
|
|
|
@screen-phone: @screen-xs-min;
|
2013-07-29 07:03:46 +08:00
|
|
|
|
|
|
|
// Small screen / tablet
|
2013-08-24 13:56:23 +08:00
|
|
|
// Note: Deprecated @screen-sm and @screen-tablet as of v3.0.1
|
2013-08-18 06:21:38 +08:00
|
|
|
@screen-sm: 768px;
|
2013-08-21 08:31:02 +08:00
|
|
|
@screen-sm-min: @screen-sm;
|
|
|
|
@screen-tablet: @screen-sm-min;
|
2013-07-29 07:03:46 +08:00
|
|
|
|
|
|
|
// Medium screen / desktop
|
2013-08-24 13:56:23 +08:00
|
|
|
// Note: Deprecated @screen-md and @screen-desktop as of v3.0.1
|
2013-08-18 06:21:38 +08:00
|
|
|
@screen-md: 992px;
|
2013-08-21 08:31:02 +08:00
|
|
|
@screen-md-min: @screen-md;
|
|
|
|
@screen-desktop: @screen-md-min;
|
2013-07-29 07:03:46 +08:00
|
|
|
|
|
|
|
// Large screen / wide desktop
|
2013-08-24 13:56:23 +08:00
|
|
|
// Note: Deprecated @screen-lg and @screen-lg-desktop as of v3.0.1
|
2013-08-18 06:21:38 +08:00
|
|
|
@screen-lg: 1200px;
|
2013-08-21 08:31:02 +08:00
|
|
|
@screen-lg-min: @screen-lg;
|
|
|
|
@screen-lg-desktop: @screen-lg-min;
|
2013-07-29 07:03:46 +08:00
|
|
|
|
2013-08-06 11:55:30 +08:00
|
|
|
// So media queries don't overlap when required, provide a maximum
|
2013-08-21 08:31:02 +08:00
|
|
|
@screen-xs-max: (@screen-sm-min - 1);
|
|
|
|
@screen-sm-max: (@screen-md-min - 1);
|
|
|
|
@screen-md-max: (@screen-lg-min - 1);
|
2013-08-06 11:55:30 +08:00
|
|
|
|
|
|
|
|
2013-07-29 07:03:46 +08:00
|
|
|
// Grid system
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
// Number of columns in the grid system
|
|
|
|
@grid-columns: 12;
|
|
|
|
// Padding, to be divided by two and applied to the left and right of all columns
|
|
|
|
@grid-gutter-width: 30px;
|
|
|
|
// Point at which the navbar stops collapsing
|
2013-09-12 15:52:33 +08:00
|
|
|
@grid-float-breakpoint: @screen-sm-min;
|
2013-07-29 07:03:46 +08:00
|
|
|
|
2012-06-29 01:03:46 +08:00
|
|
|
|
2012-01-18 16:24:10 +08:00
|
|
|
// Navbar
|
2012-03-11 03:23:05 +08:00
|
|
|
// -------------------------
|
2012-12-01 07:27:13 +08:00
|
|
|
|
2013-01-17 08:14:41 +08:00
|
|
|
// Basics of a navbar
|
|
|
|
@navbar-height: 50px;
|
2013-08-12 09:32:52 +08:00
|
|
|
@navbar-margin-bottom: @line-height-computed;
|
2013-08-05 15:47:23 +08:00
|
|
|
@navbar-border-radius: @border-radius-base;
|
2013-08-12 07:07:45 +08:00
|
|
|
@navbar-padding-horizontal: floor(@grid-gutter-width / 2);
|
2013-07-18 17:23:38 +08:00
|
|
|
@navbar-padding-vertical: ((@navbar-height - @line-height-computed) / 2);
|
2012-07-29 15:30:15 +08:00
|
|
|
|
2013-09-12 12:14:10 +08:00
|
|
|
@navbar-default-color: #777;
|
|
|
|
@navbar-default-bg: #f8f8f8;
|
|
|
|
@navbar-default-border: darken(@navbar-default-bg, 6.5%);
|
|
|
|
|
2013-01-17 08:14:41 +08:00
|
|
|
// Navbar links
|
2013-08-19 05:05:56 +08:00
|
|
|
@navbar-default-link-color: #777;
|
|
|
|
@navbar-default-link-hover-color: #333;
|
|
|
|
@navbar-default-link-hover-bg: transparent;
|
|
|
|
@navbar-default-link-active-color: #555;
|
2013-08-19 05:30:40 +08:00
|
|
|
@navbar-default-link-active-bg: darken(@navbar-default-bg, 6.5%);
|
2013-08-19 05:05:56 +08:00
|
|
|
@navbar-default-link-disabled-color: #ccc;
|
|
|
|
@navbar-default-link-disabled-bg: transparent;
|
2013-01-17 08:14:41 +08:00
|
|
|
|
2013-04-10 17:27:11 +08:00
|
|
|
// Navbar brand label
|
2013-08-19 05:30:40 +08:00
|
|
|
@navbar-default-brand-color: @navbar-default-link-color;
|
2013-08-29 00:18:44 +08:00
|
|
|
@navbar-default-brand-hover-color: darken(@navbar-default-brand-color, 10%);
|
2013-08-19 05:05:56 +08:00
|
|
|
@navbar-default-brand-hover-bg: transparent;
|
2013-04-10 17:27:11 +08:00
|
|
|
|
2013-07-26 01:50:59 +08:00
|
|
|
// Navbar toggle
|
2013-08-19 05:05:56 +08:00
|
|
|
@navbar-default-toggle-hover-bg: #ddd;
|
|
|
|
@navbar-default-toggle-icon-bar-bg: #ccc;
|
|
|
|
@navbar-default-toggle-border-color: #ddd;
|
2013-07-26 01:50:59 +08:00
|
|
|
|
|
|
|
|
2012-07-29 15:30:15 +08:00
|
|
|
// Inverted navbar
|
2013-07-26 01:50:59 +08:00
|
|
|
//
|
|
|
|
// Reset inverted navbar basics
|
|
|
|
@navbar-inverse-color: @gray-light;
|
2013-01-17 07:35:41 +08:00
|
|
|
@navbar-inverse-bg: #222;
|
2013-08-14 04:39:21 +08:00
|
|
|
@navbar-inverse-border: darken(@navbar-inverse-bg, 10%);
|
2012-12-01 07:33:56 +08:00
|
|
|
|
2013-01-17 15:33:26 +08:00
|
|
|
// Inverted navbar links
|
2013-04-22 10:35:36 +08:00
|
|
|
@navbar-inverse-link-color: @gray-light;
|
2013-04-01 08:56:31 +08:00
|
|
|
@navbar-inverse-link-hover-color: #fff;
|
|
|
|
@navbar-inverse-link-hover-bg: transparent;
|
|
|
|
@navbar-inverse-link-active-color: @navbar-inverse-link-hover-color;
|
|
|
|
@navbar-inverse-link-active-bg: darken(@navbar-inverse-bg, 10%);
|
|
|
|
@navbar-inverse-link-disabled-color: #444;
|
|
|
|
@navbar-inverse-link-disabled-bg: transparent;
|
2013-01-17 15:33:26 +08:00
|
|
|
|
2013-04-10 17:27:11 +08:00
|
|
|
// Inverted navbar brand label
|
|
|
|
@navbar-inverse-brand-color: @navbar-inverse-link-color;
|
|
|
|
@navbar-inverse-brand-hover-color: #fff;
|
|
|
|
@navbar-inverse-brand-hover-bg: transparent;
|
|
|
|
|
2013-07-25 14:58:25 +08:00
|
|
|
// Inverted navbar toggle
|
|
|
|
@navbar-inverse-toggle-hover-bg: #333;
|
|
|
|
@navbar-inverse-toggle-icon-bar-bg: #fff;
|
|
|
|
@navbar-inverse-toggle-border-color: #333;
|
|
|
|
|
2013-07-26 01:50:59 +08:00
|
|
|
|
2013-07-25 15:43:14 +08:00
|
|
|
// Navs
|
|
|
|
// -------------------------
|
|
|
|
|
2013-08-16 04:58:16 +08:00
|
|
|
@nav-link-padding: 10px 15px;
|
2013-07-25 15:43:14 +08:00
|
|
|
@nav-link-hover-bg: @gray-lighter;
|
|
|
|
|
|
|
|
@nav-disabled-link-color: @gray-light;
|
|
|
|
@nav-disabled-link-hover-color: @gray-light;
|
|
|
|
|
|
|
|
@nav-open-link-hover-color: #fff;
|
|
|
|
@nav-open-caret-border-color: #fff;
|
|
|
|
|
|
|
|
// Tabs
|
|
|
|
@nav-tabs-border-color: #ddd;
|
|
|
|
|
|
|
|
@nav-tabs-link-hover-border-color: @gray-lighter;
|
|
|
|
|
|
|
|
@nav-tabs-active-link-hover-bg: @body-bg;
|
|
|
|
@nav-tabs-active-link-hover-color: @gray;
|
|
|
|
@nav-tabs-active-link-hover-border-color: #ddd;
|
|
|
|
|
|
|
|
@nav-tabs-justified-link-border-color: #ddd;
|
|
|
|
@nav-tabs-justified-active-link-border-color: @body-bg;
|
|
|
|
|
|
|
|
// Pills
|
2013-09-14 03:39:27 +08:00
|
|
|
@nav-pills-border-radius: @border-radius-base;
|
2013-07-25 15:43:14 +08:00
|
|
|
@nav-pills-active-link-hover-bg: @component-active-bg;
|
2013-09-02 05:40:04 +08:00
|
|
|
@nav-pills-active-link-hover-color: @component-active-color;
|
2012-07-29 15:30:15 +08:00
|
|
|
|
2013-07-26 01:50:59 +08:00
|
|
|
|
2012-08-08 13:37:38 +08:00
|
|
|
// Pagination
|
|
|
|
// -------------------------
|
2012-12-01 07:36:16 +08:00
|
|
|
|
2013-04-01 08:20:16 +08:00
|
|
|
@pagination-bg: #fff;
|
2012-12-01 07:36:16 +08:00
|
|
|
@pagination-border: #ddd;
|
2013-08-16 04:16:06 +08:00
|
|
|
|
|
|
|
@pagination-hover-bg: @gray-lighter;
|
|
|
|
|
|
|
|
@pagination-active-bg: @brand-primary;
|
|
|
|
@pagination-active-color: #fff;
|
|
|
|
|
2013-07-26 20:04:15 +08:00
|
|
|
@pagination-disabled-color: @gray-light;
|
|
|
|
|
2013-08-16 04:16:06 +08:00
|
|
|
|
2013-07-26 20:04:15 +08:00
|
|
|
// Pager
|
|
|
|
// -------------------------
|
|
|
|
|
|
|
|
@pager-border-radius: 15px;
|
|
|
|
@pager-disabled-color: @gray-light;
|
2012-08-08 13:37:38 +08:00
|
|
|
|
2012-01-28 05:20:02 +08:00
|
|
|
|
2012-12-20 13:37:16 +08:00
|
|
|
// Jumbotron
|
2012-03-11 03:23:05 +08:00
|
|
|
// -------------------------
|
2012-12-01 07:36:16 +08:00
|
|
|
|
2013-08-19 23:46:49 +08:00
|
|
|
@jumbotron-padding: 30px;
|
|
|
|
@jumbotron-color: inherit;
|
2013-04-22 10:35:36 +08:00
|
|
|
@jumbotron-bg: @gray-lighter;
|
2012-12-20 13:37:16 +08:00
|
|
|
@jumbotron-heading-color: inherit;
|
2013-10-06 08:48:28 +08:00
|
|
|
@jumbotron-font-size: ceil(@font-size-base * 1.50);
|
2012-03-05 16:29:16 +08:00
|
|
|
|
2012-03-11 03:23:05 +08:00
|
|
|
|
2012-01-25 08:54:35 +08:00
|
|
|
// Form states and alerts
|
2012-03-11 03:23:05 +08:00
|
|
|
// -------------------------
|
2012-12-01 07:36:16 +08:00
|
|
|
|
2012-12-01 07:38:31 +08:00
|
|
|
@state-success-text: #468847;
|
2013-04-01 08:24:06 +08:00
|
|
|
@state-success-bg: #dff0d8;
|
|
|
|
@state-success-border: darken(spin(@state-success-bg, -10), 5%);
|
2012-01-25 08:54:35 +08:00
|
|
|
|
2012-12-01 07:38:31 +08:00
|
|
|
@state-info-text: #3a87ad;
|
2013-04-01 08:24:06 +08:00
|
|
|
@state-info-bg: #d9edf7;
|
|
|
|
@state-info-border: darken(spin(@state-info-bg, -10), 7%);
|
2012-01-25 08:54:35 +08:00
|
|
|
|
2013-09-09 07:58:56 +08:00
|
|
|
@state-warning-text: #c09853;
|
|
|
|
@state-warning-bg: #fcf8e3;
|
|
|
|
@state-warning-border: darken(spin(@state-warning-bg, -10), 5%);
|
|
|
|
|
|
|
|
@state-danger-text: #b94a48;
|
|
|
|
@state-danger-bg: #f2dede;
|
|
|
|
@state-danger-border: darken(spin(@state-danger-bg, -10), 5%);
|
|
|
|
|
2012-01-18 16:24:10 +08:00
|
|
|
|
2013-07-27 02:08:27 +08:00
|
|
|
// Tooltips
|
2012-07-10 13:14:30 +08:00
|
|
|
// -------------------------
|
2013-07-27 02:08:27 +08:00
|
|
|
@tooltip-max-width: 200px;
|
2012-12-27 04:06:21 +08:00
|
|
|
@tooltip-color: #fff;
|
2013-08-07 02:18:53 +08:00
|
|
|
@tooltip-bg: #000;
|
2013-07-27 02:08:27 +08:00
|
|
|
|
2012-12-27 04:06:21 +08:00
|
|
|
@tooltip-arrow-width: 5px;
|
2013-04-01 08:19:12 +08:00
|
|
|
@tooltip-arrow-color: @tooltip-bg;
|
2012-07-10 13:14:30 +08:00
|
|
|
|
2013-07-26 20:04:15 +08:00
|
|
|
|
2013-07-27 02:08:27 +08:00
|
|
|
// Popovers
|
|
|
|
// -------------------------
|
|
|
|
@popover-bg: #fff;
|
|
|
|
@popover-max-width: 276px;
|
|
|
|
@popover-border-color: rgba(0,0,0,.2);
|
|
|
|
@popover-fallback-border-color: #ccc;
|
|
|
|
|
|
|
|
@popover-title-bg: darken(@popover-bg, 3%);
|
2012-07-10 13:14:30 +08:00
|
|
|
|
2013-07-27 02:08:27 +08:00
|
|
|
@popover-arrow-width: 10px;
|
|
|
|
@popover-arrow-color: #fff;
|
2013-07-26 20:04:15 +08:00
|
|
|
|
2013-07-27 02:08:27 +08:00
|
|
|
@popover-arrow-outer-width: (@popover-arrow-width + 1);
|
|
|
|
@popover-arrow-outer-color: rgba(0,0,0,.25);
|
|
|
|
@popover-arrow-outer-fallback-color: #999;
|
2012-07-10 13:14:30 +08:00
|
|
|
|
|
|
|
|
2013-02-18 14:20:49 +08:00
|
|
|
// Labels
|
|
|
|
// -------------------------
|
2013-08-06 06:30:28 +08:00
|
|
|
|
|
|
|
@label-default-bg: @gray-light;
|
2013-08-16 02:31:26 +08:00
|
|
|
@label-primary-bg: @brand-primary;
|
2013-04-01 08:18:07 +08:00
|
|
|
@label-success-bg: @brand-success;
|
|
|
|
@label-info-bg: @brand-info;
|
|
|
|
@label-warning-bg: @brand-warning;
|
|
|
|
@label-danger-bg: @brand-danger;
|
2013-02-18 14:20:49 +08:00
|
|
|
|
2013-07-20 16:38:27 +08:00
|
|
|
@label-color: #fff;
|
|
|
|
@label-link-hover-color: #fff;
|
|
|
|
|
2013-02-18 14:20:49 +08:00
|
|
|
|
2013-02-08 11:31:12 +08:00
|
|
|
// Modals
|
|
|
|
// -------------------------
|
|
|
|
@modal-inner-padding: 20px;
|
|
|
|
|
2013-04-13 11:56:19 +08:00
|
|
|
@modal-title-padding: 15px;
|
|
|
|
@modal-title-line-height: @line-height-base;
|
|
|
|
|
2013-07-24 21:43:21 +08:00
|
|
|
@modal-content-bg: #fff;
|
|
|
|
@modal-content-border-color: rgba(0,0,0,.2);
|
|
|
|
@modal-content-fallback-border-color: #999;
|
|
|
|
|
|
|
|
@modal-backdrop-bg: #000;
|
|
|
|
@modal-header-border-color: #e5e5e5;
|
2013-07-25 07:31:17 +08:00
|
|
|
@modal-footer-border-color: @modal-header-border-color;
|
2013-07-24 21:43:21 +08:00
|
|
|
|
|
|
|
|
2013-04-21 06:47:07 +08:00
|
|
|
// Alerts
|
|
|
|
// -------------------------
|
2013-08-06 06:06:57 +08:00
|
|
|
@alert-padding: 15px;
|
|
|
|
@alert-border-radius: @border-radius-base;
|
2013-08-06 07:03:10 +08:00
|
|
|
@alert-link-font-weight: bold;
|
2013-08-06 06:06:57 +08:00
|
|
|
|
2013-04-21 06:47:07 +08:00
|
|
|
@alert-success-bg: @state-success-bg;
|
|
|
|
@alert-success-text: @state-success-text;
|
|
|
|
@alert-success-border: @state-success-border;
|
|
|
|
|
|
|
|
@alert-info-bg: @state-info-bg;
|
|
|
|
@alert-info-text: @state-info-text;
|
|
|
|
@alert-info-border: @state-info-border;
|
|
|
|
|
2013-08-19 10:50:53 +08:00
|
|
|
@alert-warning-bg: @state-warning-bg;
|
|
|
|
@alert-warning-text: @state-warning-text;
|
|
|
|
@alert-warning-border: @state-warning-border;
|
|
|
|
|
|
|
|
@alert-danger-bg: @state-danger-bg;
|
|
|
|
@alert-danger-text: @state-danger-text;
|
|
|
|
@alert-danger-border: @state-danger-border;
|
|
|
|
|
2013-02-08 11:31:12 +08:00
|
|
|
|
2013-02-02 08:21:38 +08:00
|
|
|
// Progress bars
|
|
|
|
// -------------------------
|
|
|
|
@progress-bg: #f5f5f5;
|
2013-07-27 02:08:27 +08:00
|
|
|
@progress-bar-color: #fff;
|
|
|
|
|
2013-02-02 08:21:38 +08:00
|
|
|
@progress-bar-bg: @brand-primary;
|
|
|
|
@progress-bar-success-bg: @brand-success;
|
|
|
|
@progress-bar-warning-bg: @brand-warning;
|
|
|
|
@progress-bar-danger-bg: @brand-danger;
|
|
|
|
@progress-bar-info-bg: @brand-info;
|
|
|
|
|
|
|
|
|
2013-03-31 07:07:50 +08:00
|
|
|
// List group
|
|
|
|
// -------------------------
|
|
|
|
@list-group-bg: #fff;
|
|
|
|
@list-group-border: #ddd;
|
|
|
|
@list-group-border-radius: @border-radius-base;
|
|
|
|
|
|
|
|
@list-group-hover-bg: #f5f5f5;
|
2013-09-02 05:40:04 +08:00
|
|
|
@list-group-active-color: @component-active-color;
|
2013-04-01 08:17:25 +08:00
|
|
|
@list-group-active-bg: @component-active-bg;
|
2013-03-31 07:07:50 +08:00
|
|
|
@list-group-active-border: @list-group-active-bg;
|
|
|
|
|
2013-07-24 14:48:17 +08:00
|
|
|
@list-group-link-color: #555;
|
|
|
|
@list-group-link-heading-color: #333;
|
|
|
|
|
2013-07-20 16:38:27 +08:00
|
|
|
|
2013-03-31 05:15:18 +08:00
|
|
|
// Panels
|
|
|
|
// -------------------------
|
|
|
|
@panel-bg: #fff;
|
2013-08-19 10:40:57 +08:00
|
|
|
@panel-inner-border: #ddd;
|
2013-03-31 05:15:18 +08:00
|
|
|
@panel-border-radius: @border-radius-base;
|
2013-05-15 09:55:37 +08:00
|
|
|
@panel-footer-bg: #f5f5f5;
|
2013-03-31 05:15:18 +08:00
|
|
|
|
2013-08-19 10:40:57 +08:00
|
|
|
@panel-default-text: @gray-dark;
|
|
|
|
@panel-default-border: #ddd;
|
|
|
|
@panel-default-heading-bg: #f5f5f5;
|
|
|
|
|
2013-04-01 13:22:52 +08:00
|
|
|
@panel-primary-text: #fff;
|
|
|
|
@panel-primary-border: @brand-primary;
|
|
|
|
@panel-primary-heading-bg: @brand-primary;
|
|
|
|
|
2013-03-31 05:15:18 +08:00
|
|
|
@panel-success-text: @state-success-text;
|
|
|
|
@panel-success-border: @state-success-border;
|
2013-04-01 08:24:06 +08:00
|
|
|
@panel-success-heading-bg: @state-success-bg;
|
2013-03-31 05:15:18 +08:00
|
|
|
|
|
|
|
@panel-warning-text: @state-warning-text;
|
|
|
|
@panel-warning-border: @state-warning-border;
|
2013-04-01 08:24:06 +08:00
|
|
|
@panel-warning-heading-bg: @state-warning-bg;
|
2013-03-31 05:15:18 +08:00
|
|
|
|
|
|
|
@panel-danger-text: @state-danger-text;
|
|
|
|
@panel-danger-border: @state-danger-border;
|
2013-04-01 08:24:06 +08:00
|
|
|
@panel-danger-heading-bg: @state-danger-bg;
|
2013-03-31 05:15:18 +08:00
|
|
|
|
|
|
|
@panel-info-text: @state-info-text;
|
|
|
|
@panel-info-border: @state-info-border;
|
2013-04-01 08:24:06 +08:00
|
|
|
@panel-info-heading-bg: @state-info-bg;
|
2013-03-31 05:15:18 +08:00
|
|
|
|
|
|
|
|
2013-04-22 09:29:06 +08:00
|
|
|
// Thumbnails
|
|
|
|
// -------------------------
|
2013-08-12 10:32:16 +08:00
|
|
|
@thumbnail-padding: 4px;
|
2013-04-22 09:29:06 +08:00
|
|
|
@thumbnail-bg: @body-bg;
|
|
|
|
@thumbnail-border: #ddd;
|
|
|
|
@thumbnail-border-radius: @border-radius-base;
|
|
|
|
|
2013-08-12 10:32:16 +08:00
|
|
|
@thumbnail-caption-color: @text-color;
|
|
|
|
@thumbnail-caption-padding: 9px;
|
|
|
|
|
2013-04-22 09:29:06 +08:00
|
|
|
|
2013-03-31 05:15:18 +08:00
|
|
|
// Wells
|
|
|
|
// -------------------------
|
2013-04-01 08:25:52 +08:00
|
|
|
@well-bg: #f5f5f5;
|
2013-03-31 05:15:18 +08:00
|
|
|
|
|
|
|
|
2013-07-20 02:44:35 +08:00
|
|
|
// Badges
|
|
|
|
// -------------------------
|
|
|
|
@badge-color: #fff;
|
|
|
|
@badge-link-hover-color: #fff;
|
2013-07-23 12:05:45 +08:00
|
|
|
@badge-bg: @gray-light;
|
2013-08-06 07:03:10 +08:00
|
|
|
|
2013-07-20 15:03:08 +08:00
|
|
|
@badge-active-color: @link-color;
|
|
|
|
@badge-active-bg: #fff;
|
|
|
|
|
2013-07-28 20:32:08 +08:00
|
|
|
@badge-font-weight: bold;
|
|
|
|
@badge-line-height: 1;
|
|
|
|
@badge-border-radius: 10px;
|
|
|
|
|
2013-07-20 02:44:35 +08:00
|
|
|
|
|
|
|
// Breadcrumbs
|
|
|
|
// -------------------------
|
|
|
|
@breadcrumb-bg: #f5f5f5;
|
|
|
|
@breadcrumb-color: #ccc;
|
|
|
|
@breadcrumb-active-color: @gray-light;
|
2013-08-28 17:17:46 +08:00
|
|
|
@breadcrumb-separator: "/";
|
2013-07-20 02:44:35 +08:00
|
|
|
|
2013-07-24 14:48:17 +08:00
|
|
|
|
2013-07-20 15:56:20 +08:00
|
|
|
// Carousel
|
|
|
|
// ------------------------
|
2013-08-06 07:03:10 +08:00
|
|
|
|
2013-07-24 14:03:57 +08:00
|
|
|
@carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6);
|
|
|
|
|
2013-07-20 15:56:20 +08:00
|
|
|
@carousel-control-color: #fff;
|
2013-07-28 20:32:08 +08:00
|
|
|
@carousel-control-width: 15%;
|
|
|
|
@carousel-control-opacity: .5;
|
|
|
|
@carousel-control-font-size: 20px;
|
2013-07-20 15:56:20 +08:00
|
|
|
|
2013-07-24 14:03:57 +08:00
|
|
|
@carousel-indicator-active-bg: #fff;
|
2013-07-28 20:32:08 +08:00
|
|
|
@carousel-indicator-border-color: #fff;
|
2013-07-20 15:56:20 +08:00
|
|
|
|
|
|
|
@carousel-caption-color: #fff;
|
|
|
|
|
2013-07-20 16:17:56 +08:00
|
|
|
|
2013-07-20 15:56:20 +08:00
|
|
|
// Close
|
|
|
|
// ------------------------
|
2013-07-28 20:32:08 +08:00
|
|
|
@close-font-weight: bold;
|
2013-09-12 12:14:10 +08:00
|
|
|
@close-color: #000;
|
2013-07-24 14:09:06 +08:00
|
|
|
@close-text-shadow: 0 1px 0 #fff;
|
2013-07-20 02:44:35 +08:00
|
|
|
|
2013-07-20 16:17:56 +08:00
|
|
|
|
|
|
|
// Code
|
|
|
|
// ------------------------
|
|
|
|
@code-color: #c7254e;
|
2013-07-24 14:13:15 +08:00
|
|
|
@code-bg: #f9f2f4;
|
2013-07-20 16:17:56 +08:00
|
|
|
|
|
|
|
@pre-bg: #f5f5f5;
|
2013-08-12 08:23:19 +08:00
|
|
|
@pre-color: @gray-dark;
|
2013-07-24 14:13:15 +08:00
|
|
|
@pre-border-color: #ccc;
|
2013-08-12 08:23:19 +08:00
|
|
|
@pre-scrollable-max-height: 340px;
|
2013-07-20 16:17:56 +08:00
|
|
|
|
2013-07-26 20:04:15 +08:00
|
|
|
// Type
|
|
|
|
// ------------------------
|
|
|
|
@text-muted: @gray-light;
|
|
|
|
@abbr-border-color: @gray-light;
|
|
|
|
@headings-small-color: @gray-light;
|
|
|
|
@blockquote-small-color: @gray-light;
|
|
|
|
@blockquote-border-color: @gray-lighter;
|
|
|
|
@page-header-border-color: @gray-lighter;
|
2013-07-20 02:44:35 +08:00
|
|
|
|
2012-12-01 07:27:13 +08:00
|
|
|
// Miscellaneous
|
|
|
|
// -------------------------
|
|
|
|
|
|
|
|
// Hr border color
|
2013-04-22 10:35:36 +08:00
|
|
|
@hr-border: @gray-lighter;
|
2012-12-01 07:27:13 +08:00
|
|
|
|
|
|
|
// Horizontal forms & lists
|
2012-12-27 04:06:21 +08:00
|
|
|
@component-offset-horizontal: 180px;
|
2012-12-01 07:27:13 +08:00
|
|
|
|
|
|
|
|
2013-05-28 04:00:39 +08:00
|
|
|
// Container sizes
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
// Small screen / tablet
|
2013-09-01 17:06:33 +08:00
|
|
|
@container-tablet: ((720px + @grid-gutter-width));
|
|
|
|
@container-sm: @container-tablet;
|
2013-05-28 04:00:39 +08:00
|
|
|
|
|
|
|
// Medium screen / desktop
|
2013-09-01 17:06:33 +08:00
|
|
|
@container-desktop: ((940px + @grid-gutter-width));
|
|
|
|
@container-md: @container-desktop;
|
2013-05-28 04:00:39 +08:00
|
|
|
|
|
|
|
// Large screen / wide desktop
|
2013-09-01 17:06:33 +08:00
|
|
|
@container-large-desktop: ((1140px + @grid-gutter-width));
|
|
|
|
@container-lg: @container-large-desktop;
|