Projekt

Obecné

Profil

« Předchozí | Další » 

Revize fdba469a

Přidáno uživatelem Martin Sebela před více než 3 roky(ů)

Re #8187 - fixed draggable bug, draggable timeline is now more smooth due optimalization, deploy new Bootstrap version due .map files

Zobrazit rozdíly:

website/public/css/bootstrap-4.4.1/_functions.scss
1
// Bootstrap functions
2
//
3
// Utility mixins and functions for evaluating source code across our variables, maps, and mixins.
4

  
5
// Ascending
6
// Used to evaluate Sass maps like our grid breakpoints.
7
@mixin _assert-ascending($map, $map-name) {
8
  $prev-key: null;
9
  $prev-num: null;
10
  @each $key, $num in $map {
11
    @if $prev-num == null or unit($num) == "%" {
12
      // Do nothing
13
    } @else if not comparable($prev-num, $num) {
14
      @warn "Potentially invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} whose unit makes it incomparable to #{$prev-num}, the value of the previous key '#{$prev-key}' !";
15
    } @else if $prev-num >= $num {
16
      @warn "Invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} which isn't greater than #{$prev-num}, the value of the previous key '#{$prev-key}' !";
17
    }
18
    $prev-key: $key;
19
    $prev-num: $num;
20
  }
21
}
22

  
23
// Starts at zero
24
// Used to ensure the min-width of the lowest breakpoint starts at 0.
25
@mixin _assert-starts-at-zero($map, $map-name: "$grid-breakpoints") {
26
  $values: map-values($map);
27
  $first-value: nth($values, 1);
28
  @if $first-value != 0 {
29
    @warn "First breakpoint in #{$map-name} must start at 0, but starts at #{$first-value}.";
30
  }
31
}
32

  
33
// Replace `$search` with `$replace` in `$string`
34
// Used on our SVG icon backgrounds for custom forms.
35
//
36
// @author Hugo Giraudel
37
// @param {String} $string - Initial string
38
// @param {String} $search - Substring to replace
39
// @param {String} $replace ('') - New value
40
// @return {String} - Updated string
41
@function str-replace($string, $search, $replace: "") {
42
  $index: str-index($string, $search);
43

  
44
  @if $index {
45
    @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
46
  }
47

  
48
  @return $string;
49
}
50

  
51
// Color contrast
52
@function color-yiq($color, $dark: $yiq-text-dark, $light: $yiq-text-light) {
53
  $r: red($color);
54
  $g: green($color);
55
  $b: blue($color);
56

  
57
  $yiq: (($r * 299) + ($g * 587) + ($b * 114)) / 1000;
58

  
59
  @if ($yiq >= $yiq-contrasted-threshold) {
60
    @return $dark;
61
  } @else {
62
    @return $light;
63
  }
64
}
65

  
66
// Retrieve color Sass maps
67
@function color($key: "blue") {
68
  @return map-get($colors, $key);
69
}
70

  
71
@function theme-color($key: "primary") {
72
  @return map-get($theme-colors, $key);
73
}
74

  
75
@function gray($key: "100") {
76
  @return map-get($grays, $key);
77
}
78

  
79
// Request a theme color level
80
@function theme-color-level($color-name: "primary", $level: 0) {
81
  $color: theme-color($color-name);
82
  $color-base: if($level > 0, $black, $white);
83
  $level: abs($level);
84

  
85
  @return mix($color-base, $color, $level * $theme-color-interval);
86
}
website/public/css/bootstrap-4.4.1/_variables.scss
1
// Variables
2
//
3
// Variables should follow the `$component-state-property-size` formula for
4
// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.
5

  
6
// Color system
7

  
8
$white:    #fff !default;
9
$gray-100: #f8f9fa !default;
10
$gray-200: #e9ecef !default;
11
$gray-300: #dee2e6 !default;
12
$gray-400: #ced4da !default;
13
$gray-500: #adb5bd !default;
14
$gray-600: #6c757d !default;
15
$gray-700: #495057 !default;
16
$gray-800: #343a40 !default;
17
$gray-900: #212529 !default;
18
$black:    #000 !default;
19

  
20
$grays: () !default;
21
// stylelint-disable-next-line scss/dollar-variable-default
22
$grays: map-merge(
23
  (
24
    "100": $gray-100,
25
    "200": $gray-200,
26
    "300": $gray-300,
27
    "400": $gray-400,
28
    "500": $gray-500,
29
    "600": $gray-600,
30
    "700": $gray-700,
31
    "800": $gray-800,
32
    "900": $gray-900
33
  ),
34
  $grays
35
);
36

  
37
$blue:    #007bff !default;
38
$indigo:  #6610f2 !default;
39
$purple:  #6f42c1 !default;
40
$pink:    #e83e8c !default;
41
$red:     #dc3545 !default;
42
$orange:  #fd7e14 !default;
43
$yellow:  #ffc107 !default;
44
$green:   #28a745 !default;
45
$teal:    #20c997 !default;
46
$cyan:    #17a2b8 !default;
47

  
48
$colors: () !default;
49
// stylelint-disable-next-line scss/dollar-variable-default
50
$colors: map-merge(
51
  (
52
    "blue":       $blue,
53
    "indigo":     $indigo,
54
    "purple":     $purple,
55
    "pink":       $pink,
56
    "red":        $red,
57
    "orange":     $orange,
58
    "yellow":     $yellow,
59
    "green":      $green,
60
    "teal":       $teal,
61
    "cyan":       $cyan,
62
    "white":      $white,
63
    "gray":       $gray-600,
64
    "gray-dark":  $gray-800
65
  ),
66
  $colors
67
);
68

  
69
$primary:       $blue !default;
70
$secondary:     $gray-600 !default;
71
$success:       $green !default;
72
$info:          $cyan !default;
73
$warning:       $yellow !default;
74
$danger:        $red !default;
75
$light:         $gray-100 !default;
76
$dark:          $gray-800 !default;
77

  
78
$theme-colors: () !default;
79
// stylelint-disable-next-line scss/dollar-variable-default
80
$theme-colors: map-merge(
81
  (
82
    "primary":    $primary,
83
    "secondary":  $secondary,
84
    "success":    $success,
85
    "info":       $info,
86
    "warning":    $warning,
87
    "danger":     $danger,
88
    "light":      $light,
89
    "dark":       $dark
90
  ),
91
  $theme-colors
92
);
93

  
94
// Set a specific jump point for requesting color jumps
95
$theme-color-interval:      8% !default;
96

  
97
// The yiq lightness value that determines when the lightness of color changes from "dark" to "light". Acceptable values are between 0 and 255.
98
$yiq-contrasted-threshold:  150 !default;
99

  
100
// Customize the light and dark text colors for use in our YIQ color contrast function.
101
$yiq-text-dark:             $gray-900 !default;
102
$yiq-text-light:            $white !default;
103

  
104

  
105
// Options
106
//
107
// Quickly modify global styling by enabling or disabling optional features.
108

  
109
$enable-caret:                                true !default;
110
$enable-rounded:                              true !default;
111
$enable-shadows:                              false !default;
112
$enable-gradients:                            false !default;
113
$enable-transitions:                          true !default;
114
$enable-prefers-reduced-motion-media-query:   true !default;
115
$enable-hover-media-query:                    false !default; // Deprecated, no longer affects any compiled CSS
116
$enable-grid-classes:                         true !default;
117
$enable-pointer-cursor-for-buttons:           true !default;
118
$enable-print-styles:                         true !default;
119
$enable-responsive-font-sizes:                false !default;
120
$enable-validation-icons:                     true !default;
121
$enable-deprecation-messages:                 true !default;
122

  
123

  
124
// Spacing
125
//
126
// Control the default styling of most Bootstrap elements by modifying these
127
// variables. Mostly focused on spacing.
128
// You can add more entries to the $spacers map, should you need more variation.
129

  
130
$spacer: 1rem !default;
131
$spacers: () !default;
132
// stylelint-disable-next-line scss/dollar-variable-default
133
$spacers: map-merge(
134
  (
135
    0: 0,
136
    1: ($spacer * .25),
137
    2: ($spacer * .5),
138
    3: $spacer,
139
    4: ($spacer * 1.5),
140
    5: ($spacer * 3)
141
  ),
142
  $spacers
143
);
144

  
145
// This variable affects the `.h-*` and `.w-*` classes.
146
$sizes: () !default;
147
// stylelint-disable-next-line scss/dollar-variable-default
148
$sizes: map-merge(
149
  (
150
    25: 25%,
151
    50: 50%,
152
    75: 75%,
153
    100: 100%,
154
    auto: auto
155
  ),
156
  $sizes
157
);
158

  
159

  
160
// Body
161
//
162
// Settings for the `<body>` element.
163

  
164
$body-bg:                   $white !default;
165
$body-color:                $gray-900 !default;
166

  
167

  
168
// Links
169
//
170
// Style anchor elements.
171

  
172
$link-color:                              theme-color("primary") !default;
173
$link-decoration:                         none !default;
174
$link-hover-color:                        darken($link-color, 15%) !default;
175
$link-hover-decoration:                   underline !default;
176
// Darken percentage for links with `.text-*` class (e.g. `.text-success`)
177
$emphasized-link-hover-darken-percentage: 15% !default;
178

  
179
// Paragraphs
180
//
181
// Style p element.
182

  
183
$paragraph-margin-bottom:   1rem !default;
184

  
185

  
186
// Grid breakpoints
187
//
188
// Define the minimum dimensions at which your layout will change,
189
// adapting to different screen sizes, for use in media queries.
190

  
191
$grid-breakpoints: (
192
  xs: 0,
193
  sm: 576px,
194
  md: 768px,
195
  lg: 992px,
196
  xl: 1200px
197
) !default;
198

  
199
@include _assert-ascending($grid-breakpoints, "$grid-breakpoints");
200
@include _assert-starts-at-zero($grid-breakpoints, "$grid-breakpoints");
201

  
202

  
203
// Grid containers
204
//
205
// Define the maximum width of `.container` for different screen sizes.
206

  
207
$container-max-widths: (
208
  sm: 540px,
209
  md: 720px,
210
  lg: 960px,
211
  xl: 1140px
212
) !default;
213

  
214
@include _assert-ascending($container-max-widths, "$container-max-widths");
215

  
216

  
217
// Grid columns
218
//
219
// Set the number of columns and specify the width of the gutters.
220

  
221
$grid-columns:                12 !default;
222
$grid-gutter-width:           30px !default;
223

  
224

  
225
// Components
226
//
227
// Define common padding and border radius sizes and more.
228

  
229
$line-height-lg:              1.5 !default;
230
$line-height-sm:              1.5 !default;
231

  
232
$border-width:                1px !default;
233
$border-color:                $gray-300 !default;
234

  
235
$border-radius:               .25rem !default;
236
$border-radius-lg:            .3rem !default;
237
$border-radius-sm:            .2rem !default;
238

  
239
$rounded-pill:                50rem !default;
240

  
241
$box-shadow-sm:               0 .125rem .25rem rgba($black, .075) !default;
242
$box-shadow:                  0 .5rem 1rem rgba($black, .15) !default;
243
$box-shadow-lg:               0 1rem 3rem rgba($black, .175) !default;
244

  
245
$component-active-color:      $white !default;
246
$component-active-bg:         theme-color("primary") !default;
247

  
248
$caret-width:                 .3em !default;
249
$caret-vertical-align:        $caret-width * .85 !default;
250
$caret-spacing:               $caret-width * .85 !default;
251

  
252
$transition-base:             all .2s ease-in-out !default;
253
$transition-fade:             opacity .15s linear !default;
254
$transition-collapse:         height .35s ease !default;
255

  
256
$embed-responsive-aspect-ratios: () !default;
257
// stylelint-disable-next-line scss/dollar-variable-default
258
$embed-responsive-aspect-ratios: join(
259
  (
260
    (21 9),
261
    (16 9),
262
    (4 3),
263
    (1 1),
264
  ),
265
  $embed-responsive-aspect-ratios
266
);
267

  
268
// Typography
269
//
270
// Font, line-height, and color for body text, headings, and more.
271

  
272
// stylelint-disable value-keyword-case
273
$font-family-sans-serif:      -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" !default;
274
$font-family-monospace:       SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
275
$font-family-base:            $font-family-sans-serif !default;
276
// stylelint-enable value-keyword-case
277

  
278
$font-size-base:              1rem !default; // Assumes the browser default, typically `16px`
279
$font-size-lg:                $font-size-base * 1.25 !default;
280
$font-size-sm:                $font-size-base * .875 !default;
281

  
282
$font-weight-lighter:         lighter !default;
283
$font-weight-light:           300 !default;
284
$font-weight-normal:          400 !default;
285
$font-weight-bold:            700 !default;
286
$font-weight-bolder:          bolder !default;
287

  
288
$font-weight-base:            $font-weight-normal !default;
289
$line-height-base:            1.5 !default;
290

  
291
$h1-font-size:                $font-size-base * 2.5 !default;
292
$h2-font-size:                $font-size-base * 2 !default;
293
$h3-font-size:                $font-size-base * 1.75 !default;
294
$h4-font-size:                $font-size-base * 1.5 !default;
295
$h5-font-size:                $font-size-base * 1.25 !default;
296
$h6-font-size:                $font-size-base !default;
297

  
298
$headings-margin-bottom:      $spacer / 2 !default;
299
$headings-font-family:        null !default;
300
$headings-font-weight:        500 !default;
301
$headings-line-height:        1.2 !default;
302
$headings-color:              null !default;
303

  
304
$display1-size:               6rem !default;
305
$display2-size:               5.5rem !default;
306
$display3-size:               4.5rem !default;
307
$display4-size:               3.5rem !default;
308

  
309
$display1-weight:             300 !default;
310
$display2-weight:             300 !default;
311
$display3-weight:             300 !default;
312
$display4-weight:             300 !default;
313
$display-line-height:         $headings-line-height !default;
314

  
315
$lead-font-size:              $font-size-base * 1.25 !default;
316
$lead-font-weight:            300 !default;
317

  
318
$small-font-size:             80% !default;
319

  
320
$text-muted:                  $gray-600 !default;
321

  
322
$blockquote-small-color:      $gray-600 !default;
323
$blockquote-small-font-size:  $small-font-size !default;
324
$blockquote-font-size:        $font-size-base * 1.25 !default;
325

  
326
$hr-border-color:             rgba($black, .1) !default;
327
$hr-border-width:             $border-width !default;
328

  
329
$mark-padding:                .2em !default;
330

  
331
$dt-font-weight:              $font-weight-bold !default;
332

  
333
$kbd-box-shadow:              inset 0 -.1rem 0 rgba($black, .25) !default;
334
$nested-kbd-font-weight:      $font-weight-bold !default;
335

  
336
$list-inline-padding:         .5rem !default;
337

  
338
$mark-bg:                     #fcf8e3 !default;
339

  
340
$hr-margin-y:                 $spacer !default;
341

  
342

  
343
// Tables
344
//
345
// Customizes the `.table` component with basic values, each used across all table variations.
346

  
347
$table-cell-padding:          .75rem !default;
348
$table-cell-padding-sm:       .3rem !default;
349

  
350
$table-color:                 $body-color !default;
351
$table-bg:                    null !default;
352
$table-accent-bg:             rgba($black, .05) !default;
353
$table-hover-color:           $table-color !default;
354
$table-hover-bg:              rgba($black, .075) !default;
355
$table-active-bg:             $table-hover-bg !default;
356

  
357
$table-border-width:          $border-width !default;
358
$table-border-color:          $border-color !default;
359

  
360
$table-head-bg:               $gray-200 !default;
361
$table-head-color:            $gray-700 !default;
362

  
363
$table-dark-color:            $white !default;
364
$table-dark-bg:               $gray-800 !default;
365
$table-dark-accent-bg:        rgba($white, .05) !default;
366
$table-dark-hover-color:      $table-dark-color !default;
367
$table-dark-hover-bg:         rgba($white, .075) !default;
368
$table-dark-border-color:     lighten($table-dark-bg, 7.5%) !default;
369
$table-dark-color:            $white !default;
370

  
371
$table-striped-order:         odd !default;
372

  
373
$table-caption-color:         $text-muted !default;
374

  
375
$table-bg-level:              -9 !default;
376
$table-border-level:          -6 !default;
377

  
378

  
379
// Buttons + Forms
380
//
381
// Shared variables that are reassigned to `$input-` and `$btn-` specific variables.
382

  
383
$input-btn-padding-y:         .375rem !default;
384
$input-btn-padding-x:         .75rem !default;
385
$input-btn-font-family:       null !default;
386
$input-btn-font-size:         $font-size-base !default;
387
$input-btn-line-height:       $line-height-base !default;
388

  
389
$input-btn-focus-width:       .2rem !default;
390
$input-btn-focus-color:       rgba($component-active-bg, .25) !default;
391
$input-btn-focus-box-shadow:  0 0 0 $input-btn-focus-width $input-btn-focus-color !default;
392

  
393
$input-btn-padding-y-sm:      .25rem !default;
394
$input-btn-padding-x-sm:      .5rem !default;
395
$input-btn-font-size-sm:      $font-size-sm !default;
396
$input-btn-line-height-sm:    $line-height-sm !default;
397

  
398
$input-btn-padding-y-lg:      .5rem !default;
399
$input-btn-padding-x-lg:      1rem !default;
400
$input-btn-font-size-lg:      $font-size-lg !default;
401
$input-btn-line-height-lg:    $line-height-lg !default;
402

  
403
$input-btn-border-width:      $border-width !default;
404

  
405

  
406
// Buttons
407
//
408
// For each of Bootstrap's buttons, define text, background, and border color.
409

  
410
$btn-padding-y:               $input-btn-padding-y !default;
411
$btn-padding-x:               $input-btn-padding-x !default;
412
$btn-font-family:             $input-btn-font-family !default;
413
$btn-font-size:               $input-btn-font-size !default;
414
$btn-line-height:             $input-btn-line-height !default;
415

  
416
$btn-padding-y-sm:            $input-btn-padding-y-sm !default;
417
$btn-padding-x-sm:            $input-btn-padding-x-sm !default;
418
$btn-font-size-sm:            $input-btn-font-size-sm !default;
419
$btn-line-height-sm:          $input-btn-line-height-sm !default;
420

  
421
$btn-padding-y-lg:            $input-btn-padding-y-lg !default;
422
$btn-padding-x-lg:            $input-btn-padding-x-lg !default;
423
$btn-font-size-lg:            $input-btn-font-size-lg !default;
424
$btn-line-height-lg:          $input-btn-line-height-lg !default;
425

  
426
$btn-border-width:            $input-btn-border-width !default;
427

  
428
$btn-font-weight:             $font-weight-normal !default;
429
$btn-box-shadow:              inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default;
430
$btn-focus-width:             $input-btn-focus-width !default;
431
$btn-focus-box-shadow:        $input-btn-focus-box-shadow !default;
432
$btn-disabled-opacity:        .65 !default;
433
$btn-active-box-shadow:       inset 0 3px 5px rgba($black, .125) !default;
434

  
435
$btn-link-disabled-color:     $gray-600 !default;
436

  
437
$btn-block-spacing-y:         .5rem !default;
438

  
439
// Allows for customizing button radius independently from global border radius
440
$btn-border-radius:           $border-radius !default;
441
$btn-border-radius-lg:        $border-radius-lg !default;
442
$btn-border-radius-sm:        $border-radius-sm !default;
443

  
444
$btn-transition:              color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
445

  
446

  
447
// Forms
448

  
449
$label-margin-bottom:                   .5rem !default;
450

  
451
$input-padding-y:                       $input-btn-padding-y !default;
452
$input-padding-x:                       $input-btn-padding-x !default;
453
$input-font-family:                     $input-btn-font-family !default;
454
$input-font-size:                       $input-btn-font-size !default;
455
$input-font-weight:                     $font-weight-base !default;
456
$input-line-height:                     $input-btn-line-height !default;
457

  
458
$input-padding-y-sm:                    $input-btn-padding-y-sm !default;
459
$input-padding-x-sm:                    $input-btn-padding-x-sm !default;
460
$input-font-size-sm:                    $input-btn-font-size-sm !default;
461
$input-line-height-sm:                  $input-btn-line-height-sm !default;
462

  
463
$input-padding-y-lg:                    $input-btn-padding-y-lg !default;
464
$input-padding-x-lg:                    $input-btn-padding-x-lg !default;
465
$input-font-size-lg:                    $input-btn-font-size-lg !default;
466
$input-line-height-lg:                  $input-btn-line-height-lg !default;
467

  
468
$input-bg:                              $white !default;
469
$input-disabled-bg:                     $gray-200 !default;
470

  
471
$input-color:                           $gray-700 !default;
472
$input-border-color:                    $gray-400 !default;
473
$input-border-width:                    $input-btn-border-width !default;
474
$input-box-shadow:                      inset 0 1px 1px rgba($black, .075) !default;
475

  
476
$input-border-radius:                   $border-radius !default;
477
$input-border-radius-lg:                $border-radius-lg !default;
478
$input-border-radius-sm:                $border-radius-sm !default;
479

  
480
$input-focus-bg:                        $input-bg !default;
481
$input-focus-border-color:              lighten($component-active-bg, 25%) !default;
482
$input-focus-color:                     $input-color !default;
483
$input-focus-width:                     $input-btn-focus-width !default;
484
$input-focus-box-shadow:                $input-btn-focus-box-shadow !default;
485

  
486
$input-placeholder-color:               $gray-600 !default;
487
$input-plaintext-color:                 $body-color !default;
488

  
489
$input-height-border:                   $input-border-width * 2 !default;
490

  
491
$input-height-inner:                    calc(#{$input-line-height * 1em} + #{$input-padding-y * 2}) !default;
492
$input-height-inner-half:               calc(#{$input-line-height * .5em} + #{$input-padding-y}) !default;
493
$input-height-inner-quarter:            calc(#{$input-line-height * .25em} + #{$input-padding-y / 2}) !default;
494

  
495
$input-height:                          calc(#{$input-line-height * 1em} + #{$input-padding-y * 2} + #{$input-height-border}) !default;
496
$input-height-sm:                       calc(#{$input-line-height-sm * 1em} + #{$input-btn-padding-y-sm * 2} + #{$input-height-border}) !default;
497
$input-height-lg:                       calc(#{$input-line-height-lg * 1em} + #{$input-btn-padding-y-lg * 2} + #{$input-height-border}) !default;
498

  
499
$input-transition:                      border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
500

  
501
$form-text-margin-top:                  .25rem !default;
502

  
503
$form-check-input-gutter:               1.25rem !default;
504
$form-check-input-margin-y:             .3rem !default;
505
$form-check-input-margin-x:             .25rem !default;
506

  
507
$form-check-inline-margin-x:            .75rem !default;
508
$form-check-inline-input-margin-x:      .3125rem !default;
509

  
510
$form-grid-gutter-width:                10px !default;
511
$form-group-margin-bottom:              1rem !default;
512

  
513
$input-group-addon-color:               $input-color !default;
514
$input-group-addon-bg:                  $gray-200 !default;
515
$input-group-addon-border-color:        $input-border-color !default;
516

  
517
$custom-forms-transition:               background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
518

  
519
$custom-control-gutter:                 .5rem !default;
520
$custom-control-spacer-x:               1rem !default;
521

  
522
$custom-control-indicator-size:         1rem !default;
523
$custom-control-indicator-bg:           $input-bg !default;
524

  
525
$custom-control-indicator-bg-size:      50% 50% !default;
526
$custom-control-indicator-box-shadow:   $input-box-shadow !default;
527
$custom-control-indicator-border-color: $gray-500 !default;
528
$custom-control-indicator-border-width: $input-border-width !default;
529

  
530
$custom-control-indicator-disabled-bg:          $input-disabled-bg !default;
531
$custom-control-label-disabled-color:           $gray-600 !default;
532

  
533
$custom-control-indicator-checked-color:        $component-active-color !default;
534
$custom-control-indicator-checked-bg:           $component-active-bg !default;
535
$custom-control-indicator-checked-disabled-bg:  rgba(theme-color("primary"), .5) !default;
536
$custom-control-indicator-checked-box-shadow:   none !default;
537
$custom-control-indicator-checked-border-color: $custom-control-indicator-checked-bg !default;
538

  
539
$custom-control-indicator-focus-box-shadow:     $input-focus-box-shadow !default;
540
$custom-control-indicator-focus-border-color:   $input-focus-border-color !default;
541

  
542
$custom-control-indicator-active-color:         $component-active-color !default;
543
$custom-control-indicator-active-bg:            lighten($component-active-bg, 35%) !default;
544
$custom-control-indicator-active-box-shadow:    none !default;
545
$custom-control-indicator-active-border-color:  $custom-control-indicator-active-bg !default;
546

  
547
$custom-checkbox-indicator-border-radius:       $border-radius !default;
548
$custom-checkbox-indicator-icon-checked:        str-replace(url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='#{$custom-control-indicator-checked-color}' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e"), "#", "%23") !default;
549

  
550
$custom-checkbox-indicator-indeterminate-bg:           $component-active-bg !default;
551
$custom-checkbox-indicator-indeterminate-color:        $custom-control-indicator-checked-color !default;
552
$custom-checkbox-indicator-icon-indeterminate:         str-replace(url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='#{$custom-checkbox-indicator-indeterminate-color}' d='M0 2h4'/%3e%3c/svg%3e"), "#", "%23") !default;
553
$custom-checkbox-indicator-indeterminate-box-shadow:   none !default;
554
$custom-checkbox-indicator-indeterminate-border-color: $custom-checkbox-indicator-indeterminate-bg !default;
555

  
556
$custom-radio-indicator-border-radius:          50% !default;
557
$custom-radio-indicator-icon-checked:           str-replace(url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='#{$custom-control-indicator-checked-color}'/%3e%3c/svg%3e"), "#", "%23") !default;
558

  
559
$custom-switch-width:                           $custom-control-indicator-size * 1.75 !default;
560
$custom-switch-indicator-border-radius:         $custom-control-indicator-size / 2 !default;
561
$custom-switch-indicator-size:                  calc(#{$custom-control-indicator-size} - #{$custom-control-indicator-border-width * 4}) !default;
562

  
563
$custom-select-padding-y:           $input-padding-y !default;
564
$custom-select-padding-x:           $input-padding-x !default;
565
$custom-select-font-family:         $input-font-family !default;
566
$custom-select-font-size:           $input-font-size !default;
567
$custom-select-height:              $input-height !default;
568
$custom-select-indicator-padding:   1rem !default; // Extra padding to account for the presence of the background-image based indicator
569
$custom-select-font-weight:         $input-font-weight !default;
570
$custom-select-line-height:         $input-line-height !default;
571
$custom-select-color:               $input-color !default;
572
$custom-select-disabled-color:      $gray-600 !default;
573
$custom-select-bg:                  $input-bg !default;
574
$custom-select-disabled-bg:         $gray-200 !default;
575
$custom-select-bg-size:             8px 10px !default; // In pixels because image dimensions
576
$custom-select-indicator-color:     $gray-800 !default;
577
$custom-select-indicator:           str-replace(url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='#{$custom-select-indicator-color}' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e"), "#", "%23") !default;
578
$custom-select-background:          $custom-select-indicator no-repeat right $custom-select-padding-x center / $custom-select-bg-size !default; // Used so we can have multiple background elements (e.g., arrow and feedback icon)
579

  
580
$custom-select-feedback-icon-padding-right: calc((1em + #{2 * $custom-select-padding-y}) * 3 / 4 + #{$custom-select-padding-x + $custom-select-indicator-padding}) !default;
581
$custom-select-feedback-icon-position:      center right ($custom-select-padding-x + $custom-select-indicator-padding) !default;
582
$custom-select-feedback-icon-size:          $input-height-inner-half $input-height-inner-half !default;
583

  
584
$custom-select-border-width:        $input-border-width !default;
585
$custom-select-border-color:        $input-border-color !default;
586
$custom-select-border-radius:       $border-radius !default;
587
$custom-select-box-shadow:          inset 0 1px 2px rgba($black, .075) !default;
588

  
589
$custom-select-focus-border-color:  $input-focus-border-color !default;
590
$custom-select-focus-width:         $input-focus-width !default;
591
$custom-select-focus-box-shadow:    0 0 0 $custom-select-focus-width $input-btn-focus-color !default;
592

  
593
$custom-select-padding-y-sm:        $input-padding-y-sm !default;
594
$custom-select-padding-x-sm:        $input-padding-x-sm !default;
595
$custom-select-font-size-sm:        $input-font-size-sm !default;
596
$custom-select-height-sm:           $input-height-sm !default;
597

  
598
$custom-select-padding-y-lg:        $input-padding-y-lg !default;
599
$custom-select-padding-x-lg:        $input-padding-x-lg !default;
600
$custom-select-font-size-lg:        $input-font-size-lg !default;
601
$custom-select-height-lg:           $input-height-lg !default;
602

  
603
$custom-range-track-width:          100% !default;
604
$custom-range-track-height:         .5rem !default;
605
$custom-range-track-cursor:         pointer !default;
606
$custom-range-track-bg:             $gray-300 !default;
607
$custom-range-track-border-radius:  1rem !default;
608
$custom-range-track-box-shadow:     inset 0 .25rem .25rem rgba($black, .1) !default;
609

  
610
$custom-range-thumb-width:                   1rem !default;
611
$custom-range-thumb-height:                  $custom-range-thumb-width !default;
612
$custom-range-thumb-bg:                      $component-active-bg !default;
613
$custom-range-thumb-border:                  0 !default;
614
$custom-range-thumb-border-radius:           1rem !default;
615
$custom-range-thumb-box-shadow:              0 .1rem .25rem rgba($black, .1) !default;
616
$custom-range-thumb-focus-box-shadow:        0 0 0 1px $body-bg, $input-focus-box-shadow !default;
617
$custom-range-thumb-focus-box-shadow-width:  $input-focus-width !default; // For focus box shadow issue in IE/Edge
618
$custom-range-thumb-active-bg:               lighten($component-active-bg, 35%) !default;
619
$custom-range-thumb-disabled-bg:             $gray-500 !default;
620

  
621
$custom-file-height:                $input-height !default;
622
$custom-file-height-inner:          $input-height-inner !default;
623
$custom-file-focus-border-color:    $input-focus-border-color !default;
624
$custom-file-focus-box-shadow:      $input-focus-box-shadow !default;
625
$custom-file-disabled-bg:           $input-disabled-bg !default;
626

  
627
$custom-file-padding-y:             $input-padding-y !default;
628
$custom-file-padding-x:             $input-padding-x !default;
629
$custom-file-line-height:           $input-line-height !default;
630
$custom-file-font-family:           $input-font-family !default;
631
$custom-file-font-weight:           $input-font-weight !default;
632
$custom-file-color:                 $input-color !default;
633
$custom-file-bg:                    $input-bg !default;
634
$custom-file-border-width:          $input-border-width !default;
635
$custom-file-border-color:          $input-border-color !default;
636
$custom-file-border-radius:         $input-border-radius !default;
637
$custom-file-box-shadow:            $input-box-shadow !default;
638
$custom-file-button-color:          $custom-file-color !default;
639
$custom-file-button-bg:             $input-group-addon-bg !default;
640
$custom-file-text: (
641
  en: "Browse"
642
) !default;
643

  
644

  
645
// Form validation
646

  
647
$form-feedback-margin-top:          $form-text-margin-top !default;
648
$form-feedback-font-size:           $small-font-size !default;
649
$form-feedback-valid-color:         theme-color("success") !default;
650
$form-feedback-invalid-color:       theme-color("danger") !default;
651

  
652
$form-feedback-icon-valid-color:    $form-feedback-valid-color !default;
653
$form-feedback-icon-valid:          str-replace(url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='#{$form-feedback-icon-valid-color}' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"), "#", "%23") !default;
654
$form-feedback-icon-invalid-color:  $form-feedback-invalid-color !default;
655
$form-feedback-icon-invalid:        str-replace(url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='#{$form-feedback-icon-invalid-color}' viewBox='-2 -2 7 7'%3e%3cpath stroke='#{$form-feedback-icon-invalid-color}' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E"), "#", "%23") !default;
656

  
657
$form-validation-states: () !default;
658
// stylelint-disable-next-line scss/dollar-variable-default
659
$form-validation-states: map-merge(
660
  (
661
    "valid": (
662
      "color": $form-feedback-valid-color,
663
      "icon": $form-feedback-icon-valid
664
    ),
665
    "invalid": (
666
      "color": $form-feedback-invalid-color,
667
      "icon": $form-feedback-icon-invalid
668
    ),
669
  ),
670
  $form-validation-states
671
);
672

  
673
// Z-index master list
674
//
675
// Warning: Avoid customizing these values. They're used for a bird's eye view
676
// of components dependent on the z-axis and are designed to all work together.
677

  
678
$zindex-dropdown:                   1000 !default;
679
$zindex-sticky:                     1020 !default;
680
$zindex-fixed:                      1030 !default;
681
$zindex-modal-backdrop:             1040 !default;
682
$zindex-modal:                      1050 !default;
683
$zindex-popover:                    1060 !default;
684
$zindex-tooltip:                    1070 !default;
685

  
686

  
687
// Navs
688

  
689
$nav-link-padding-y:                .5rem !default;
690
$nav-link-padding-x:                1rem !default;
691
$nav-link-disabled-color:           $gray-600 !default;
692

  
693
$nav-tabs-border-color:             $gray-300 !default;
694
$nav-tabs-border-width:             $border-width !default;
695
$nav-tabs-border-radius:            $border-radius !default;
696
$nav-tabs-link-hover-border-color:  $gray-200 $gray-200 $nav-tabs-border-color !default;
697
$nav-tabs-link-active-color:        $gray-700 !default;
698
$nav-tabs-link-active-bg:           $body-bg !default;
699
$nav-tabs-link-active-border-color: $gray-300 $gray-300 $nav-tabs-link-active-bg !default;
700

  
701
$nav-pills-border-radius:           $border-radius !default;
702
$nav-pills-link-active-color:       $component-active-color !default;
703
$nav-pills-link-active-bg:          $component-active-bg !default;
704

  
705
$nav-divider-color:                 $gray-200 !default;
706
$nav-divider-margin-y:              $spacer / 2 !default;
707

  
708

  
709
// Navbar
710

  
711
$navbar-padding-y:                  $spacer / 2 !default;
712
$navbar-padding-x:                  $spacer !default;
713

  
714
$navbar-nav-link-padding-x:         .5rem !default;
715

  
716
$navbar-brand-font-size:            $font-size-lg !default;
717
// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link
718
$nav-link-height:                   $font-size-base * $line-height-base + $nav-link-padding-y * 2 !default;
719
$navbar-brand-height:               $navbar-brand-font-size * $line-height-base !default;
720
$navbar-brand-padding-y:            ($nav-link-height - $navbar-brand-height) / 2 !default;
721

  
722
$navbar-toggler-padding-y:          .25rem !default;
723
$navbar-toggler-padding-x:          .75rem !default;
724
$navbar-toggler-font-size:          $font-size-lg !default;
725
$navbar-toggler-border-radius:      $btn-border-radius !default;
726

  
727
$navbar-dark-color:                 rgba($white, .5) !default;
728
$navbar-dark-hover-color:           rgba($white, .75) !default;
729
$navbar-dark-active-color:          $white !default;
730
$navbar-dark-disabled-color:        rgba($white, .25) !default;
731
$navbar-dark-toggler-icon-bg:       str-replace(url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='#{$navbar-dark-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"), "#", "%23") !default;
732
$navbar-dark-toggler-border-color:  rgba($white, .1) !default;
733

  
734
$navbar-light-color:                rgba($black, .5) !default;
735
$navbar-light-hover-color:          rgba($black, .7) !default;
736
$navbar-light-active-color:         rgba($black, .9) !default;
737
$navbar-light-disabled-color:       rgba($black, .3) !default;
738
$navbar-light-toggler-icon-bg:      str-replace(url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='#{$navbar-light-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"), "#", "%23") !default;
739
$navbar-light-toggler-border-color: rgba($black, .1) !default;
740

  
741
$navbar-light-brand-color:                $navbar-light-active-color !default;
742
$navbar-light-brand-hover-color:          $navbar-light-active-color !default;
743
$navbar-dark-brand-color:                 $navbar-dark-active-color !default;
744
$navbar-dark-brand-hover-color:           $navbar-dark-active-color !default;
745

  
746

  
747
// Dropdowns
748
//
749
// Dropdown menu container and contents.
750

  
751
$dropdown-min-width:                10rem !default;
752
$dropdown-padding-y:                .5rem !default;
753
$dropdown-spacer:                   .125rem !default;
754
$dropdown-font-size:                $font-size-base !default;
755
$dropdown-color:                    $body-color !default;
756
$dropdown-bg:                       $white !default;
757
$dropdown-border-color:             rgba($black, .15) !default;
758
$dropdown-border-radius:            $border-radius !default;
759
$dropdown-border-width:             $border-width !default;
760
$dropdown-inner-border-radius:      calc(#{$dropdown-border-radius} - #{$dropdown-border-width}) !default;
761
$dropdown-divider-bg:               $gray-200 !default;
762
$dropdown-divider-margin-y:         $nav-divider-margin-y !default;
763
$dropdown-box-shadow:               0 .5rem 1rem rgba($black, .175) !default;
764

  
765
$dropdown-link-color:               $gray-900 !default;
766
$dropdown-link-hover-color:         darken($gray-900, 5%) !default;
767
$dropdown-link-hover-bg:            $gray-100 !default;
768

  
769
$dropdown-link-active-color:        $component-active-color !default;
770
$dropdown-link-active-bg:           $component-active-bg !default;
771

  
772
$dropdown-link-disabled-color:      $gray-600 !default;
773

  
774
$dropdown-item-padding-y:           .25rem !default;
775
$dropdown-item-padding-x:           1.5rem !default;
776

  
777
$dropdown-header-color:             $gray-600 !default;
778

  
779

  
780
// Pagination
781

  
782
$pagination-padding-y:              .5rem !default;
783
$pagination-padding-x:              .75rem !default;
784
$pagination-padding-y-sm:           .25rem !default;
785
$pagination-padding-x-sm:           .5rem !default;
786
$pagination-padding-y-lg:           .75rem !default;
787
$pagination-padding-x-lg:           1.5rem !default;
788
$pagination-line-height:            1.25 !default;
789

  
790
$pagination-color:                  $link-color !default;
791
$pagination-bg:                     $white !default;
792
$pagination-border-width:           $border-width !default;
793
$pagination-border-color:           $gray-300 !default;
794

  
795
$pagination-focus-box-shadow:       $input-btn-focus-box-shadow !default;
796
$pagination-focus-outline:          0 !default;
797

  
798
$pagination-hover-color:            $link-hover-color !default;
799
$pagination-hover-bg:               $gray-200 !default;
800
$pagination-hover-border-color:     $gray-300 !default;
801

  
802
$pagination-active-color:           $component-active-color !default;
803
$pagination-active-bg:              $component-active-bg !default;
804
$pagination-active-border-color:    $pagination-active-bg !default;
805

  
806
$pagination-disabled-color:         $gray-600 !default;
807
$pagination-disabled-bg:            $white !default;
808
$pagination-disabled-border-color:  $gray-300 !default;
809

  
810

  
811
// Jumbotron
812

  
813
$jumbotron-padding:                 2rem !default;
814
$jumbotron-color:                   null !default;
815
$jumbotron-bg:                      $gray-200 !default;
816

  
817

  
818
// Cards
819

  
820
$card-spacer-y:                     .75rem !default;
821
$card-spacer-x:                     1.25rem !default;
822
$card-border-width:                 $border-width !default;
823
$card-border-radius:                $border-radius !default;
824
$card-border-color:                 rgba($black, .125) !default;
825
$card-inner-border-radius:          calc(#{$card-border-radius} - #{$card-border-width}) !default;
826
$card-cap-bg:                       rgba($black, .03) !default;
827
$card-cap-color:                    null !default;
828
$card-color:                        null !default;
829
$card-bg:                           $white !default;
830

  
831
$card-img-overlay-padding:          1.25rem !default;
832

  
833
$card-group-margin:                 $grid-gutter-width / 2 !default;
834
$card-deck-margin:                  $card-group-margin !default;
835

  
836
$card-columns-count:                3 !default;
837
$card-columns-gap:                  1.25rem !default;
838
$card-columns-margin:               $card-spacer-y !default;
839

  
840

  
841
// Tooltips
842

  
843
$tooltip-font-size:                 $font-size-sm !default;
844
$tooltip-max-width:                 200px !default;
845
$tooltip-color:                     $white !default;
846
$tooltip-bg:                        $black !default;
847
$tooltip-border-radius:             $border-radius !default;
848
$tooltip-opacity:                   .9 !default;
849
$tooltip-padding-y:                 .25rem !default;
850
$tooltip-padding-x:                 .5rem !default;
851
$tooltip-margin:                    0 !default;
852

  
853
$tooltip-arrow-width:               .8rem !default;
854
$tooltip-arrow-height:              .4rem !default;
855
$tooltip-arrow-color:               $tooltip-bg !default;
856

  
857
// Form tooltips must come after regular tooltips
858
$form-feedback-tooltip-padding-y:     $tooltip-padding-y !default;
859
$form-feedback-tooltip-padding-x:     $tooltip-padding-x !default;
860
$form-feedback-tooltip-font-size:     $tooltip-font-size !default;
861
$form-feedback-tooltip-line-height:   $line-height-base !default;
862
$form-feedback-tooltip-opacity:       $tooltip-opacity !default;
863
$form-feedback-tooltip-border-radius: $tooltip-border-radius !default;
864

  
865

  
866
// Popovers
867

  
868
$popover-font-size:                 $font-size-sm !default;
869
$popover-bg:                        $white !default;
870
$popover-max-width:                 276px !default;
871
$popover-border-width:              $border-width !default;
872
$popover-border-color:              rgba($black, .2) !default;
873
$popover-border-radius:             $border-radius-lg !default;
874
$popover-box-shadow:                0 .25rem .5rem rgba($black, .2) !default;
875

  
876
$popover-header-bg:                 darken($popover-bg, 3%) !default;
877
$popover-header-color:              $headings-color !default;
878
$popover-header-padding-y:          .5rem !default;
879
$popover-header-padding-x:          .75rem !default;
880

  
881
$popover-body-color:                $body-color !default;
882
$popover-body-padding-y:            $popover-header-padding-y !default;
883
$popover-body-padding-x:            $popover-header-padding-x !default;
884

  
885
$popover-arrow-width:               1rem !default;
886
$popover-arrow-height:              .5rem !default;
887
$popover-arrow-color:               $popover-bg !default;
888

  
889
$popover-arrow-outer-color:         fade-in($popover-border-color, .05) !default;
890

  
891

  
892
// Toasts
893

  
894
$toast-max-width:                   350px !default;
895
$toast-padding-x:                   .75rem !default;
896
$toast-padding-y:                   .25rem !default;
897
$toast-font-size:                   .875rem !default;
898
$toast-color:                       null !default;
899
$toast-background-color:            rgba($white, .85) !default;
900
$toast-border-width:                1px !default;
901
$toast-border-color:                rgba(0, 0, 0, .1) !default;
902
$toast-border-radius:               .25rem !default;
903
$toast-box-shadow:                  0 .25rem .75rem rgba($black, .1) !default;
904

  
905
$toast-header-color:                $gray-600 !default;
906
$toast-header-background-color:     rgba($white, .85) !default;
907
$toast-header-border-color:         rgba(0, 0, 0, .05) !default;
908

  
909

  
910
// Badges
911

  
912
$badge-font-size:                   75% !default;
913
$badge-font-weight:                 $font-weight-bold !default;
914
$badge-padding-y:                   .25em !default;
915
$badge-padding-x:                   .4em !default;
916
$badge-border-radius:               $border-radius !default;
917

  
918
$badge-transition:                  $btn-transition !default;
919
$badge-focus-width:                 $input-btn-focus-width !default;
920

  
921
$badge-pill-padding-x:              .6em !default;
922
// Use a higher than normal value to ensure completely rounded edges when
923
// customizing padding or font-size on labels.
924
$badge-pill-border-radius:          10rem !default;
925

  
926

  
927
// Modals
928

  
929
// Padding applied to the modal body
930
$modal-inner-padding:               1rem !default;
931

  
932
$modal-dialog-margin:               .5rem !default;
933
$modal-dialog-margin-y-sm-up:       1.75rem !default;
934

  
935
$modal-title-line-height:           $line-height-base !default;
936

  
937
$modal-content-color:               null !default;
938
$modal-content-bg:                  $white !default;
939
$modal-content-border-color:        rgba($black, .2) !default;
940
$modal-content-border-width:        $border-width !default;
941
$modal-content-border-radius:       $border-radius-lg !default;
942
$modal-content-box-shadow-xs:       0 .25rem .5rem rgba($black, .5) !default;
943
$modal-content-box-shadow-sm-up:    0 .5rem 1rem rgba($black, .5) !default;
944

  
945
$modal-backdrop-bg:                 $black !default;
946
$modal-backdrop-opacity:            .5 !default;
947
$modal-header-border-color:         $border-color !default;
948
$modal-footer-border-color:         $modal-header-border-color !default;
949
$modal-header-border-width:         $modal-content-border-width !default;
950
$modal-footer-border-width:         $modal-header-border-width !default;
951
$modal-header-padding-y:            1rem !default;
952
$modal-header-padding-x:            1rem !default;
953
$modal-header-padding:              $modal-header-padding-y $modal-header-padding-x !default; // Keep this for backwards compatibility
954

  
955
$modal-xl:                          1140px !default;
956
$modal-lg:                          800px !default;
957
$modal-md:                          500px !default;
958
$modal-sm:                          300px !default;
959

  
960
$modal-fade-transform:              translate(0, -50px) !default;
961
$modal-show-transform:              none !default;
962
$modal-transition:                  transform .3s ease-out !default;
963

  
964

  
965
// Alerts
966
//
967
// Define alert colors, border radius, and padding.
968

  
969
$alert-padding-y:                   .75rem !default;
970
$alert-padding-x:                   1.25rem !default;
971
$alert-margin-bottom:               1rem !default;
972
$alert-border-radius:               $border-radius !default;
973
$alert-link-font-weight:            $font-weight-bold !default;
974
$alert-border-width:                $border-width !default;
975

  
976
$alert-bg-level:                    -10 !default;
977
$alert-border-level:                -9 !default;
978
$alert-color-level:                 6 !default;
979

  
980

  
981
// Progress bars
982

  
983
$progress-height:                   1rem !default;
984
$progress-font-size:                $font-size-base * .75 !default;
985
$progress-bg:                       $gray-200 !default;
986
$progress-border-radius:            $border-radius !default;
987
$progress-box-shadow:               inset 0 .1rem .1rem rgba($black, .1) !default;
988
$progress-bar-color:                $white !default;
989
$progress-bar-bg:                   theme-color("primary") !default;
990
$progress-bar-animation-timing:     1s linear infinite !default;
991
$progress-bar-transition:           width .6s ease !default;
992

  
993

  
994
// List group
995

  
996
$list-group-color:                  null !default;
997
$list-group-bg:                     $white !default;
998
$list-group-border-color:           rgba($black, .125) !default;
999
$list-group-border-width:           $border-width !default;
1000
$list-group-border-radius:          $border-radius !default;
1001

  
1002
$list-group-item-padding-y:         .75rem !default;
1003
$list-group-item-padding-x:         1.25rem !default;
1004

  
1005
$list-group-hover-bg:               $gray-100 !default;
1006
$list-group-active-color:           $component-active-color !default;
1007
$list-group-active-bg:              $component-active-bg !default;
1008
$list-group-active-border-color:    $list-group-active-bg !default;
1009

  
1010
$list-group-disabled-color:         $gray-600 !default;
1011
$list-group-disabled-bg:            $list-group-bg !default;
1012

  
1013
$list-group-action-color:           $gray-700 !default;
1014
$list-group-action-hover-color:     $list-group-action-color !default;
1015

  
1016
$list-group-action-active-color:    $body-color !default;
1017
$list-group-action-active-bg:       $gray-200 !default;
1018

  
1019

  
1020
// Image thumbnails
1021

  
1022
$thumbnail-padding:                 .25rem !default;
1023
$thumbnail-bg:                      $body-bg !default;
1024
$thumbnail-border-width:            $border-width !default;
1025
$thumbnail-border-color:            $gray-300 !default;
1026
$thumbnail-border-radius:           $border-radius !default;
1027
$thumbnail-box-shadow:              0 1px 2px rgba($black, .075) !default;
1028

  
1029

  
1030
// Figures
1031

  
1032
$figure-caption-font-size:          90% !default;
1033
$figure-caption-color:              $gray-600 !default;
1034

  
1035

  
1036
// Breadcrumbs
1037

  
1038
$breadcrumb-padding-y:              .75rem !default;
1039
$breadcrumb-padding-x:              1rem !default;
1040
$breadcrumb-item-padding:           .5rem !default;
1041

  
1042
$breadcrumb-margin-bottom:          1rem !default;
1043

  
1044
$breadcrumb-bg:                     $gray-200 !default;
1045
$breadcrumb-divider-color:          $gray-600 !default;
1046
$breadcrumb-active-color:           $gray-600 !default;
1047
$breadcrumb-divider:                quote("/") !default;
1048

  
1049
$breadcrumb-border-radius:          $border-radius !default;
1050

  
1051

  
1052
// Carousel
1053

  
1054
$carousel-control-color:             $white !default;
1055
$carousel-control-width:             15% !default;
1056
$carousel-control-opacity:           .5 !default;
1057
$carousel-control-hover-opacity:     .9 !default;
1058
$carousel-control-transition:        opacity .15s ease !default;
1059

  
1060
$carousel-indicator-width:           30px !default;
1061
$carousel-indicator-height:          3px !default;
1062
$carousel-indicator-hit-area-height: 10px !default;
1063
$carousel-indicator-spacer:          3px !default;
1064
$carousel-indicator-active-bg:       $white !default;
1065
$carousel-indicator-transition:      opacity .6s ease !default;
1066

  
1067
$carousel-caption-width:             70% !default;
1068
$carousel-caption-color:             $white !default;
1069

  
1070
$carousel-control-icon-width:        20px !default;
1071

  
1072
$carousel-control-prev-icon-bg:      str-replace(url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e"), "#", "%23") !default;
1073
$carousel-control-next-icon-bg:      str-replace(url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e"), "#", "%23") !default;
1074

  
1075
$carousel-transition-duration:       .6s !default;
1076
$carousel-transition:                transform $carousel-transition-duration ease-in-out !default; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`)
1077

  
1078

  
1079
// Spinners
1080

  
1081
$spinner-width:         2rem !default;
1082
$spinner-height:        $spinner-width !default;
1083
$spinner-border-width:  .25em !default;
1084

  
1085
$spinner-width-sm:        1rem !default;
1086
$spinner-height-sm:       $spinner-width-sm !default;
1087
$spinner-border-width-sm: .2em !default;
1088

  
1089

  
1090
// Close
1091

  
1092
$close-font-size:                   $font-size-base * 1.5 !default;
1093
$close-font-weight:                 $font-weight-bold !default;
1094
$close-color:                       $black !default;
1095
$close-text-shadow:                 0 1px 0 $white !default;
1096

  
1097

  
1098
// Code
1099

  
1100
$code-font-size:                    87.5% !default;
1101
$code-color:                        $pink !default;
1102

  
1103
$kbd-padding-y:                     .2rem !default;
1104
$kbd-padding-x:                     .4rem !default;
1105
$kbd-font-size:                     $code-font-size !default;
1106
$kbd-color:                         $white !default;
1107
$kbd-bg:                            $gray-900 !default;
1108

  
1109
$pre-color:                         $gray-900 !default;
1110
$pre-scrollable-max-height:         340px !default;
1111

  
1112

  
1113
// Utilities
1114

  
1115
$displays: none, inline, inline-block, block, table, table-row, table-cell, flex, inline-flex !default;
1116
$overflows: auto, hidden !default;
1117
$positions: static, relative, absolute, fixed, sticky !default;
1118

  
1119

  
1120
// Printing
1121

  
1122
$print-page-size:                   a3 !default;
1123
$print-body-min-width:              map-get($grid-breakpoints, "lg") !default;
website/public/css/bootstrap-4.4.1/mixins/_breakpoints.scss
1
// Breakpoint viewport sizes and media queries.
2
//
3
// Breakpoints are defined as a map of (name: minimum width), order from small to large:
4
//
5
//    (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)
6
//
7
// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.
8

  
9
// Name of the next breakpoint, or null for the last breakpoint.
10
//
11
//    >> breakpoint-next(sm)
12
//    md
13
//    >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
14
//    md
15
//    >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl))
16
//    md
17
@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {
18
  $n: index($breakpoint-names, $name);
19
  @return if($n != null and $n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);
20
}
21

  
22
// Minimum breakpoint width. Null for the smallest (first) breakpoint.
23
//
24
//    >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
25
//    576px
26
@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {
27
  $min: map-get($breakpoints, $name);
28
  @return if($min != 0, $min, null);
29
}
30

  
31
// Maximum breakpoint width. Null for the largest (last) breakpoint.
32
// The maximum value is calculated as the minimum of the next one less 0.02px
33
// to work around the limitations of `min-` and `max-` prefixes and viewports with fractional widths.
34
// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max
35
// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.
36
// See https://bugs.webkit.org/show_bug.cgi?id=178261
37
//
38
//    >> breakpoint-max(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
39
//    767.98px
40
@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {
41
  $next: breakpoint-next($name, $breakpoints);
42
  @return if($next, breakpoint-min($next, $breakpoints) - .02, null);
43
}
44

  
45
// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.
46
// Useful for making responsive utilities.
47
//
48
//    >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
49
//    ""  (Returns a blank string)
50
//    >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
51
//    "-sm"
52
@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {
53
  @return if(breakpoint-min($name, $breakpoints) == null, "", "-#{$name}");
54
}
55

  
56
// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.
57
// Makes the @content apply to the given breakpoint and wider.
58
@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {
59
  $min: breakpoint-min($name, $breakpoints);
60
  @if $min {
61
    @media (min-width: $min) {
62
      @content;
63
    }
64
  } @else {
65
    @content;
66
  }
67
}
68

  
69
// Media of at most the maximum breakpoint width. No query for the largest breakpoint.
70
// Makes the @content apply to the given breakpoint and narrower.
71
@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {
72
  $max: breakpoint-max($name, $breakpoints);
73
  @if $max {
74
    @media (max-width: $max) {
75
      @content;
76
    }
77
  } @else {
78
    @content;
79
  }
80
}
81

  
82
// Media that spans multiple breakpoint widths.
83
// Makes the @content apply between the min and max breakpoints
84
@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {
85
  $min: breakpoint-min($lower, $breakpoints);
86
  $max: breakpoint-max($upper, $breakpoints);
87

  
88
  @if $min != null and $max != null {
89
    @media (min-width: $min) and (max-width: $max) {
90
      @content;
91
    }
92
  } @else if $max == null {
93
    @include media-breakpoint-up($lower, $breakpoints) {
94
      @content;
95
    }
96
  } @else if $min == null {
97
    @include media-breakpoint-down($upper, $breakpoints) {
98
      @content;
99
    }
100
  }
101
}
102

  
103
// Media between the breakpoint's minimum and maximum widths.
104
// No minimum for the smallest breakpoint, and no maximum for the largest one.
105
// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.
106
@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {
107
  $min: breakpoint-min($name, $breakpoints);
108
  $max: breakpoint-max($name, $breakpoints);
109

  
110
  @if $min != null and $max != null {
111
    @media (min-width: $min) and (max-width: $max) {
112
      @content;
113
    }
114
  } @else if $max == null {
115
    @include media-breakpoint-up($name, $breakpoints) {
116
      @content;
117
    }
118
  } @else if $min == null {
119
    @include media-breakpoint-down($name, $breakpoints) {
120
      @content;
121
    }
122
  }
123
}
website/public/css/bootstrap-4.5.3/_functions.scss
1
// Bootstrap functions
2
//
3
// Utility mixins and functions for evaluating source code across our variables, maps, and mixins.
4

  
5
// Ascending
6
// Used to evaluate Sass maps like our grid breakpoints.
7
@mixin _assert-ascending($map, $map-name) {
8
  $prev-key: null;
9
  $prev-num: null;
10
  @each $key, $num in $map {
11
    @if $prev-num == null or unit($num) == "%" or unit($prev-num) == "%" {
12
      // Do nothing
13
    } @else if not comparable($prev-num, $num) {
14
      @warn "Potentially invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} whose unit makes it incomparable to #{$prev-num}, the value of the previous key '#{$prev-key}' !";
15
    } @else if $prev-num >= $num {
16
      @warn "Invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} which isn't greater than #{$prev-num}, the value of the previous key '#{$prev-key}' !";
17
    }
18
    $prev-key: $key;
19
    $prev-num: $num;
20
  }
21
}
22

  
23
// Starts at zero
24
// Used to ensure the min-width of the lowest breakpoint starts at 0.
25
@mixin _assert-starts-at-zero($map, $map-name: "$grid-breakpoints") {
26
  @if length($map) > 0 {
27
    $values: map-values($map);
28
    $first-value: nth($values, 1);
29
    @if $first-value != 0 {
30
      @warn "First breakpoint in #{$map-name} must start at 0, but starts at #{$first-value}.";
31
    }
32
  }
33
}
34

  
35
// Replace `$search` with `$replace` in `$string`
36
// Used on our SVG icon backgrounds for custom forms.
37
//
38
// @author Hugo Giraudel
39
// @param {String} $string - Initial string
40
// @param {String} $search - Substring to replace
41
// @param {String} $replace ('') - New value
42
// @return {String} - Updated string
43
@function str-replace($string, $search, $replace: "") {
44
  $index: str-index($string, $search);
45

  
46
  @if $index {
47
    @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
48
  }
49

  
50
  @return $string;
51
}
52

  
53
// See https://codepen.io/kevinweber/pen/dXWoRw
54
//
55
// Requires the use of quotes around data URIs.
56

  
57
@function escape-svg($string) {
58
  @if str-index($string, "data:image/svg+xml") {
59
    @each $char, $encoded in $escaped-characters {
60
      // Do not escape the url brackets
61
      @if str-index($string, "url(") == 1 {
62
        $string: url("#{str-replace(str-slice($string, 6, -3), $char, $encoded)}");
63
      } @else {
64
        $string: str-replace($string, $char, $encoded);
65
      }
66
    }
67
  }
68

  
69
  @return $string;
70
}
71

  
72
// Color contrast
73
@function color-yiq($color, $dark: $yiq-text-dark, $light: $yiq-text-light) {
74
  $r: red($color);
75
  $g: green($color);
76
  $b: blue($color);
77

  
78
  $yiq: (($r * 299) + ($g * 587) + ($b * 114)) / 1000;
79

  
80
  @if ($yiq >= $yiq-contrasted-threshold) {
81
    @return $dark;
82
  } @else {
83
    @return $light;
84
  }
85
}
86

  
87
// Retrieve color Sass maps
88
@function color($key: "blue") {
89
  @return map-get($colors, $key);
90
}
91

  
92
@function theme-color($key: "primary") {
93
  @return map-get($theme-colors, $key);
94
}
95

  
96
@function gray($key: "100") {
97
  @return map-get($grays, $key);
98
}
99

  
100
// Request a theme color level
101
@function theme-color-level($color-name: "primary", $level: 0) {
102
  $color: theme-color($color-name);
103
  $color-base: if($level > 0, $black, $white);
104
  $level: abs($level);
105

  
106
  @return mix($color-base, $color, $level * $theme-color-interval);
107
}
108

  
109
// Return valid calc
110
@function add($value1, $value2, $return-calc: true) {
111
  @if $value1 == null {
112
    @return $value2;
113
  }
114

  
115
  @if $value2 == null {
116
    @return $value1;
117
  }
118

  
119
  @if type-of($value1) == number and type-of($value2) == number and comparable($value1, $value2) {
120
    @return $value1 + $value2;
121
  }
122

  
123
  @return if($return-calc == true, calc(#{$value1} + #{$value2}), $value1 + unquote(" + ") + $value2);
124
}
125

  
126
@function subtract($value1, $value2, $return-calc: true) {
127
  @if $value1 == null and $value2 == null {
128
    @return null;
129
  }
130

  
131
  @if $value1 == null {
132
    @return -$value2;
133
  }
134

  
135
  @if $value2 == null {
136
    @return $value1;
137
  }
138

  
139
  @if type-of($value1) == number and type-of($value2) == number and comparable($value1, $value2) {
... Rozdílový soubor je zkrácen, protože jeho délka přesahuje max. limit.

Také k dispozici: Unified diff