twbs--bootstrap/scss/_variables.scss

772 lines
26 KiB
SCSS
Raw Normal View History

2014-12-02 22:02:35 +00:00
//
// Variables
// --------------------------------------------------
//== Colors
//
//## Gray and brand colors for use across Bootstrap.
$gray-dark: #373a3c !default;
$gray-darker: $gray-dark !default; // TODO: remove
$gray: #55595c !default;
$gray-light: #818a91 !default;
$gray-lighter: #eceeef !default;
$gray-lightest: #f7f7f9 !default;
2014-12-02 22:02:35 +00:00
$brand-primary: #0275d8 !default;
$brand-success: #5cb85c !default;
$brand-info: #5bc0de !default;
$brand-warning: #f0ad4e !default;
$brand-danger: #d9534f !default;
2014-12-02 22:02:35 +00:00
//== Scaffolding
//
//## Settings for some of the most global styles.
//** Background color for `<body>`.
$body-bg: #fff !default;
2014-12-02 22:02:35 +00:00
//** Global text color on `<body>`.
$text-color: $gray-dark !default;
2014-12-02 22:02:35 +00:00
//** Global textual link color.
$link-color: $brand-primary !default;
2014-12-02 22:02:35 +00:00
//** Link hover color set via `darken()` function.
$link-hover-color: darken($link-color, 15%) !default;
2014-12-02 22:02:35 +00:00
//** Link hover decoration.
$link-hover-decoration: underline !default;
2014-12-02 22:02:35 +00:00
//== Global settings
//
//## Quickly modify global styling by enabling or disabling features.
$enable-rounded: true !default;
$enable-shadows: true !default;
$enable-gradients: true !default;
$enable-transitions: true !default;
$spacer: 1rem !default;
$border-width: .075rem !default;
2014-12-02 22:02:35 +00:00
$use-hover-media-query: false !default;
2014-12-02 22:02:35 +00:00
//== Typography
//
//## Font, line-height, and color for body text, headings, and more.
$font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
$font-family-serif: Georgia, "Times New Roman", Times, serif !default;
2014-12-02 22:02:35 +00:00
//** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
$font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace !default;
$font-family-base: $font-family-sans-serif !default;
2014-12-02 22:02:35 +00:00
//** Pixel value used to responsively scale all typography. Applied to the `<html>` element.
$font-size-root: 16px !default;
2014-12-02 22:02:35 +00:00
//** Sets the `<body>` and more to the root pixel value.
$font-size-base: 1rem !default;
$font-size-lg: 1.25rem !default;
$font-size-sm: .85rem !default;
$font-size-xs: .75rem !default;
$font-size-h1: 3rem !default;
$font-size-h2: 2.5rem !default;
$font-size-h3: 2rem !default;
$font-size-h4: 1.5rem !default;
$font-size-h5: 1.25rem !default;
$font-size-h6: 1rem !default;
2014-12-02 22:02:35 +00:00
//** Unit-less `line-height` for use in components like buttons.
$line-height-base: 1.5 !default;
2014-12-02 22:02:35 +00:00
//** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
$line-height-computed: 1 !default;
2014-12-02 22:02:35 +00:00
//** By default, this inherits from the `<body>`.
$headings-font-family: inherit !default;
$headings-font-weight: 500 !default;
$headings-line-height: 1.1 !default;
$headings-color: inherit !default;
2014-12-02 22:02:35 +00:00
//== Components
//
//## 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: .5rem !default;
$padding-base-horizontal: .75rem !default;
2014-12-02 22:02:35 +00:00
$padding-lg-vertical: .75rem !default;
$padding-lg-horizontal: 1.5rem !default;
2014-12-02 22:02:35 +00:00
$padding-sm-vertical: .3rem !default;
$padding-sm-horizontal: .75rem !default;
2014-12-02 22:02:35 +00:00
$padding-xs-vertical: .2rem !default;
$padding-xs-horizontal: .5rem !default;
2014-12-02 22:02:35 +00:00
$line-height-lg: (4/3) !default;
$line-height-sm: 1.5 !default;
2014-12-02 22:02:35 +00:00
$border-radius-base: .25rem !default;
$border-radius-lg: .3rem !default;
$border-radius-sm: .2rem !default;
2014-12-02 22:02:35 +00:00
//** Global color for active items (e.g., navs or dropdowns).
$component-active-color: #fff !default;
2014-12-02 22:02:35 +00:00
//** Global background color for active items (e.g., navs or dropdowns).
$component-active-bg: $brand-primary !default;
2014-12-02 22:02:35 +00:00
//** Width of the `border` for generating carets that indicator dropdowns.
$caret-width-base: .3em !default;
2014-12-02 22:02:35 +00:00
//** Carets increase slightly in size for larger components.
$caret-width-large: $caret-width-base !default;
2014-12-02 22:02:35 +00:00
//== Tables
//
//## Customizes the `.table` component with basic values, each used across all table variations.
//** Padding for `<th>`s and `<td>`s.
$table-cell-padding: .75rem !default;
2014-12-02 22:02:35 +00:00
//** Padding for cells in `.table-sm`.
$table-sm-cell-padding: .3rem !default;
2014-12-02 22:02:35 +00:00
//** Default background color used for all tables.
$table-bg: transparent !default;
2014-12-02 22:02:35 +00:00
//** Background color used for `.table-striped`.
$table-bg-accent: #f9f9f9 !default;
2014-12-02 22:02:35 +00:00
//** Background color used for `.table-hover`.
$table-bg-hover: #f5f5f5 !default;
$table-bg-active: $table-bg-hover !default;
2014-12-02 22:02:35 +00:00
//** Border color for table and cell borders.
$table-border-color: $gray-lighter !default;
2014-12-02 22:02:35 +00:00
//== Buttons
//
//## For each of Bootstrap's buttons, define text, background and border color.
$btn-font-weight: normal !default;
2014-12-02 22:02:35 +00:00
$btn-primary-color: #fff !default;
$btn-primary-bg: $brand-primary !default;
$btn-primary-border: darken($btn-primary-bg, 5%) !default;
2014-12-02 22:02:35 +00:00
$btn-secondary-color: $gray-dark !default;
$btn-secondary-bg: #fff !default;
$btn-secondary-border: $gray-lighter !default;
2014-12-02 22:02:35 +00:00
$btn-info-color: #fff !default;
$btn-info-bg: $brand-info !default;
$btn-info-border: darken($btn-info-bg, 5%) !default;
2014-12-02 22:02:35 +00:00
$btn-success-color: #fff !default;
$btn-success-bg: $brand-success !default;
$btn-success-border: darken($btn-success-bg, 5%) !default;
2014-12-02 22:02:35 +00:00
$btn-warning-color: #fff !default;
$btn-warning-bg: $brand-warning !default;
$btn-warning-border: darken($btn-warning-bg, 5%) !default;
2014-12-02 22:02:35 +00:00
$btn-danger-color: #fff !default;
$btn-danger-bg: $brand-danger !default;
$btn-danger-border: darken($btn-danger-bg, 5%) !default;
2014-12-02 22:02:35 +00:00
$btn-link-disabled-color: $gray-light !default;
2014-12-02 22:02:35 +00:00
//== Forms
//
//##
//** `<input>` background color
$input-bg: #fff !default;
2014-12-02 22:02:35 +00:00
//** `<input disabled>` background color
$input-bg-disabled: $gray-lighter !default;
2014-12-02 22:02:35 +00:00
//** Text color for `<input>`s
$input-color: $gray !default;
2014-12-02 22:02:35 +00:00
//** `<input>` border color
$input-border: #ccc !default;
2014-12-02 22:02:35 +00:00
// TODO: Rename `$input-border-radius` to `$input-border-radius-base` in v4
//** Default `.form-control` border radius
$input-border-radius: $border-radius-base !default;
2014-12-02 22:02:35 +00:00
//** Large `.form-control` border radius
$input-border-radius-lg: $border-radius-lg !default;
2014-12-02 22:02:35 +00:00
//** Small `.form-control` border radius
$input-border-radius-sm: $border-radius-sm !default;
2014-12-02 22:02:35 +00:00
//** Border color for inputs on focus
$input-border-focus: #66afe9 !default;
$input-box-shadow-focus: rgba(102,175,233,.6) !default;
2014-12-02 22:02:35 +00:00
//** Placeholder text color
$input-color-placeholder: #999 !default;
2014-12-02 22:02:35 +00:00
//** Default `.form-control` height
$input-height-base: (($font-size-base * $line-height-base) + ($padding-base-vertical * 2) + ($border-width * 2)) !default;
2014-12-02 22:02:35 +00:00
//** Large `.form-control` height
$input-height-lg: (($font-size-lg * $line-height-lg) + ($padding-lg-vertical * 2) + ($border-width * 2)) !default;
2014-12-02 22:02:35 +00:00
//** Small `.form-control` height
$input-height-sm: (($font-size-sm * $line-height-sm) + ($padding-sm-vertical * 2) + ($border-width * 2)) !default;
2014-12-02 22:02:35 +00:00
2015-03-01 22:11:22 +00:00
$form-group-margin-bottom: 15px;
$legend-color: $gray-dark !default;
$legend-border-color: #e5e5e5 !default;
2014-12-02 22:02:35 +00:00
//** Background color for textual input addons
$input-group-addon-bg: $gray-lighter !default;
2014-12-02 22:02:35 +00:00
//** Border color for textual input addons
$input-group-addon-border-color: $input-border !default;
2014-12-02 22:02:35 +00:00
//** Disabled cursor for form controls and buttons.
$cursor-disabled: not-allowed !default;
2014-12-02 22:02:35 +00:00
//== Dropdowns
//
//## Dropdown menu container and contents.
//** Background for the dropdown menu.
$dropdown-bg: #fff !default;
2014-12-02 22:02:35 +00:00
//** Dropdown menu `border-color`.
$dropdown-border: rgba(0,0,0,.15) !default;
2014-12-02 22:02:35 +00:00
//** Divider color for between dropdown items.
$dropdown-divider-bg: #e5e5e5 !default;
2014-12-02 22:02:35 +00:00
//** Dropdown link text color.
$dropdown-link-color: $gray-dark !default;
2014-12-02 22:02:35 +00:00
//** Hover color for dropdown links.
$dropdown-link-hover-color: darken($gray-dark, 5%) !default;
2014-12-02 22:02:35 +00:00
//** Hover background for dropdown links.
$dropdown-link-hover-bg: #f5f5f5 !default;
2014-12-02 22:02:35 +00:00
//** Active dropdown menu item text color.
$dropdown-link-active-color: $component-active-color !default;
2014-12-02 22:02:35 +00:00
//** Active dropdown menu item background color.
$dropdown-link-active-bg: $component-active-bg !default;
2014-12-02 22:02:35 +00:00
//** Disabled dropdown menu item background color.
$dropdown-link-disabled-color: $gray-light !default;
2014-12-02 22:02:35 +00:00
//** Text color for headers within dropdown menus.
$dropdown-header-color: $gray-light !default;
2014-12-02 22:02:35 +00:00
//-- Z-index master list
//
// Warning: Avoid customizing these values. They're used for a bird's eye view
// of components dependent on the z-axis and are designed to all work together.
//
// Note: These variables are not generated into the Customizer.
$zindex-navbar: 1000 !default;
$zindex-dropdown: 1000 !default;
$zindex-popover: 1060 !default;
$zindex-tooltip: 1070 !default;
$zindex-navbar-fixed: 1030 !default;
$zindex-modal: 1040 !default;
2014-12-02 22:02:35 +00:00
//== Media queries breakpoints
//
//## Define the minimum and maximum dimensions at which your layout will change, adapting to different screen sizes.
//== Grid system
//
//## Define your custom responsive grid.
$grid-breakpoints: (
// Extra small screen / phone
xs: 0,
// Small screen / phone
sm: 34em,
// Medium screen / tablet
md: 48em,
// Large screen / desktop
lg: 62em,
// Extra large screen / wide desktop
xl: 75em
) !default;
2014-12-02 22:02:35 +00:00
//** Number of columns in the grid.
$grid-columns: 12 !default;
2014-12-02 22:02:35 +00:00
//** Padding between columns. Gets divided in half for the left and right.
$grid-gutter-width: 1.5rem !default;
2014-12-02 22:02:35 +00:00
//== Container sizes
//
//## Define the maximum width of `.container` for different screen sizes.
$container-max-widths: (
sm: 34rem, // 480
md: 45rem, // 720
lg: 60rem, // 960
xl: 72.25rem // 1140
) !default;
2014-12-02 22:02:35 +00:00
//== Navbar
//
//##
// Basics of a navbar
// $navbar-height: 50px !default;
$navbar-margin-bottom: $line-height-computed !default;
$navbar-border-radius: $border-radius-base !default;
$navbar-padding-horizontal: $spacer !default;
$navbar-padding-vertical: ($spacer / 2) !default;
$navbar-collapse-max-height: 340px !default;
2014-12-02 22:02:35 +00:00
$navbar-default-color: #777 !default;
$navbar-default-bg: #f8f8f8 !default;
$navbar-default-border: darken($navbar-default-bg, 6.5%) !default;
2014-12-02 22:02:35 +00:00
// Navbar links
$navbar-default-link-color: #777 !default;
$navbar-default-link-hover-color: #333 !default;
$navbar-default-link-hover-bg: transparent !default;
$navbar-default-link-active-color: #555 !default;
$navbar-default-link-active-bg: darken($navbar-default-bg, 6.5%) !default;
$navbar-default-link-disabled-color: #ccc !default;
$navbar-default-link-disabled-bg: transparent !default;
2014-12-02 22:02:35 +00:00
// Navbar brand label
$navbar-default-brand-color: $navbar-default-link-color !default;
$navbar-default-brand-hover-color: darken($navbar-default-brand-color, 10%) !default;
$navbar-default-brand-hover-bg: transparent !default;
2014-12-02 22:02:35 +00:00
// Navbar toggle
$navbar-default-toggle-hover-bg: #ddd !default;
$navbar-default-toggle-icon-bar-bg: #888 !default;
$navbar-default-toggle-border-color: #ddd !default;
2014-12-02 22:02:35 +00:00
// Inverted navbar
// Reset inverted navbar basics
$navbar-inverse-color: lighten($gray-light, 12%) !default;
$navbar-inverse-bg: #373a3c !default;
$navbar-inverse-border: darken($navbar-inverse-bg, 10%) !default;
2014-12-02 22:02:35 +00:00
// Inverted navbar links
$navbar-inverse-link-color: lighten($gray-light, 15%) !default;
$navbar-inverse-link-hover-color: #fff !default;
$navbar-inverse-link-hover-bg: transparent !default;
$navbar-inverse-link-active-color: $navbar-inverse-link-hover-color !default;
$navbar-inverse-link-active-bg: darken($navbar-inverse-bg, 10%) !default;
$navbar-inverse-link-disabled-color: #444 !default;
$navbar-inverse-link-disabled-bg: transparent !default;
2014-12-02 22:02:35 +00:00
// Inverted navbar brand label
$navbar-inverse-brand-color: $navbar-inverse-link-color !default;
$navbar-inverse-brand-hover-color: #fff !default;
$navbar-inverse-brand-hover-bg: transparent !default;
2014-12-02 22:02:35 +00:00
// Inverted navbar toggle
$navbar-inverse-toggle-hover-bg: #333 !default;
$navbar-inverse-toggle-icon-bar-bg: #fff !default;
$navbar-inverse-toggle-border-color: #333 !default;
2014-12-02 22:02:35 +00:00
//== Navs
//
//##
//=== Shared nav styles
$nav-link-padding: .6em 1em !default;
$nav-link-hover-bg: $gray-lighter !default;
2014-12-02 22:02:35 +00:00
$nav-disabled-link-color: $gray-light !default;
$nav-disabled-link-hover-color: $gray-light !default;
2014-12-02 22:02:35 +00:00
//== Tabs
$nav-tabs-border-color: #ddd !default;
2014-12-02 22:02:35 +00:00
$nav-tabs-link-hover-border-color: $gray-lighter !default;
2014-12-02 22:02:35 +00:00
$nav-tabs-active-link-hover-bg: $body-bg !default;
$nav-tabs-active-link-hover-color: $gray !default;
$nav-tabs-active-link-hover-border-color: #ddd !default;
2014-12-02 22:02:35 +00:00
$nav-tabs-justified-link-border-color: #ddd !default;
$nav-tabs-justified-active-link-border-color: $body-bg !default;
2014-12-02 22:02:35 +00:00
//== Pills
$nav-pills-border-radius: $border-radius-base !default;
$nav-pills-active-link-hover-bg: $component-active-bg !default;
$nav-pills-active-link-hover-color: $component-active-color !default;
2014-12-02 22:02:35 +00:00
//== Pagination
//
//##
$pagination-color: $link-color !default;
$pagination-bg: #fff !default;
$pagination-border: #ddd !default;
2014-12-02 22:02:35 +00:00
$pagination-hover-color: $link-hover-color !default;
$pagination-hover-bg: $gray-lighter !default;
$pagination-hover-border: #ddd !default;
2014-12-02 22:02:35 +00:00
$pagination-active-color: #fff !default;
$pagination-active-bg: $brand-primary !default;
$pagination-active-border: $brand-primary !default;
2014-12-02 22:02:35 +00:00
$pagination-disabled-color: $gray-light !default;
$pagination-disabled-bg: #fff !default;
$pagination-disabled-border: #ddd !default;
2014-12-02 22:02:35 +00:00
//== Pager
//
//##
$pager-bg: $pagination-bg !default;
$pager-border: $pagination-border !default;
$pager-border-radius: 15px !default;
2014-12-02 22:02:35 +00:00
$pager-hover-bg: $pagination-hover-bg !default;
2014-12-02 22:02:35 +00:00
$pager-active-bg: $pagination-active-bg !default;
$pager-active-color: $pagination-active-color !default;
2014-12-02 22:02:35 +00:00
$pager-disabled-color: $pagination-disabled-color !default;
2014-12-02 22:02:35 +00:00
//== Jumbotron
//
//##
$jumbotron-padding: 2rem !default;
$jumbotron-color: inherit !default;
$jumbotron-bg: $gray-lighter !default;
$jumbotron-heading-color: inherit !default;
// $jumbotron-font-size: ceil(($font-size-base * 1.5)) !default;
2014-12-02 22:02:35 +00:00
//== Form states and alerts
//
//## Define colors for form feedback states and, by default, alerts.
$state-success-text: #3c763d !default;
$state-success-bg: #dff0d8 !default;
$state-success-border: darken($state-success-bg, 5%) !default;
2014-12-02 22:02:35 +00:00
$state-info-text: #31708f !default;
$state-info-bg: #d9edf7 !default;
$state-info-border: darken($state-info-bg, 7%) !default;
2014-12-02 22:02:35 +00:00
$state-warning-text: #8a6d3b !default;
$state-warning-bg: #fcf8e3 !default;
$state-warning-border: darken($state-warning-bg, 5%) !default;
2014-12-02 22:02:35 +00:00
$state-danger-text: #a94442 !default;
$state-danger-bg: #f2dede !default;
$state-danger-border: darken($state-danger-bg, 5%) !default;
2014-12-02 22:02:35 +00:00
//== Tooltips
//
//##
//** Tooltip max width
$tooltip-max-width: 200px !default;
2014-12-02 22:02:35 +00:00
//** Tooltip text color
$tooltip-color: #fff !default;
2014-12-02 22:02:35 +00:00
//** Tooltip background color
$tooltip-bg: #000 !default;
$tooltip-opacity: .9 !default;
2014-12-02 22:02:35 +00:00
//** Tooltip arrow width
$tooltip-arrow-width: 5px !default;
2014-12-02 22:02:35 +00:00
//** Tooltip arrow color
$tooltip-arrow-color: $tooltip-bg !default;
2014-12-02 22:02:35 +00:00
//== Popovers
//
//##
//** Popover body background color
$popover-bg: #fff !default;
2014-12-02 22:02:35 +00:00
//** Popover maximum width
$popover-max-width: 276px !default;
2014-12-02 22:02:35 +00:00
//** Popover border color
$popover-border-color: rgba(0,0,0,.2) !default;
2014-12-02 22:02:35 +00:00
//** Popover fallback border color
$popover-fallback-border-color: #ccc !default;
2014-12-02 22:02:35 +00:00
//** Popover title background color
$popover-title-bg: darken($popover-bg, 3%) !default;
2014-12-02 22:02:35 +00:00
//** Popover arrow width
$popover-arrow-width: 10px !default;
2014-12-02 22:02:35 +00:00
//** Popover arrow color
$popover-arrow-color: $popover-bg !default;
2014-12-02 22:02:35 +00:00
//** Popover outer arrow width
$popover-arrow-outer-width: ($popover-arrow-width + 1) !default;
2014-12-02 22:02:35 +00:00
//** Popover outer arrow color
2014-12-20 16:37:43 +00:00
$popover-arrow-outer-color: fade-in($popover-border-color, 0.05) !default;
2014-12-02 22:02:35 +00:00
//** Popover outer arrow fallback color
$popover-arrow-outer-fallback-color: darken($popover-fallback-border-color, 20%) !default;
2014-12-02 22:02:35 +00:00
//== Labels
//
//##
//** Default label background color
$label-default-bg: $gray-light !default;
2014-12-02 22:02:35 +00:00
//** Primary label background color
$label-primary-bg: $brand-primary !default;
2014-12-02 22:02:35 +00:00
//** Success label background color
$label-success-bg: $brand-success !default;
2014-12-02 22:02:35 +00:00
//** Info label background color
$label-info-bg: $brand-info !default;
2014-12-02 22:02:35 +00:00
//** Warning label background color
$label-warning-bg: $brand-warning !default;
2014-12-02 22:02:35 +00:00
//** Danger label background color
$label-danger-bg: $brand-danger !default;
2014-12-02 22:02:35 +00:00
//** Default label text color
$label-color: #fff !default;
2014-12-02 22:02:35 +00:00
//** Default text color of a linked label
$label-link-hover-color: #fff !default;
2014-12-02 22:02:35 +00:00
//== Modals
//
//##
//** Padding applied to the modal body
$modal-inner-padding: 15px !default;
2014-12-02 22:02:35 +00:00
//** Padding applied to the modal title
$modal-title-padding: 15px !default;
2014-12-02 22:02:35 +00:00
//** Modal title line-height
$modal-title-line-height: $line-height-base !default;
2014-12-02 22:02:35 +00:00
//** Background color of modal content area
$modal-content-bg: #fff !default;
2014-12-02 22:02:35 +00:00
//** Modal content border color
$modal-content-border-color: rgba(0,0,0,.2) !default;
2014-12-02 22:02:35 +00:00
//** Modal backdrop background color
$modal-backdrop-bg: #000 !default;
2014-12-02 22:02:35 +00:00
//** Modal backdrop opacity
$modal-backdrop-opacity: .5 !default;
2014-12-02 22:02:35 +00:00
//** Modal header border color
$modal-header-border-color: #e5e5e5 !default;
2014-12-02 22:02:35 +00:00
//** Modal footer border color
$modal-footer-border-color: $modal-header-border-color !default;
2014-12-02 22:02:35 +00:00
$modal-lg: 900px !default;
$modal-md: 600px !default;
$modal-sm: 300px !default;
2014-12-02 22:02:35 +00:00
//== Alerts
//
//## Define alert colors, border radius, and padding.
$alert-padding: 15px !default;
$alert-border-radius: $border-radius-base !default;
$alert-link-font-weight: bold !default;
2014-12-02 22:02:35 +00:00
$alert-success-bg: $state-success-bg !default;
$alert-success-text: $state-success-text !default;
$alert-success-border: $state-success-border !default;
2014-12-02 22:02:35 +00:00
$alert-info-bg: $state-info-bg !default;
$alert-info-text: $state-info-text !default;
$alert-info-border: $state-info-border !default;
2014-12-02 22:02:35 +00:00
$alert-warning-bg: $state-warning-bg !default;
$alert-warning-text: $state-warning-text !default;
$alert-warning-border: $state-warning-border !default;
2014-12-02 22:02:35 +00:00
$alert-danger-bg: $state-danger-bg !default;
$alert-danger-text: $state-danger-text !default;
$alert-danger-border: $state-danger-border !default;
2014-12-02 22:02:35 +00:00
//== Progress bars
//
//##
//** Background color of the whole progress component
$progress-bg: #f5f5f5 !default;
2014-12-02 22:02:35 +00:00
//** Progress bar text color
$progress-bar-color: #fff !default;
2014-12-02 22:02:35 +00:00
//** Variable for setting rounded corners on progress bar.
$progress-border-radius: $border-radius-base !default;
2014-12-02 22:02:35 +00:00
//** Default progress bar color
$progress-bar-bg: $brand-primary !default;
2014-12-02 22:02:35 +00:00
//** Success progress bar color
$progress-bar-success-bg: $brand-success !default;
2014-12-02 22:02:35 +00:00
//** Warning progress bar color
$progress-bar-warning-bg: $brand-warning !default;
2014-12-02 22:02:35 +00:00
//** Danger progress bar color
$progress-bar-danger-bg: $brand-danger !default;
2014-12-02 22:02:35 +00:00
//** Info progress bar color
$progress-bar-info-bg: $brand-info !default;
2014-12-02 22:02:35 +00:00
//== List group
//
//##
//** Background color on `.list-group-item`
$list-group-bg: #fff !default;
2014-12-02 22:02:35 +00:00
//** `.list-group-item` border color
$list-group-border: #ddd !default;
2014-12-02 22:02:35 +00:00
//** List group border radius
$list-group-border-radius: $border-radius-base !default;
2014-12-02 22:02:35 +00:00
//** Background color of single list items on hover
$list-group-hover-bg: #f5f5f5 !default;
2014-12-02 22:02:35 +00:00
//** Text color of active list items
$list-group-active-color: $component-active-color !default;
2014-12-02 22:02:35 +00:00
//** Background color of active list items
$list-group-active-bg: $component-active-bg !default;
2014-12-02 22:02:35 +00:00
//** Border color of active list elements
$list-group-active-border: $list-group-active-bg !default;
2014-12-02 22:02:35 +00:00
//** Text color for content within active list items
$list-group-active-text-color: lighten($list-group-active-bg, 40%) !default;
2014-12-02 22:02:35 +00:00
//** Text color of disabled list items
$list-group-disabled-color: $gray-light !default;
2014-12-02 22:02:35 +00:00
//** Background color of disabled list items
$list-group-disabled-bg: $gray-lighter !default;
2014-12-02 22:02:35 +00:00
//** Text color for content within disabled list items
$list-group-disabled-text-color: $list-group-disabled-color !default;
2014-12-02 22:02:35 +00:00
$list-group-link-color: #555 !default;
$list-group-link-hover-color: $list-group-link-color !default;
$list-group-link-heading-color: #333 !default;
2014-12-02 22:02:35 +00:00
//== Thumbnails
//
//##
//** Padding around the thumbnail image
$thumbnail-padding: .25rem !default;
2014-12-02 22:02:35 +00:00
//** Thumbnail background color
$thumbnail-bg: $body-bg !default;
2014-12-02 22:02:35 +00:00
//** Thumbnail border color
$thumbnail-border: #ddd !default;
2014-12-02 22:02:35 +00:00
//** Thumbnail border radius
$thumbnail-border-radius: $border-radius-base !default;
2014-12-02 22:02:35 +00:00
//== Badges
//
//##
$badge-color: #fff !default;
2014-12-02 22:02:35 +00:00
//** Linked badge text color on hover
$badge-link-hover-color: #fff !default;
$badge-bg: $gray-light !default;
2014-12-02 22:02:35 +00:00
//** Badge text color in active nav link
$badge-active-color: $link-color !default;
2014-12-02 22:02:35 +00:00
//** Badge background color in active nav link
$badge-active-bg: #fff !default;
2014-12-02 22:02:35 +00:00
$badge-font-weight: bold !default;
$badge-line-height: 1 !default;
$badge-border-radius: 2em !default;
2014-12-02 22:02:35 +00:00
//== Breadcrumbs
//
//##
$breadcrumb-padding-vertical: .75rem !default;
$breadcrumb-padding-horizontal: 1rem !default;
2014-12-02 22:02:35 +00:00
//** Breadcrumb background color
$breadcrumb-bg: $gray-lighter !default;
2014-12-02 22:02:35 +00:00
//** Text color for the generated divider between breadcrumb items
$breadcrumb-divider-color: $gray-light !default;
2014-12-02 22:02:35 +00:00
//** Text color of current page in the breadcrumb
$breadcrumb-active-color: $gray-light !default;
2014-12-02 22:02:35 +00:00
//** Textual divider for between breadcrumb elements
$breadcrumb-divider: "/" !default;
2014-12-02 22:02:35 +00:00
//== Carousel
//
//##
$carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6) !default;
2014-12-02 22:02:35 +00:00
$carousel-control-color: #fff !default;
$carousel-control-width: 15% !default;
$carousel-control-opacity: .5 !default;
$carousel-control-font-size: 20px !default;
2014-12-02 22:02:35 +00:00
$carousel-indicator-active-bg: #fff !default;
$carousel-indicator-border-color: #fff !default;
2014-12-02 22:02:35 +00:00
$carousel-caption-color: #fff !default;
2014-12-02 22:02:35 +00:00
//== Close
//
//##
$close-font-weight: bold !default;
$close-color: #000 !default;
$close-text-shadow: 0 1px 0 #fff !default;
2014-12-02 22:02:35 +00:00
//== Code
//
//##
$code-color: #d44950 !default;
$code-bg: #f7f7f9 !default;
2014-12-02 22:02:35 +00:00
$kbd-color: #fff !default;
$kbd-bg: #333 !default;
2014-12-02 22:02:35 +00:00
$pre-bg: #f7f7f9 !default;
$pre-color: $gray-dark !default;
$pre-border-color: #ccc !default;
$pre-scrollable-max-height: 340px !default;
2014-12-02 22:02:35 +00:00
//== Type
//
//##
//** Horizontal offset for forms and lists.
$component-offset-horizontal: 180px !default;
2014-12-02 22:02:35 +00:00
//** Text muted color
$text-muted: $gray-light !default;
2014-12-02 22:02:35 +00:00
//** Abbreviations and acronyms border color
$abbr-border-color: $gray-light !default;
2014-12-02 22:02:35 +00:00
//** Headings small color
$headings-small-color: $gray-light !default;
2014-12-02 22:02:35 +00:00
//** Blockquote small color
$blockquote-small-color: $gray-light !default;
2014-12-02 22:02:35 +00:00
//** Blockquote font size
$blockquote-font-size: ($font-size-base * 1.25) !default;
2014-12-02 22:02:35 +00:00
//** Blockquote border color
$blockquote-border-color: $gray-lighter !default;
2014-12-02 22:02:35 +00:00
//** Page header border color
$page-header-border-color: $gray-lighter !default;
2014-12-02 22:02:35 +00:00
//** Width of horizontal description list titles
$dl-horizontal-offset: $component-offset-horizontal !default;
2014-12-02 22:02:35 +00:00
//** Horizontal line color.
$hr-border: $gray-lighter !default;