oslo-red-cross-bootstrap-3-theme 1.0.0

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