nodebb-theme-flawless-rp 1.0.15 → 1.0.18

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