bootswatch-rails 3.2.0 → 3.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/HISTORY.md +5 -0
- data/README.md +2 -0
- data/Rakefile +2 -1
- data/lib/bootswatch-rails/version.rb +1 -1
- data/rearranges +4 -4
- data/vendor/assets/stylesheets/bootswatch/amelia/_variables.scss +3 -3
- data/vendor/assets/stylesheets/bootswatch/cerulean/_variables.scss +30 -31
- data/vendor/assets/stylesheets/bootswatch/cosmo/_bootswatch.scss +32 -16
- data/vendor/assets/stylesheets/bootswatch/cosmo/_variables.scss +36 -37
- data/vendor/assets/stylesheets/bootswatch/custom/_variables.scss +116 -116
- data/vendor/assets/stylesheets/bootswatch/cyborg/_bootswatch.scss +2 -7
- data/vendor/assets/stylesheets/bootswatch/cyborg/_variables.scss +47 -48
- data/vendor/assets/stylesheets/bootswatch/darkly/_bootswatch.scss +14 -10
- data/vendor/assets/stylesheets/bootswatch/darkly/_variables.scss +45 -46
- data/vendor/assets/stylesheets/bootswatch/flatly/_bootswatch.scss +27 -17
- data/vendor/assets/stylesheets/bootswatch/flatly/_variables.scss +45 -48
- data/vendor/assets/stylesheets/bootswatch/journal/_bootswatch.scss +1 -1
- data/vendor/assets/stylesheets/bootswatch/journal/_variables.scss +30 -32
- data/vendor/assets/stylesheets/bootswatch/lumen/_bootswatch.scss +34 -24
- data/vendor/assets/stylesheets/bootswatch/lumen/_variables.scss +135 -138
- data/vendor/assets/stylesheets/bootswatch/paper/_bootswatch.scss +420 -0
- data/vendor/assets/stylesheets/bootswatch/paper/_variables.scss +845 -0
- data/vendor/assets/stylesheets/bootswatch/readable/_bootswatch.scss +34 -23
- data/vendor/assets/stylesheets/bootswatch/readable/_variables.scss +45 -47
- data/vendor/assets/stylesheets/bootswatch/sandstone/_bootswatch.scss +200 -0
- data/vendor/assets/stylesheets/bootswatch/sandstone/_variables.scss +844 -0
- data/vendor/assets/stylesheets/bootswatch/simplex/_bootswatch.scss +6 -0
- data/vendor/assets/stylesheets/bootswatch/simplex/_variables.scss +49 -51
- data/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss +13 -14
- data/vendor/assets/stylesheets/bootswatch/slate/_variables.scss +43 -46
- data/vendor/assets/stylesheets/bootswatch/spacelab/_bootswatch.scss +3 -0
- data/vendor/assets/stylesheets/bootswatch/spacelab/_variables.scss +37 -39
- data/vendor/assets/stylesheets/bootswatch/superhero/_bootswatch.scss +4 -4
- data/vendor/assets/stylesheets/bootswatch/superhero/_variables.scss +139 -143
- data/vendor/assets/stylesheets/bootswatch/united/_variables.scss +30 -31
- data/vendor/assets/stylesheets/bootswatch/yeti/_bootswatch.scss +36 -35
- data/vendor/assets/stylesheets/bootswatch/yeti/_variables.scss +28 -26
- metadata +6 -2
| @@ -0,0 +1,845 @@ | |
| 1 | 
            +
            // Paper 3.2.0
         | 
| 2 | 
            +
            // Variables
         | 
| 3 | 
            +
            // --------------------------------------------------
         | 
| 4 | 
            +
             | 
| 5 | 
            +
             | 
| 6 | 
            +
            //== Colors
         | 
| 7 | 
            +
            //
         | 
| 8 | 
            +
            //## Gray and brand colors for use across Bootstrap.
         | 
| 9 | 
            +
             | 
| 10 | 
            +
            $gray:                   #666 !default;
         | 
| 11 | 
            +
            $gray-darker:            lighten(#000, 13.5%) !default; // #222
         | 
| 12 | 
            +
            $gray-dark:              #212121 !default;
         | 
| 13 | 
            +
            $gray-light:             #bbb !default;
         | 
| 14 | 
            +
            $gray-lighter:           lighten(#000, 93.5%) !default; // #eee
         | 
| 15 | 
            +
             | 
| 16 | 
            +
            $brand-primary:         #2196F3 !default;
         | 
| 17 | 
            +
            $brand-success:         #4CAF50 !default;
         | 
| 18 | 
            +
            $brand-info:            #9C27B0 !default;
         | 
| 19 | 
            +
            $brand-warning:         #ff9800 !default;
         | 
| 20 | 
            +
            $brand-danger:          #e51c23 !default;
         | 
| 21 | 
            +
             | 
| 22 | 
            +
             | 
| 23 | 
            +
            //== Scaffolding
         | 
| 24 | 
            +
            //
         | 
| 25 | 
            +
            //## Settings for some of the most global styles.
         | 
| 26 | 
            +
             | 
| 27 | 
            +
            //** Background color for `<body>`.
         | 
| 28 | 
            +
            $body-bg:               #fff !default;
         | 
| 29 | 
            +
            //** Global text color on `<body>`.
         | 
| 30 | 
            +
            $text-color:            $gray !default;
         | 
| 31 | 
            +
             | 
| 32 | 
            +
            //** Global textual link color.
         | 
| 33 | 
            +
            $link-color:            $brand-primary !default;
         | 
| 34 | 
            +
            //** Link hover color set via `darken()` function.
         | 
| 35 | 
            +
            $link-hover-color:      darken($link-color, 15%) !default;
         | 
| 36 | 
            +
             | 
| 37 | 
            +
             | 
| 38 | 
            +
            //== Typography
         | 
| 39 | 
            +
            //
         | 
| 40 | 
            +
            //## Font, line-height, and color for body text, headings, and more.
         | 
| 41 | 
            +
             | 
| 42 | 
            +
            $font-family-sans-serif:  "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif !default;
         | 
| 43 | 
            +
            $font-family-serif:       Georgia, "Times New Roman", Times, serif !default;
         | 
| 44 | 
            +
            //** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
         | 
| 45 | 
            +
            $font-family-monospace:   Menlo, Monaco, Consolas, "Courier New", monospace !default;
         | 
| 46 | 
            +
            $font-family-base:        $font-family-sans-serif !default;
         | 
| 47 | 
            +
             | 
| 48 | 
            +
            $font-size-base:          13px !default;
         | 
| 49 | 
            +
            $font-size-large:         ceil(($font-size-base * 1.25)) !default; // ~18px
         | 
| 50 | 
            +
            $font-size-small:         ceil(($font-size-base * 0.85)) !default; // ~12px
         | 
| 51 | 
            +
             | 
| 52 | 
            +
            $font-size-h1:            56px !default;
         | 
| 53 | 
            +
            $font-size-h2:            45px !default;
         | 
| 54 | 
            +
            $font-size-h3:            34px !default;
         | 
| 55 | 
            +
            $font-size-h4:            24px !default;
         | 
| 56 | 
            +
            $font-size-h5:            20px !default;
         | 
| 57 | 
            +
            $font-size-h6:            14px !default;
         | 
| 58 | 
            +
             | 
| 59 | 
            +
            //** Unit-less `line-height` for use in components like buttons.
         | 
| 60 | 
            +
            $line-height-base:        1.846 !default; // 20/14
         | 
| 61 | 
            +
            //** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
         | 
| 62 | 
            +
            $line-height-computed:    floor(($font-size-base * $line-height-base)) !default; // ~20px
         | 
| 63 | 
            +
             | 
| 64 | 
            +
            //** By default, this inherits from the `<body>`.
         | 
| 65 | 
            +
            $headings-font-family:    inherit !default;
         | 
| 66 | 
            +
            $headings-font-weight:    400 !default;
         | 
| 67 | 
            +
            $headings-line-height:    1.1 !default;
         | 
| 68 | 
            +
            $headings-color:          #444 !default;
         | 
| 69 | 
            +
             | 
| 70 | 
            +
             | 
| 71 | 
            +
            //== Iconography
         | 
| 72 | 
            +
            //
         | 
| 73 | 
            +
            //## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
         | 
| 74 | 
            +
             | 
| 75 | 
            +
            //** Load fonts from this directory.
         | 
| 76 | 
            +
            //** File name for all font files.
         | 
| 77 | 
            +
            $icon-font-name:          "glyphicons-halflings-regular" !default;
         | 
| 78 | 
            +
            //** Element ID within SVG icon file.
         | 
| 79 | 
            +
            $icon-font-svg-id:        "glyphicons_halflingsregular" !default;
         | 
| 80 | 
            +
             | 
| 81 | 
            +
             | 
| 82 | 
            +
            //== Components
         | 
| 83 | 
            +
            //
         | 
| 84 | 
            +
            //## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
         | 
| 85 | 
            +
             | 
| 86 | 
            +
            $padding-base-vertical:     6px !default;
         | 
| 87 | 
            +
            $padding-base-horizontal:   16px !default;
         | 
| 88 | 
            +
             | 
| 89 | 
            +
            $padding-large-vertical:    10px !default;
         | 
| 90 | 
            +
            $padding-large-horizontal:  16px !default;
         | 
| 91 | 
            +
             | 
| 92 | 
            +
            $padding-small-vertical:    5px !default;
         | 
| 93 | 
            +
            $padding-small-horizontal:  10px !default;
         | 
| 94 | 
            +
             | 
| 95 | 
            +
            $padding-xs-vertical:       1px !default;
         | 
| 96 | 
            +
            $padding-xs-horizontal:     5px !default;
         | 
| 97 | 
            +
             | 
| 98 | 
            +
            $line-height-large:         1.33 !default;
         | 
| 99 | 
            +
            $line-height-small:         1.5 !default;
         | 
| 100 | 
            +
             | 
| 101 | 
            +
            $border-radius-base:        3px !default;
         | 
| 102 | 
            +
            $border-radius-large:       3px !default;
         | 
| 103 | 
            +
            $border-radius-small:       3px !default;
         | 
| 104 | 
            +
             | 
| 105 | 
            +
            //** Global color for active items (e.g., navs or dropdowns).
         | 
| 106 | 
            +
            $component-active-color:    #fff !default;
         | 
| 107 | 
            +
            //** Global background color for active items (e.g., navs or dropdowns).
         | 
| 108 | 
            +
            $component-active-bg:       $brand-primary !default;
         | 
| 109 | 
            +
             | 
| 110 | 
            +
            //** Width of the `border` for generating carets that indicator dropdowns.
         | 
| 111 | 
            +
            $caret-width-base:          4px !default;
         | 
| 112 | 
            +
            //** Carets increase slightly in size for larger components.
         | 
| 113 | 
            +
            $caret-width-large:         5px !default;
         | 
| 114 | 
            +
             | 
| 115 | 
            +
             | 
| 116 | 
            +
            //== Tables
         | 
| 117 | 
            +
            //
         | 
| 118 | 
            +
            //## Customizes the `.table` component with basic values, each used across all table variations.
         | 
| 119 | 
            +
             | 
| 120 | 
            +
            //** Padding for `<th>`s and `<td>`s.
         | 
| 121 | 
            +
            $table-cell-padding:            8px !default;
         | 
| 122 | 
            +
            //** Padding for cells in `.table-condensed`.
         | 
| 123 | 
            +
            $table-condensed-cell-padding:  5px !default;
         | 
| 124 | 
            +
             | 
| 125 | 
            +
            //** Default background color used for all tables.
         | 
| 126 | 
            +
            $table-bg:                      hsla(0, 100%, 100%, 0) !default;
         | 
| 127 | 
            +
            //** Background color used for `.table-striped`.
         | 
| 128 | 
            +
            $table-bg-accent:               #f9f9f9 !default;
         | 
| 129 | 
            +
            //** Background color used for `.table-hover`.
         | 
| 130 | 
            +
            $table-bg-hover:                #f5f5f5 !default;
         | 
| 131 | 
            +
            $table-bg-active:               $table-bg-hover !default;
         | 
| 132 | 
            +
             | 
| 133 | 
            +
            //** Border color for table and cell borders.
         | 
| 134 | 
            +
            $table-border-color:            #ddd !default;
         | 
| 135 | 
            +
             | 
| 136 | 
            +
             | 
| 137 | 
            +
            //== Buttons
         | 
| 138 | 
            +
            //
         | 
| 139 | 
            +
            //## For each of Bootstrap's buttons, define text, background and border color.
         | 
| 140 | 
            +
             | 
| 141 | 
            +
            $btn-font-weight:                normal !default;
         | 
| 142 | 
            +
             | 
| 143 | 
            +
            $btn-default-color:              $text-color !default;
         | 
| 144 | 
            +
            $btn-default-bg:                 #fff !default;
         | 
| 145 | 
            +
            $btn-default-border:             #eee !default;
         | 
| 146 | 
            +
             | 
| 147 | 
            +
            $btn-primary-color:              #fff !default;
         | 
| 148 | 
            +
            $btn-primary-bg:                 $brand-primary !default;
         | 
| 149 | 
            +
            $btn-primary-border:             hsla(0, 100%, 100%, 0) !default;
         | 
| 150 | 
            +
             | 
| 151 | 
            +
            $btn-success-color:              #fff !default;
         | 
| 152 | 
            +
            $btn-success-bg:                 $brand-success !default;
         | 
| 153 | 
            +
            $btn-success-border:             hsla(0, 100%, 100%, 0) !default;
         | 
| 154 | 
            +
             | 
| 155 | 
            +
            $btn-info-color:                 #fff !default;
         | 
| 156 | 
            +
            $btn-info-bg:                    $brand-info !default;
         | 
| 157 | 
            +
            $btn-info-border:                hsla(0, 100%, 100%, 0) !default;
         | 
| 158 | 
            +
             | 
| 159 | 
            +
            $btn-warning-color:              #fff !default;
         | 
| 160 | 
            +
            $btn-warning-bg:                 $brand-warning !default;
         | 
| 161 | 
            +
            $btn-warning-border:             hsla(0, 100%, 100%, 0) !default;
         | 
| 162 | 
            +
             | 
| 163 | 
            +
            $btn-danger-color:               #fff !default;
         | 
| 164 | 
            +
            $btn-danger-bg:                  $brand-danger !default;
         | 
| 165 | 
            +
            $btn-danger-border:              hsla(0, 100%, 100%, 0) !default;
         | 
| 166 | 
            +
             | 
| 167 | 
            +
            $btn-link-disabled-color:        $gray-light !default;
         | 
| 168 | 
            +
             | 
| 169 | 
            +
             | 
| 170 | 
            +
            //== Forms
         | 
| 171 | 
            +
            //
         | 
| 172 | 
            +
            //##
         | 
| 173 | 
            +
             | 
| 174 | 
            +
            //** `<input>` background color
         | 
| 175 | 
            +
            $input-bg:                       hsla(0, 100%, 100%, 0) !default;
         | 
| 176 | 
            +
            //** `<input disabled>` background color
         | 
| 177 | 
            +
            $input-bg-disabled:              hsla(0, 100%, 100%, 0) !default;
         | 
| 178 | 
            +
             | 
| 179 | 
            +
            //** Text color for `<input>`s
         | 
| 180 | 
            +
            $input-color:                    $gray !default;
         | 
| 181 | 
            +
            //** `<input>` border color
         | 
| 182 | 
            +
            $input-border:                   hsla(0, 100%, 100%, 0) !default;
         | 
| 183 | 
            +
            //** `<input>` border radius
         | 
| 184 | 
            +
            $input-border-radius:            $border-radius-base !default;
         | 
| 185 | 
            +
            //** Border color for inputs on focus
         | 
| 186 | 
            +
            $input-border-focus:             #66afe9 !default;
         | 
| 187 | 
            +
             | 
| 188 | 
            +
            //** Placeholder text color
         | 
| 189 | 
            +
            $input-color-placeholder:        $gray-light !default;
         | 
| 190 | 
            +
             | 
| 191 | 
            +
            //** Default `.form-control` height
         | 
| 192 | 
            +
            $input-height-base:              ($line-height-computed + ($padding-base-vertical * 2) + 2) !default;
         | 
| 193 | 
            +
            //** Large `.form-control` height
         | 
| 194 | 
            +
            $input-height-large:             (ceil($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 2) !default;
         | 
| 195 | 
            +
            //** Small `.form-control` height
         | 
| 196 | 
            +
            $input-height-small:             (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default;
         | 
| 197 | 
            +
             | 
| 198 | 
            +
            $legend-color:                   $gray-dark !default;
         | 
| 199 | 
            +
            $legend-border-color:            #e5e5e5 !default;
         | 
| 200 | 
            +
             | 
| 201 | 
            +
            //** Background color for textual input addons
         | 
| 202 | 
            +
            $input-group-addon-bg:           hsla(0, 100%, 100%, 0) !default;
         | 
| 203 | 
            +
            //** Border color for textual input addons
         | 
| 204 | 
            +
            $input-group-addon-border-color: $input-border !default;
         | 
| 205 | 
            +
             | 
| 206 | 
            +
             | 
| 207 | 
            +
            //== Dropdowns
         | 
| 208 | 
            +
            //
         | 
| 209 | 
            +
            //## Dropdown menu container and contents.
         | 
| 210 | 
            +
             | 
| 211 | 
            +
            //** Background for the dropdown menu.
         | 
| 212 | 
            +
            $dropdown-bg:                    #fff !default;
         | 
| 213 | 
            +
            //** Dropdown menu `border-color`.
         | 
| 214 | 
            +
            $dropdown-border:                rgba(0,0,0,.15) !default;
         | 
| 215 | 
            +
            //** Dropdown menu `border-color` **for IE8**.
         | 
| 216 | 
            +
            $dropdown-fallback-border:       #ccc !default;
         | 
| 217 | 
            +
            //** Divider color for between dropdown items.
         | 
| 218 | 
            +
            $dropdown-divider-bg:            #e5e5e5 !default;
         | 
| 219 | 
            +
             | 
| 220 | 
            +
            //** Dropdown link text color.
         | 
| 221 | 
            +
            $dropdown-link-color:            $text-color !default;
         | 
| 222 | 
            +
            //** Hover color for dropdown links.
         | 
| 223 | 
            +
            $dropdown-link-hover-color:      darken($gray-dark, 5%) !default;
         | 
| 224 | 
            +
            //** Hover background for dropdown links.
         | 
| 225 | 
            +
            $dropdown-link-hover-bg:         $gray-lighter !default;
         | 
| 226 | 
            +
             | 
| 227 | 
            +
            //** Active dropdown menu item text color.
         | 
| 228 | 
            +
            $dropdown-link-active-color:     $component-active-color !default;
         | 
| 229 | 
            +
            //** Active dropdown menu item background color.
         | 
| 230 | 
            +
            $dropdown-link-active-bg:        $component-active-bg !default;
         | 
| 231 | 
            +
             | 
| 232 | 
            +
            //** Disabled dropdown menu item background color.
         | 
| 233 | 
            +
            $dropdown-link-disabled-color:   $gray-light !default;
         | 
| 234 | 
            +
             | 
| 235 | 
            +
            //** Text color for headers within dropdown menus.
         | 
| 236 | 
            +
            $dropdown-header-color:          $gray-light !default;
         | 
| 237 | 
            +
             | 
| 238 | 
            +
            //** Deprecated `@dropdown-caret-color` as of v3.1.0
         | 
| 239 | 
            +
            $dropdown-caret-color:           $gray-light !default;
         | 
| 240 | 
            +
             | 
| 241 | 
            +
             | 
| 242 | 
            +
            //-- Z-index master list
         | 
| 243 | 
            +
            //
         | 
| 244 | 
            +
            // Warning: Avoid customizing these values. They're used for a bird's eye view
         | 
| 245 | 
            +
            // of components dependent on the z-axis and are designed to all work together.
         | 
| 246 | 
            +
            //
         | 
| 247 | 
            +
            // Note: These variables are not generated into the Customizer.
         | 
| 248 | 
            +
             | 
| 249 | 
            +
            $zindex-navbar:            1000 !default;
         | 
| 250 | 
            +
            $zindex-dropdown:          1000 !default;
         | 
| 251 | 
            +
            $zindex-popover:           1060 !default;
         | 
| 252 | 
            +
            $zindex-tooltip:           1070 !default;
         | 
| 253 | 
            +
            $zindex-navbar-fixed:      1030 !default;
         | 
| 254 | 
            +
            $zindex-modal-background:  1040 !default;
         | 
| 255 | 
            +
            $zindex-modal:             1050 !default;
         | 
| 256 | 
            +
             | 
| 257 | 
            +
             | 
| 258 | 
            +
            //== Media queries breakpoints
         | 
| 259 | 
            +
            //
         | 
| 260 | 
            +
            //## Define the breakpoints at which your layout will change, adapting to different screen sizes.
         | 
| 261 | 
            +
             | 
| 262 | 
            +
            // Extra small screen / phone
         | 
| 263 | 
            +
            //** Deprecated `@screen-xs` as of v3.0.1
         | 
| 264 | 
            +
            $screen-xs:                  480px !default;
         | 
| 265 | 
            +
            //** Deprecated `@screen-xs-min` as of v3.2.0
         | 
| 266 | 
            +
            $screen-xs-min:              $screen-xs !default;
         | 
| 267 | 
            +
            //** Deprecated `@screen-phone` as of v3.0.1
         | 
| 268 | 
            +
            $screen-phone:               $screen-xs-min !default;
         | 
| 269 | 
            +
             | 
| 270 | 
            +
            // Small screen / tablet
         | 
| 271 | 
            +
            //** Deprecated `@screen-sm` as of v3.0.1
         | 
| 272 | 
            +
            $screen-sm:                  768px !default;
         | 
| 273 | 
            +
            $screen-sm-min:              $screen-sm !default;
         | 
| 274 | 
            +
            //** Deprecated `@screen-tablet` as of v3.0.1
         | 
| 275 | 
            +
            $screen-tablet:              $screen-sm-min !default;
         | 
| 276 | 
            +
             | 
| 277 | 
            +
            // Medium screen / desktop
         | 
| 278 | 
            +
            //** Deprecated `@screen-md` as of v3.0.1
         | 
| 279 | 
            +
            $screen-md:                  992px !default;
         | 
| 280 | 
            +
            $screen-md-min:              $screen-md !default;
         | 
| 281 | 
            +
            //** Deprecated `@screen-desktop` as of v3.0.1
         | 
| 282 | 
            +
            $screen-desktop:             $screen-md-min !default;
         | 
| 283 | 
            +
             | 
| 284 | 
            +
            // Large screen / wide desktop
         | 
| 285 | 
            +
            //** Deprecated `@screen-lg` as of v3.0.1
         | 
| 286 | 
            +
            $screen-lg:                  1200px !default;
         | 
| 287 | 
            +
            $screen-lg-min:              $screen-lg !default;
         | 
| 288 | 
            +
            //** Deprecated `@screen-lg-desktop` as of v3.0.1
         | 
| 289 | 
            +
            $screen-lg-desktop:          $screen-lg-min !default;
         | 
| 290 | 
            +
             | 
| 291 | 
            +
            // So media queries don't overlap when required, provide a maximum
         | 
| 292 | 
            +
            $screen-xs-max:              ($screen-sm-min - 1) !default;
         | 
| 293 | 
            +
            $screen-sm-max:              ($screen-md-min - 1) !default;
         | 
| 294 | 
            +
            $screen-md-max:              ($screen-lg-min - 1) !default;
         | 
| 295 | 
            +
             | 
| 296 | 
            +
             | 
| 297 | 
            +
            //== Grid system
         | 
| 298 | 
            +
            //
         | 
| 299 | 
            +
            //## Define your custom responsive grid.
         | 
| 300 | 
            +
             | 
| 301 | 
            +
            //** Number of columns in the grid.
         | 
| 302 | 
            +
            $grid-columns:              12 !default;
         | 
| 303 | 
            +
            //** Padding between columns. Gets divided in half for the left and right.
         | 
| 304 | 
            +
            $grid-gutter-width:         30px !default;
         | 
| 305 | 
            +
            // Navbar collapse
         | 
| 306 | 
            +
            //** Point at which the navbar becomes uncollapsed.
         | 
| 307 | 
            +
            $grid-float-breakpoint:     $screen-sm-min !default;
         | 
| 308 | 
            +
            //** Point at which the navbar begins collapsing.
         | 
| 309 | 
            +
            $grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default;
         | 
| 310 | 
            +
             | 
| 311 | 
            +
             | 
| 312 | 
            +
            //== Container sizes
         | 
| 313 | 
            +
            //
         | 
| 314 | 
            +
            //## Define the maximum width of `.container` for different screen sizes.
         | 
| 315 | 
            +
             | 
| 316 | 
            +
            // Small screen / tablet
         | 
| 317 | 
            +
            $container-tablet:             ((720px + $grid-gutter-width)) !default;
         | 
| 318 | 
            +
            //** For `@screen-sm-min` and up.
         | 
| 319 | 
            +
            $container-sm:                 $container-tablet !default;
         | 
| 320 | 
            +
             | 
| 321 | 
            +
            // Medium screen / desktop
         | 
| 322 | 
            +
            $container-desktop:            ((940px + $grid-gutter-width)) !default;
         | 
| 323 | 
            +
            //** For `@screen-md-min` and up.
         | 
| 324 | 
            +
            $container-md:                 $container-desktop !default;
         | 
| 325 | 
            +
             | 
| 326 | 
            +
            // Large screen / wide desktop
         | 
| 327 | 
            +
            $container-large-desktop:      ((1140px + $grid-gutter-width)) !default;
         | 
| 328 | 
            +
            //** For `@screen-lg-min` and up.
         | 
| 329 | 
            +
            $container-lg:                 $container-large-desktop !default;
         | 
| 330 | 
            +
             | 
| 331 | 
            +
             | 
| 332 | 
            +
            //== Navbar
         | 
| 333 | 
            +
            //
         | 
| 334 | 
            +
            //##
         | 
| 335 | 
            +
             | 
| 336 | 
            +
            // Basics of a navbar
         | 
| 337 | 
            +
            $navbar-height:                    64px !default;
         | 
| 338 | 
            +
            $navbar-margin-bottom:             $line-height-computed !default;
         | 
| 339 | 
            +
            $navbar-border-radius:             $border-radius-base !default;
         | 
| 340 | 
            +
            $navbar-padding-horizontal:        floor(($grid-gutter-width / 2)) !default;
         | 
| 341 | 
            +
            $navbar-padding-vertical:          (($navbar-height - $line-height-computed) / 2) !default;
         | 
| 342 | 
            +
            $navbar-collapse-max-height:       340px !default;
         | 
| 343 | 
            +
             | 
| 344 | 
            +
            $navbar-default-color:             $gray-light !default;
         | 
| 345 | 
            +
            $navbar-default-bg:                #fff !default;
         | 
| 346 | 
            +
            $navbar-default-border:            hsla(0, 100%, 100%, 0) !default;
         | 
| 347 | 
            +
             | 
| 348 | 
            +
            // Navbar links
         | 
| 349 | 
            +
            $navbar-default-link-color:                $gray !default;
         | 
| 350 | 
            +
            $navbar-default-link-hover-color:          $gray-dark !default;
         | 
| 351 | 
            +
            $navbar-default-link-hover-bg:             hsla(0, 100%, 100%, 0) !default;
         | 
| 352 | 
            +
            $navbar-default-link-active-color:         $gray-dark !default;
         | 
| 353 | 
            +
            $navbar-default-link-active-bg:            darken($navbar-default-bg, 6.5%) !default;
         | 
| 354 | 
            +
            $navbar-default-link-disabled-color:       #ccc !default;
         | 
| 355 | 
            +
            $navbar-default-link-disabled-bg:          hsla(0, 100%, 100%, 0) !default;
         | 
| 356 | 
            +
             | 
| 357 | 
            +
            // Navbar brand label
         | 
| 358 | 
            +
            $navbar-default-brand-color:               $navbar-default-link-color !default;
         | 
| 359 | 
            +
            $navbar-default-brand-hover-color:         $navbar-default-link-hover-color !default;
         | 
| 360 | 
            +
            $navbar-default-brand-hover-bg:            hsla(0, 100%, 100%, 0) !default;
         | 
| 361 | 
            +
             | 
| 362 | 
            +
            // Navbar toggle
         | 
| 363 | 
            +
            $navbar-default-toggle-hover-bg:           hsla(0, 100%, 100%, 0) !default;
         | 
| 364 | 
            +
            $navbar-default-toggle-icon-bar-bg:        rgba(0,0,0,0.5) !default;
         | 
| 365 | 
            +
            $navbar-default-toggle-border-color:       hsla(0, 100%, 100%, 0) !default;
         | 
| 366 | 
            +
             | 
| 367 | 
            +
             | 
| 368 | 
            +
            // Inverted navbar
         | 
| 369 | 
            +
            // Reset inverted navbar basics
         | 
| 370 | 
            +
            $navbar-inverse-color:                      $gray-light !default;
         | 
| 371 | 
            +
            $navbar-inverse-bg:                         $brand-primary !default;
         | 
| 372 | 
            +
            $navbar-inverse-border:                     hsla(0, 100%, 100%, 0) !default;
         | 
| 373 | 
            +
             | 
| 374 | 
            +
            // Inverted navbar links
         | 
| 375 | 
            +
            $navbar-inverse-link-color:                 lighten($brand-primary, 30%) !default;
         | 
| 376 | 
            +
            $navbar-inverse-link-hover-color:           #fff !default;
         | 
| 377 | 
            +
            $navbar-inverse-link-hover-bg:              hsla(0, 100%, 100%, 0) !default;
         | 
| 378 | 
            +
            $navbar-inverse-link-active-color:          $navbar-inverse-link-hover-color !default;
         | 
| 379 | 
            +
            $navbar-inverse-link-active-bg:             darken($navbar-inverse-bg, 10%) !default;
         | 
| 380 | 
            +
            $navbar-inverse-link-disabled-color:        #444 !default;
         | 
| 381 | 
            +
            $navbar-inverse-link-disabled-bg:           hsla(0, 100%, 100%, 0) !default;
         | 
| 382 | 
            +
             | 
| 383 | 
            +
            // Inverted navbar brand label
         | 
| 384 | 
            +
            $navbar-inverse-brand-color:                $navbar-inverse-link-color !default;
         | 
| 385 | 
            +
            $navbar-inverse-brand-hover-color:          #fff !default;
         | 
| 386 | 
            +
            $navbar-inverse-brand-hover-bg:             hsla(0, 100%, 100%, 0) !default;
         | 
| 387 | 
            +
             | 
| 388 | 
            +
            // Inverted navbar toggle\
         | 
| 389 | 
            +
            $navbar-inverse-toggle-hover-bg:            hsla(0, 100%, 100%, 0) !default;
         | 
| 390 | 
            +
            $navbar-inverse-toggle-icon-bar-bg:         rgba(0,0,0,0.5) !default;
         | 
| 391 | 
            +
            $navbar-inverse-toggle-border-color:        hsla(0, 100%, 100%, 0) !default;
         | 
| 392 | 
            +
             | 
| 393 | 
            +
             | 
| 394 | 
            +
            //== Navs
         | 
| 395 | 
            +
            //
         | 
| 396 | 
            +
            //##
         | 
| 397 | 
            +
             | 
| 398 | 
            +
            //=== Shared nav styles
         | 
| 399 | 
            +
            $nav-link-padding:                          10px 15px !default;
         | 
| 400 | 
            +
            $nav-link-hover-bg:                         $gray-lighter !default;
         | 
| 401 | 
            +
             | 
| 402 | 
            +
            $nav-disabled-link-color:                   $gray-light !default;
         | 
| 403 | 
            +
            $nav-disabled-link-hover-color:             $gray-light !default;
         | 
| 404 | 
            +
             | 
| 405 | 
            +
            $nav-open-link-hover-color:                 #fff !default;
         | 
| 406 | 
            +
             | 
| 407 | 
            +
            //== Tabs
         | 
| 408 | 
            +
            $nav-tabs-border-color:                     hsla(0, 100%, 100%, 0) !default;
         | 
| 409 | 
            +
             | 
| 410 | 
            +
            $nav-tabs-link-hover-border-color:          $gray-lighter !default;
         | 
| 411 | 
            +
             | 
| 412 | 
            +
            $nav-tabs-active-link-hover-bg:             hsla(0, 100%, 100%, 0) !default;
         | 
| 413 | 
            +
            $nav-tabs-active-link-hover-color:          $gray !default;
         | 
| 414 | 
            +
            $nav-tabs-active-link-hover-border-color:   hsla(0, 100%, 100%, 0) !default;
         | 
| 415 | 
            +
             | 
| 416 | 
            +
            $nav-tabs-justified-link-border-color:            #ddd !default;
         | 
| 417 | 
            +
            $nav-tabs-justified-active-link-border-color:     $body-bg !default;
         | 
| 418 | 
            +
             | 
| 419 | 
            +
            //== Pills
         | 
| 420 | 
            +
            $nav-pills-border-radius:                   $border-radius-base !default;
         | 
| 421 | 
            +
            $nav-pills-active-link-hover-bg:            $component-active-bg !default;
         | 
| 422 | 
            +
            $nav-pills-active-link-hover-color:         $component-active-color !default;
         | 
| 423 | 
            +
             | 
| 424 | 
            +
             | 
| 425 | 
            +
            //== Pagination
         | 
| 426 | 
            +
            //
         | 
| 427 | 
            +
            //##
         | 
| 428 | 
            +
             | 
| 429 | 
            +
            $pagination-color:                     $link-color !default;
         | 
| 430 | 
            +
            $pagination-bg:                        #fff !default;
         | 
| 431 | 
            +
            $pagination-border:                    #ddd !default;
         | 
| 432 | 
            +
             | 
| 433 | 
            +
            $pagination-hover-color:               $link-hover-color !default;
         | 
| 434 | 
            +
            $pagination-hover-bg:                  $gray-lighter !default;
         | 
| 435 | 
            +
            $pagination-hover-border:              #ddd !default;
         | 
| 436 | 
            +
             | 
| 437 | 
            +
            $pagination-active-color:              #fff !default;
         | 
| 438 | 
            +
            $pagination-active-bg:                 $brand-primary !default;
         | 
| 439 | 
            +
            $pagination-active-border:             $brand-primary !default;
         | 
| 440 | 
            +
             | 
| 441 | 
            +
            $pagination-disabled-color:            $gray-light !default;
         | 
| 442 | 
            +
            $pagination-disabled-bg:               #fff !default;
         | 
| 443 | 
            +
            $pagination-disabled-border:           #ddd !default;
         | 
| 444 | 
            +
             | 
| 445 | 
            +
             | 
| 446 | 
            +
            //== Pager
         | 
| 447 | 
            +
            //
         | 
| 448 | 
            +
            //##
         | 
| 449 | 
            +
             | 
| 450 | 
            +
            $pager-bg:                             $pagination-bg !default;
         | 
| 451 | 
            +
            $pager-border:                         $pagination-border !default;
         | 
| 452 | 
            +
            $pager-border-radius:                  15px !default;
         | 
| 453 | 
            +
             | 
| 454 | 
            +
            $pager-hover-bg:                       $pagination-hover-bg !default;
         | 
| 455 | 
            +
             | 
| 456 | 
            +
            $pager-active-bg:                      $pagination-active-bg !default;
         | 
| 457 | 
            +
            $pager-active-color:                   $pagination-active-color !default;
         | 
| 458 | 
            +
             | 
| 459 | 
            +
            $pager-disabled-color:                 $pagination-disabled-color !default;
         | 
| 460 | 
            +
             | 
| 461 | 
            +
             | 
| 462 | 
            +
            //== Jumbotron
         | 
| 463 | 
            +
            //
         | 
| 464 | 
            +
            //##
         | 
| 465 | 
            +
             | 
| 466 | 
            +
            $jumbotron-padding:              30px !default;
         | 
| 467 | 
            +
            $jumbotron-color:                inherit !default;
         | 
| 468 | 
            +
            $jumbotron-bg:                   #f9f9f9 !default;
         | 
| 469 | 
            +
            $jumbotron-heading-color:        $headings-color !default;
         | 
| 470 | 
            +
            $jumbotron-font-size:            ceil(($font-size-base * 1.5)) !default;
         | 
| 471 | 
            +
             | 
| 472 | 
            +
             | 
| 473 | 
            +
            //== Form states and alerts
         | 
| 474 | 
            +
            //
         | 
| 475 | 
            +
            //## Define colors for form feedback states and, by default, alerts.
         | 
| 476 | 
            +
             | 
| 477 | 
            +
            $state-success-text:             $brand-success !default;
         | 
| 478 | 
            +
            $state-success-bg:               #dff0d8 !default;
         | 
| 479 | 
            +
            $state-success-border:           darken(adjust-hue($state-success-bg, -10), 5%) !default;
         | 
| 480 | 
            +
             | 
| 481 | 
            +
            $state-info-text:                $brand-info !default;
         | 
| 482 | 
            +
            $state-info-bg:                  #e1bee7 !default;
         | 
| 483 | 
            +
            $state-info-border:              darken(adjust-hue($state-info-bg, -10), 7%) !default;
         | 
| 484 | 
            +
             | 
| 485 | 
            +
            $state-warning-text:             $brand-warning !default;
         | 
| 486 | 
            +
            $state-warning-bg:               #ffe0b2 !default;
         | 
| 487 | 
            +
            $state-warning-border:           darken(adjust-hue($state-warning-bg, -10), 5%) !default;
         | 
| 488 | 
            +
             | 
| 489 | 
            +
            $state-danger-text:              $brand-danger !default;
         | 
| 490 | 
            +
            $state-danger-bg:                #f9bdbb !default;
         | 
| 491 | 
            +
            $state-danger-border:            darken(adjust-hue($state-danger-bg, -10), 5%) !default;
         | 
| 492 | 
            +
             | 
| 493 | 
            +
             | 
| 494 | 
            +
            //== Tooltips
         | 
| 495 | 
            +
            //
         | 
| 496 | 
            +
            //##
         | 
| 497 | 
            +
             | 
| 498 | 
            +
            //** Tooltip max width
         | 
| 499 | 
            +
            $tooltip-max-width:           200px !default;
         | 
| 500 | 
            +
            //** Tooltip text color
         | 
| 501 | 
            +
            $tooltip-color:               #fff !default;
         | 
| 502 | 
            +
            //** Tooltip background color
         | 
| 503 | 
            +
            $tooltip-bg:                  #727272 !default;
         | 
| 504 | 
            +
            $tooltip-opacity:             .9 !default;
         | 
| 505 | 
            +
             | 
| 506 | 
            +
            //** Tooltip arrow width
         | 
| 507 | 
            +
            $tooltip-arrow-width:         5px !default;
         | 
| 508 | 
            +
            //** Tooltip arrow color
         | 
| 509 | 
            +
            $tooltip-arrow-color:         $tooltip-bg !default;
         | 
| 510 | 
            +
             | 
| 511 | 
            +
             | 
| 512 | 
            +
            //== Popovers
         | 
| 513 | 
            +
            //
         | 
| 514 | 
            +
            //##
         | 
| 515 | 
            +
             | 
| 516 | 
            +
            //** Popover body background color
         | 
| 517 | 
            +
            $popover-bg:                          #fff !default;
         | 
| 518 | 
            +
            //** Popover maximum width
         | 
| 519 | 
            +
            $popover-max-width:                   276px !default;
         | 
| 520 | 
            +
            //** Popover border color
         | 
| 521 | 
            +
            $popover-border-color:                hsla(0, 100%, 100%, 0) !default;
         | 
| 522 | 
            +
            //** Popover fallback border color
         | 
| 523 | 
            +
            $popover-fallback-border-color:       hsla(0, 100%, 100%, 0) !default;
         | 
| 524 | 
            +
             | 
| 525 | 
            +
            //** Popover title background color
         | 
| 526 | 
            +
            $popover-title-bg:                    darken($popover-bg, 3%) !default;
         | 
| 527 | 
            +
             | 
| 528 | 
            +
            //** Popover arrow width
         | 
| 529 | 
            +
            $popover-arrow-width:                 10px !default;
         | 
| 530 | 
            +
            //** Popover arrow color
         | 
| 531 | 
            +
            $popover-arrow-color:                 #fff !default;
         | 
| 532 | 
            +
             | 
| 533 | 
            +
            //** Popover outer arrow width
         | 
| 534 | 
            +
            $popover-arrow-outer-width:           ($popover-arrow-width + 1) !default;
         | 
| 535 | 
            +
            //** Popover outer arrow color
         | 
| 536 | 
            +
            $popover-arrow-outer-color:           fadein($popover-border-color, 5%) !default;
         | 
| 537 | 
            +
            //** Popover outer arrow fallback color
         | 
| 538 | 
            +
            $popover-arrow-outer-fallback-color:  darken($popover-fallback-border-color, 20%) !default;
         | 
| 539 | 
            +
             | 
| 540 | 
            +
             | 
| 541 | 
            +
            //== Labels
         | 
| 542 | 
            +
            //
         | 
| 543 | 
            +
            //##
         | 
| 544 | 
            +
             | 
| 545 | 
            +
            //** Default label background color
         | 
| 546 | 
            +
            $label-default-bg:            $gray-light !default;
         | 
| 547 | 
            +
            //** Primary label background color
         | 
| 548 | 
            +
            $label-primary-bg:            $brand-primary !default;
         | 
| 549 | 
            +
            //** Success label background color
         | 
| 550 | 
            +
            $label-success-bg:            $brand-success !default;
         | 
| 551 | 
            +
            //** Info label background color
         | 
| 552 | 
            +
            $label-info-bg:               $brand-info !default;
         | 
| 553 | 
            +
            //** Warning label background color
         | 
| 554 | 
            +
            $label-warning-bg:            $brand-warning !default;
         | 
| 555 | 
            +
            //** Danger label background color
         | 
| 556 | 
            +
            $label-danger-bg:             $brand-danger !default;
         | 
| 557 | 
            +
             | 
| 558 | 
            +
            //** Default label text color
         | 
| 559 | 
            +
            $label-color:                 #fff !default;
         | 
| 560 | 
            +
            //** Default text color of a linked label
         | 
| 561 | 
            +
            $label-link-hover-color:      #fff !default;
         | 
| 562 | 
            +
             | 
| 563 | 
            +
             | 
| 564 | 
            +
            //== Modals
         | 
| 565 | 
            +
            //
         | 
| 566 | 
            +
            //##
         | 
| 567 | 
            +
             | 
| 568 | 
            +
            //** Padding applied to the modal body
         | 
| 569 | 
            +
            $modal-inner-padding:         15px !default;
         | 
| 570 | 
            +
             | 
| 571 | 
            +
            //** Padding applied to the modal title
         | 
| 572 | 
            +
            $modal-title-padding:         15px !default;
         | 
| 573 | 
            +
            //** Modal title line-height
         | 
| 574 | 
            +
            $modal-title-line-height:     $line-height-base !default;
         | 
| 575 | 
            +
             | 
| 576 | 
            +
            //** Background color of modal content area
         | 
| 577 | 
            +
            $modal-content-bg:                             #fff !default;
         | 
| 578 | 
            +
            //** Modal content border color
         | 
| 579 | 
            +
            $modal-content-border-color:                   hsla(0, 100%, 100%, 0) !default;
         | 
| 580 | 
            +
            //** Modal content border color **for IE8**
         | 
| 581 | 
            +
            $modal-content-fallback-border-color:          #999 !default;
         | 
| 582 | 
            +
             | 
| 583 | 
            +
            //** Modal backdrop background color
         | 
| 584 | 
            +
            $modal-backdrop-bg:           #000 !default;
         | 
| 585 | 
            +
            //** Modal backdrop opacity
         | 
| 586 | 
            +
            $modal-backdrop-opacity:      .5 !default;
         | 
| 587 | 
            +
            //** Modal header border color
         | 
| 588 | 
            +
            $modal-header-border-color:   hsla(0, 100%, 100%, 0) !default;
         | 
| 589 | 
            +
            //** Modal footer border color
         | 
| 590 | 
            +
            $modal-footer-border-color:   $modal-header-border-color !default;
         | 
| 591 | 
            +
             | 
| 592 | 
            +
            $modal-lg:                    900px !default;
         | 
| 593 | 
            +
            $modal-md:                    600px !default;
         | 
| 594 | 
            +
            $modal-sm:                    300px !default;
         | 
| 595 | 
            +
             | 
| 596 | 
            +
             | 
| 597 | 
            +
            //== Alerts
         | 
| 598 | 
            +
            //
         | 
| 599 | 
            +
            //## Define alert colors, border radius, and padding.
         | 
| 600 | 
            +
             | 
| 601 | 
            +
            $alert-padding:               15px !default;
         | 
| 602 | 
            +
            $alert-border-radius:         $border-radius-base !default;
         | 
| 603 | 
            +
            $alert-link-font-weight:      bold !default;
         | 
| 604 | 
            +
             | 
| 605 | 
            +
            $alert-success-bg:            $state-success-bg !default;
         | 
| 606 | 
            +
            $alert-success-text:          $state-success-text !default;
         | 
| 607 | 
            +
            $alert-success-border:        $state-success-border !default;
         | 
| 608 | 
            +
             | 
| 609 | 
            +
            $alert-info-bg:               $state-info-bg !default;
         | 
| 610 | 
            +
            $alert-info-text:             $state-info-text !default;
         | 
| 611 | 
            +
            $alert-info-border:           $state-info-border !default;
         | 
| 612 | 
            +
             | 
| 613 | 
            +
            $alert-warning-bg:            $state-warning-bg !default;
         | 
| 614 | 
            +
            $alert-warning-text:          $state-warning-text !default;
         | 
| 615 | 
            +
            $alert-warning-border:        $state-warning-border !default;
         | 
| 616 | 
            +
             | 
| 617 | 
            +
            $alert-danger-bg:             $state-danger-bg !default;
         | 
| 618 | 
            +
            $alert-danger-text:           $state-danger-text !default;
         | 
| 619 | 
            +
            $alert-danger-border:         $state-danger-border !default;
         | 
| 620 | 
            +
             | 
| 621 | 
            +
             | 
| 622 | 
            +
            //== Progress bars
         | 
| 623 | 
            +
            //
         | 
| 624 | 
            +
            //##
         | 
| 625 | 
            +
             | 
| 626 | 
            +
            //** Background color of the whole progress component
         | 
| 627 | 
            +
            $progress-bg:                 #f5f5f5 !default;
         | 
| 628 | 
            +
            //** Progress bar text color
         | 
| 629 | 
            +
            $progress-bar-color:          #fff !default;
         | 
| 630 | 
            +
             | 
| 631 | 
            +
            //** Default progress bar color
         | 
| 632 | 
            +
            $progress-bar-bg:             $brand-primary !default;
         | 
| 633 | 
            +
            //** Success progress bar color
         | 
| 634 | 
            +
            $progress-bar-success-bg:     $brand-success !default;
         | 
| 635 | 
            +
            //** Warning progress bar color
         | 
| 636 | 
            +
            $progress-bar-warning-bg:     $brand-warning !default;
         | 
| 637 | 
            +
            //** Danger progress bar color
         | 
| 638 | 
            +
            $progress-bar-danger-bg:      $brand-danger !default;
         | 
| 639 | 
            +
            //** Info progress bar color
         | 
| 640 | 
            +
            $progress-bar-info-bg:        $brand-info !default;
         | 
| 641 | 
            +
             | 
| 642 | 
            +
             | 
| 643 | 
            +
            //== List group
         | 
| 644 | 
            +
            //
         | 
| 645 | 
            +
            //##
         | 
| 646 | 
            +
             | 
| 647 | 
            +
            //** Background color on `.list-group-item`
         | 
| 648 | 
            +
            $list-group-bg:                 #fff !default;
         | 
| 649 | 
            +
            //** `.list-group-item` border color
         | 
| 650 | 
            +
            $list-group-border:             #ddd !default;
         | 
| 651 | 
            +
            //** List group border radius
         | 
| 652 | 
            +
            $list-group-border-radius:      $border-radius-base !default;
         | 
| 653 | 
            +
             | 
| 654 | 
            +
            //** Background color of single list items on hover
         | 
| 655 | 
            +
            $list-group-hover-bg:           #f5f5f5 !default;
         | 
| 656 | 
            +
            //** Text color of active list items
         | 
| 657 | 
            +
            $list-group-active-color:       $component-active-color !default;
         | 
| 658 | 
            +
            //** Background color of active list items
         | 
| 659 | 
            +
            $list-group-active-bg:          $component-active-bg !default;
         | 
| 660 | 
            +
            //** Border color of active list elements
         | 
| 661 | 
            +
            $list-group-active-border:      $list-group-active-bg !default;
         | 
| 662 | 
            +
            //** Text color for content within active list items
         | 
| 663 | 
            +
            $list-group-active-text-color:  lighten($list-group-active-bg, 40%) !default;
         | 
| 664 | 
            +
             | 
| 665 | 
            +
            //** Text color of disabled list items
         | 
| 666 | 
            +
            $list-group-disabled-color:      $gray-light !default;
         | 
| 667 | 
            +
            //** Background color of disabled list items
         | 
| 668 | 
            +
            $list-group-disabled-bg:         $gray-lighter !default;
         | 
| 669 | 
            +
            //** Text color for content within disabled list items
         | 
| 670 | 
            +
            $list-group-disabled-text-color: $list-group-disabled-color !default;
         | 
| 671 | 
            +
             | 
| 672 | 
            +
            $list-group-link-color:         #555 !default;
         | 
| 673 | 
            +
            $list-group-link-hover-color:   $list-group-link-color !default;
         | 
| 674 | 
            +
            $list-group-link-heading-color: #333 !default;
         | 
| 675 | 
            +
             | 
| 676 | 
            +
             | 
| 677 | 
            +
            //== Panels
         | 
| 678 | 
            +
            //
         | 
| 679 | 
            +
            //##
         | 
| 680 | 
            +
             | 
| 681 | 
            +
            $panel-bg:                    #fff !default;
         | 
| 682 | 
            +
            $panel-body-padding:          15px !default;
         | 
| 683 | 
            +
            $panel-heading-padding:       10px 15px !default;
         | 
| 684 | 
            +
            $panel-footer-padding:        $panel-heading-padding !default;
         | 
| 685 | 
            +
            $panel-border-radius:         $border-radius-base !default;
         | 
| 686 | 
            +
             | 
| 687 | 
            +
            //** Border color for elements within panels
         | 
| 688 | 
            +
            $panel-inner-border:          #ddd !default;
         | 
| 689 | 
            +
            $panel-footer-bg:             #f5f5f5 !default;
         | 
| 690 | 
            +
             | 
| 691 | 
            +
            $panel-default-text:          $gray-dark !default;
         | 
| 692 | 
            +
            $panel-default-border:        #ddd !default;
         | 
| 693 | 
            +
            $panel-default-heading-bg:    #f5f5f5 !default;
         | 
| 694 | 
            +
             | 
| 695 | 
            +
            $panel-primary-text:          #fff !default;
         | 
| 696 | 
            +
            $panel-primary-border:        $brand-primary !default;
         | 
| 697 | 
            +
            $panel-primary-heading-bg:    $brand-primary !default;
         | 
| 698 | 
            +
             | 
| 699 | 
            +
            $panel-success-text:          $state-success-text !default;
         | 
| 700 | 
            +
            $panel-success-border:        $state-success-border !default;
         | 
| 701 | 
            +
            $panel-success-heading-bg:    $state-success-bg !default;
         | 
| 702 | 
            +
             | 
| 703 | 
            +
            $panel-info-text:             $state-info-text !default;
         | 
| 704 | 
            +
            $panel-info-border:           $state-info-border !default;
         | 
| 705 | 
            +
            $panel-info-heading-bg:       $state-info-bg !default;
         | 
| 706 | 
            +
             | 
| 707 | 
            +
            $panel-warning-text:          $state-warning-text !default;
         | 
| 708 | 
            +
            $panel-warning-border:        $state-warning-border !default;
         | 
| 709 | 
            +
            $panel-warning-heading-bg:    $state-warning-bg !default;
         | 
| 710 | 
            +
             | 
| 711 | 
            +
            $panel-danger-text:           $state-danger-text !default;
         | 
| 712 | 
            +
            $panel-danger-border:         $state-danger-border !default;
         | 
| 713 | 
            +
            $panel-danger-heading-bg:     $state-danger-bg !default;
         | 
| 714 | 
            +
             | 
| 715 | 
            +
             | 
| 716 | 
            +
            //== Thumbnails
         | 
| 717 | 
            +
            //
         | 
| 718 | 
            +
            //##
         | 
| 719 | 
            +
             | 
| 720 | 
            +
            //** Padding around the thumbnail image
         | 
| 721 | 
            +
            $thumbnail-padding:           4px !default;
         | 
| 722 | 
            +
            //** Thumbnail background color
         | 
| 723 | 
            +
            $thumbnail-bg:                $body-bg !default;
         | 
| 724 | 
            +
            //** Thumbnail border color
         | 
| 725 | 
            +
            $thumbnail-border:            #ddd !default;
         | 
| 726 | 
            +
            //** Thumbnail border radius
         | 
| 727 | 
            +
            $thumbnail-border-radius:     $border-radius-base !default;
         | 
| 728 | 
            +
             | 
| 729 | 
            +
            //** Custom text color for thumbnail captions
         | 
| 730 | 
            +
            $thumbnail-caption-color:     $text-color !default;
         | 
| 731 | 
            +
            //** Padding around the thumbnail caption
         | 
| 732 | 
            +
            $thumbnail-caption-padding:   9px !default;
         | 
| 733 | 
            +
             | 
| 734 | 
            +
             | 
| 735 | 
            +
            //== Wells
         | 
| 736 | 
            +
            //
         | 
| 737 | 
            +
            //##
         | 
| 738 | 
            +
             | 
| 739 | 
            +
            $well-bg:                     #f9f9f9 !default;
         | 
| 740 | 
            +
            $well-border:                 hsla(0, 100%, 100%, 0) !default;
         | 
| 741 | 
            +
             | 
| 742 | 
            +
             | 
| 743 | 
            +
            //== Badges
         | 
| 744 | 
            +
            //
         | 
| 745 | 
            +
            //##
         | 
| 746 | 
            +
             | 
| 747 | 
            +
            $badge-color:                 #fff !default;
         | 
| 748 | 
            +
            //** Linked badge text color on hover
         | 
| 749 | 
            +
            $badge-link-hover-color:      #fff !default;
         | 
| 750 | 
            +
            $badge-bg:                    $gray-light !default;
         | 
| 751 | 
            +
             | 
| 752 | 
            +
            //** Badge text color in active nav link
         | 
| 753 | 
            +
            $badge-active-color:          $link-color !default;
         | 
| 754 | 
            +
            //** Badge background color in active nav link
         | 
| 755 | 
            +
            $badge-active-bg:             #fff !default;
         | 
| 756 | 
            +
             | 
| 757 | 
            +
            $badge-font-weight:           normal !default;
         | 
| 758 | 
            +
            $badge-line-height:           1 !default;
         | 
| 759 | 
            +
            $badge-border-radius:         10px !default;
         | 
| 760 | 
            +
             | 
| 761 | 
            +
             | 
| 762 | 
            +
            //== Breadcrumbs
         | 
| 763 | 
            +
            //
         | 
| 764 | 
            +
            //##
         | 
| 765 | 
            +
             | 
| 766 | 
            +
            $breadcrumb-padding-vertical:   8px !default;
         | 
| 767 | 
            +
            $breadcrumb-padding-horizontal: 15px !default;
         | 
| 768 | 
            +
            //** Breadcrumb background color
         | 
| 769 | 
            +
            $breadcrumb-bg:                 #f5f5f5 !default;
         | 
| 770 | 
            +
            //** Breadcrumb text color
         | 
| 771 | 
            +
            $breadcrumb-color:              #ccc !default;
         | 
| 772 | 
            +
            //** Text color of current page in the breadcrumb
         | 
| 773 | 
            +
            $breadcrumb-active-color:       $gray-light !default;
         | 
| 774 | 
            +
            //** Textual separator for between breadcrumb elements
         | 
| 775 | 
            +
            $breadcrumb-separator:          "/" !default;
         | 
| 776 | 
            +
             | 
| 777 | 
            +
             | 
| 778 | 
            +
            //== Carousel
         | 
| 779 | 
            +
            //
         | 
| 780 | 
            +
            //##
         | 
| 781 | 
            +
             | 
| 782 | 
            +
            $carousel-text-shadow:                        0 1px 2px rgba(0,0,0,.6) !default;
         | 
| 783 | 
            +
             | 
| 784 | 
            +
            $carousel-control-color:                      #fff !default;
         | 
| 785 | 
            +
            $carousel-control-width:                      15% !default;
         | 
| 786 | 
            +
            $carousel-control-opacity:                    .5 !default;
         | 
| 787 | 
            +
            $carousel-control-font-size:                  20px !default;
         | 
| 788 | 
            +
             | 
| 789 | 
            +
            $carousel-indicator-active-bg:                #fff !default;
         | 
| 790 | 
            +
            $carousel-indicator-border-color:             #fff !default;
         | 
| 791 | 
            +
             | 
| 792 | 
            +
            $carousel-caption-color:                      #fff !default;
         | 
| 793 | 
            +
             | 
| 794 | 
            +
             | 
| 795 | 
            +
            //== Close
         | 
| 796 | 
            +
            //
         | 
| 797 | 
            +
            //##
         | 
| 798 | 
            +
             | 
| 799 | 
            +
            $close-font-weight:           normal !default;
         | 
| 800 | 
            +
            $close-color:                 #000 !default;
         | 
| 801 | 
            +
            $close-text-shadow:           none !default;
         | 
| 802 | 
            +
             | 
| 803 | 
            +
             | 
| 804 | 
            +
            //== Code
         | 
| 805 | 
            +
            //
         | 
| 806 | 
            +
            //##
         | 
| 807 | 
            +
             | 
| 808 | 
            +
            $code-color:                  #c7254e !default;
         | 
| 809 | 
            +
            $code-bg:                     #f9f2f4 !default;
         | 
| 810 | 
            +
             | 
| 811 | 
            +
            $kbd-color:                   #fff !default;
         | 
| 812 | 
            +
            $kbd-bg:                      #333 !default;
         | 
| 813 | 
            +
             | 
| 814 | 
            +
            $pre-bg:                      #f5f5f5 !default;
         | 
| 815 | 
            +
            $pre-color:                   $gray-dark !default;
         | 
| 816 | 
            +
            $pre-border-color:            #ccc !default;
         | 
| 817 | 
            +
            $pre-scrollable-max-height:   340px !default;
         | 
| 818 | 
            +
             | 
| 819 | 
            +
             | 
| 820 | 
            +
            //== Type
         | 
| 821 | 
            +
            //
         | 
| 822 | 
            +
            //##
         | 
| 823 | 
            +
             | 
| 824 | 
            +
            //** Horizontal offset for forms and lists.
         | 
| 825 | 
            +
            $component-offset-horizontal: 180px !default;
         | 
| 826 | 
            +
            //** Text muted color
         | 
| 827 | 
            +
            $text-muted:                  $gray-light !default;
         | 
| 828 | 
            +
            //** Abbreviations and acronyms border color
         | 
| 829 | 
            +
            $abbr-border-color:           $gray-light !default;
         | 
| 830 | 
            +
            //** Headings small color
         | 
| 831 | 
            +
            $headings-small-color:        $gray-light !default;
         | 
| 832 | 
            +
            //** Blockquote small color
         | 
| 833 | 
            +
            $blockquote-small-color:      $gray-light !default;
         | 
| 834 | 
            +
            //** Blockquote font size
         | 
| 835 | 
            +
            $blockquote-font-size:        ($font-size-base * 1.25) !default;
         | 
| 836 | 
            +
            //** Blockquote border color
         | 
| 837 | 
            +
            $blockquote-border-color:     $gray-lighter !default;
         | 
| 838 | 
            +
            //** Page header border color
         | 
| 839 | 
            +
            $page-header-border-color:    $gray-lighter !default;
         | 
| 840 | 
            +
            //** Width of horizontal description list titles
         | 
| 841 | 
            +
            $dl-horizontal-offset:        $component-offset-horizontal !default;
         | 
| 842 | 
            +
            //** Horizontal line color.
         | 
| 843 | 
            +
            $hr-border:                   $gray-lighter !default;
         | 
| 844 | 
            +
             | 
| 845 | 
            +
             |