_variables.scss 19.3 KB
Newer Older
C
codecalm 已提交
1 2
$variable-prefix: "tblr-" !default;

C
cleanup  
codecalm 已提交
3 4 5 6 7 8 9
// BASE CONFIG
$enable-social-colors: true !default;
$enable-extra-colors: true !default;
$enable-gradients: false !default;
$enable-navbar-vertical: true !default;
$enable-dark-mode: true !default;
$enable-negative-margins: false !default;
C
codecalm 已提交
10
$enable-rfs: false !default;
C
codecalm 已提交
11

C
cleanup  
codecalm 已提交
12
// ASSETS BASE
13
$assets-base: ".." !default;
C
codecalm 已提交
14

C
chomik 已提交
15
// FONTS
C
codecalm 已提交
16
$google-font: 'Inter' !default;
C
codecalm 已提交
17
$google-font-monospaced: false !default;
18

C
cleanup  
codecalm 已提交
19
$font-family-sans-serif: $google-font, -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif !default;
C
codecalm 已提交
20
$font-family-monospace: $google-font-monospaced, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
C
chomik 已提交
21 22 23
$font-family-serif: "Georgia", "Times New Roman", times, serif !default;

// EXTERNAL FONTS
24
$icon-fonts: () !default;
C
chomik 已提交
25

C
codecalm 已提交
26 27
//Icons
$icon-stroke-width: 1.5 !default;
C
codecalm 已提交
28
$icon-size: 1.25rem !default;
C
codecalm 已提交
29

30
//Fonts
C
codecalm 已提交
31
$font-size-base: .875rem !default;
C
codecalm 已提交
32 33
$body-letter-spacing: 0 !default;

C
codecalm 已提交
34
$font-weight-light: 300 !default;
C
codecalm 已提交
35
$font-weight-normal: 400 !default;
C
codecalm 已提交
36
$font-weight-medium: 500 !default;
C
codecalm 已提交
37
$font-weight-bold: 600 !default;
38

39 40 41
$line-height-base: divide(1.25rem, $font-size-base) !default;
$line-height-sm: divide(1rem, $font-size-base) !default;
$line-height-lg: divide(1.5rem, $font-size-base) !default;
42

43 44
$h1-font-size: divide(24rem, 16) !default;
$h1-line-height: divide(2rem, $h1-font-size) !default;
C
codecalm 已提交
45

46 47
$h2-font-size: divide(20rem, 16) !default;
$h2-line-height: divide(1.75rem, $h2-font-size) !default;
C
codecalm 已提交
48

49 50
$h3-font-size: divide(16rem, 16) !default;
$h3-line-height: divide(1.5rem, $h3-font-size) !default;
C
codecalm 已提交
51 52

$h4-font-size: $font-size-base !default;
53
$h4-line-height: divide(1.25rem, $h4-font-size) !default;
C
codecalm 已提交
54

55 56
$h5-font-size: divide(12rem, 16) !default;
$h5-line-height: divide(1rem, $h5-font-size) !default;
C
codecalm 已提交
57

58 59
$h6-font-size: divide(10rem, 16) !default;
$h6-line-height: divide(1rem, $h6-font-size) !default;
C
codecalm 已提交
60

61 62
$small-font-size: percentage(divide($h5-font-size, $font-size-base)) !default;

C
codecalm 已提交
63 64 65 66 67 68 69 70 71
$display-font-sizes: (
  1: 5rem,
  2: 4.5rem,
  3: 4rem,
  4: 3.5rem,
  5: 3rem,
  6: 2.5rem
) !default;

C
codecalm 已提交
72 73 74 75 76
$lead-font-size: $font-size-base !default;
$lead-font-weight: $font-weight-normal !default;

$blockquote-font-size: $font-size-base !default;

C
chomik 已提交
77
// COLORS
C
codecalm 已提交
78
$min-contrast-ratio: 1.5 !default;
C
codecalm 已提交
79
$text-muted-opacity: .7 !default;
C
codecalm 已提交
80
$text-muted-light-opacity: .4 !default;
C
codecalm 已提交
81
$text-muted-dark-opacity: .8 !default;
C
codecalm 已提交
82

C
codecalm 已提交
83
$border-opacity: .16 !default;
P
Paweł Kuna 已提交
84
$border-light-opacity: .08 !default;
C
codecalm 已提交
85
$border-dark-opacity: .24 !default;
P
Paweł Kuna 已提交
86
$border-active-opacity: .48 !default;
C
codecalm 已提交
87

C
codecalm 已提交
88
$gray-50: #fafbfc !default;
C
codecalm 已提交
89 90 91 92 93 94 95 96 97 98 99 100
$gray-100: #f1f5f9 !default;
$gray-200: #e2e8f0 !default;
$gray-300: #cbd5e1 !default;
$gray-400: #94a3b8 !default;
$gray-500: #64748b !default;
$gray-600: #475569 !default;
$gray-700: #334155 !default;
$gray-800: #1e293b !default;
$gray-900: #0f172a !default;

$light: $gray-50 !default;
$dark: $gray-800 !default;
C
codecalm 已提交
101 102

$body-bg: $light !default;
C
codecalm 已提交
103
$body-color: $dark !default;
C
codecalm 已提交
104

C
codecalm 已提交
105 106 107
$color-contrast-dark: $dark !default;
$color-contrast-light: $light !default;

C
chomik 已提交
108
$blue: #206bc4 !default;
C
codecalm 已提交
109
$azure: #4299e1 !default;
C
codecalm 已提交
110 111 112 113 114 115 116 117 118
$indigo: #4263eb !default;
$purple: #ae3ec9 !default;
$pink: #d6336c !default;
$red: #d63939 !default;
$orange: #f76707 !default;
$yellow: #f59f00 !default;
$lime: #74b816 !default;
$green: #2fb344 !default;
$teal: #0ca678 !default;
C
chomik 已提交
119
$cyan: #17a2b8 !default;
120 121
$black: #000000 !default;
$white: #ffffff !default;
C
chomik 已提交
122

C
codecalm 已提交
123 124 125
$text-muted: mix($body-color, #ffffff, percentage($text-muted-opacity)) !default;
$text-muted-light: mix($body-color, #ffffff, percentage($text-muted-light-opacity)) !default;
$text-muted-dark: mix($body-color, #ffffff, percentage($text-muted-dark-opacity)) !default;
C
codecalm 已提交
126

C
codecalm 已提交
127
$border-color: mix($text-muted, #ffffff, percentage($border-opacity)) !default;
C
codecalm 已提交
128 129
$border-color-transparent: rgba($text-muted, $border-opacity) !default;

P
Paweł Kuna 已提交
130 131 132
$border-color-light: mix($text-muted, #ffffff, percentage($border-light-opacity)) !default;
$border-color-light-transparent: rgba($text-muted, $border-light-opacity) !default;

C
codecalm 已提交
133
$border-color-dark: mix($text-muted, #ffffff, percentage($border-dark-opacity)) !default;
C
codecalm 已提交
134
$border-color-dark-transparent: rgba($text-muted, $border-dark-opacity) !default;
C
chomik 已提交
135

P
Paweł Kuna 已提交
136 137 138
$border-color-active: mix($text-muted, #ffffff, percentage($border-active-opacity)) !default;
$border-color-active-transparent: rgba($text-muted, $border-active-opacity) !default;

C
codecalm 已提交
139
$active-bg: rgba($blue, .06) !default;
C
codecalm 已提交
140
$hover-bg: rgba($text-muted, .06) !default;
141

C
codecalm 已提交
142
$primary: $blue !default;
C
codecalm 已提交
143
$secondary: $text-muted !default;
C
codecalm 已提交
144
$success: $green !default;
C
codecalm 已提交
145
$info: $azure !default;
C
codecalm 已提交
146
$warning: $orange !default;
C
codecalm 已提交
147
$danger: $red !default;
C
chomik 已提交
148

C
codecalm 已提交
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
$theme-colors: (
  "primary": $primary,
  "secondary": $secondary,
  "success": $success,
  "info": $info,
  "warning": $warning,
  "danger": $danger,
  "light": $light,
  "dark":  $dark,
  "muted": $text-muted
) !default;

$extra-colors: (
  "blue": $blue,
  "azure": $azure,
  "indigo": $indigo,
  "purple": $purple,
  "pink": $pink,
  "red": $red,
  "orange": $orange,
  "yellow": $yellow,
  "lime": $lime,
  "green": $green,
  "teal": $teal,
  "cyan": $cyan,
) !default;
C
codecalm 已提交
175

C
chomik 已提交
176 177 178
$social-colors: (
  "facebook": #3b5998,
  "twitter": #1da1f2,
C
codecalm 已提交
179
  "linkedin": #0a66c2,
C
chomik 已提交
180
  "google": #dc4e41,
181
  "youtube": #ff0000,
C
chomik 已提交
182 183 184 185 186 187 188 189 190
  "vimeo": #1ab7ea,
  "dribbble": #ea4c89,
  "github": #181717,
  "instagram": #e4405f,
  "pinterest": #bd081c,
  "vk": #6383a8,
  "rss": #ffa500,
  "flickr": #0063dc,
  "bitbucket": #0052cc,
191
  "tabler": #206bc4
C
chomik 已提交
192 193
) !default;

C
codecalm 已提交
194
// Dark mode
C
codecalm 已提交
195 196
$dark-mode-darken: darken($dark, 2%) !default;
$dark-mode-lighten: lighten($dark, 2%) !default;
P
Paweł Kuna 已提交
197 198
$dark-mode-border-color: lighten($dark, 8%) !default;
$dark-mode-border-color-light: lighten($dark, 4%) !default;
C
codecalm 已提交
199 200
$dark-mode-text: $light;

C
codecalm 已提交
201 202 203
// Borders
$border-width: 1px !default;
$border-width-wide: 2px !default;
C
codecalm 已提交
204 205 206 207

$border-radius-sm: 2px !default;
$border-radius: 4px !default;
$border-radius-lg: 8px !default;
208
$border-radius-pill: 100rem !default;
C
codecalm 已提交
209

C
codecalm 已提交
210 211 212 213 214
// Code
$code-color: $primary !default;
$code-font-size: $small-font-size !default;
$code-line-height: 1.25rem !default;

C
codecalm 已提交
215 216
// Avatars
$avatar-size: 2.5rem !default;
C
chomik 已提交
217
$avatar-sizes: (
C
codecalm 已提交
218 219
  "xs": 1.25rem,
  "sm": 2rem,
C
codecalm 已提交
220 221
  "md": 3.75rem,
  "lg": 5rem,
C
codecalm 已提交
222 223
  "xl": 7rem,
  "2xl": 11rem,
C
chomik 已提交
224
) !default;
C
codecalm 已提交
225 226
$avatar-border-radius: $border-radius !default;
$avatar-font-size: $h4-font-size;
C
codecalm 已提交
227

C
codecalm 已提交
228
$link-decoration: none !default;
C
codecalm 已提交
229
$link-hover-decoration: underline !default;
C
codecalm 已提交
230

231
//Typography
C
codecalm 已提交
232
$headings-font-weight: $font-weight-bold !default;
C
chomik 已提交
233

C
codecalm 已提交
234
$hr-opacity: $border-opacity !default;
C
codecalm 已提交
235
$hr-margin-y: 2rem !default;
C
codecalm 已提交
236

C
codecalm 已提交
237 238
$caret-spacing: .4em !default;

239
//Sizing
C
codecalm 已提交
240 241 242
$grid-gutter-width: 1rem !default;
$container-padding-x: 1.5rem !default;

C
chomik 已提交
243 244
$spacer: 1rem !default;
$spacers: (
C
codecalm 已提交
245
  0: 0,
246 247
  1: $spacer * .25,
  2: $spacer * .5,
C
codecalm 已提交
248
  3: $spacer,
C
codecalm 已提交
249 250
  4: $spacer * 2,
  5: $spacer * 4,
C
chomik 已提交
251
) !default;
C
chomik 已提交
252

C
cleanup  
codecalm 已提交
253 254
$negative-spacers: if($enable-negative-margins, negativify-map($spacers), null) !default;

C
chomik 已提交
255 256 257 258 259 260
$size-spacers: (
  auto: auto,
  px: 1px,
  full: 100%
) !default;

C
chomik 已提交
261

C
codecalm 已提交
262
$size-values: map-merge($spacers, (
C
chomik 已提交
263 264 265 266 267
  25: 25%,
  50: 50%,
  75: 75%,
  100: 100%,
  auto: auto
C
codecalm 已提交
268
)) !default;
C
chomik 已提交
269

C
chomik 已提交
270

C
codecalm 已提交
271
$container-variations: (
C
codecalm 已提交
272
  tight: 30rem,
C
codecalm 已提交
273
  narrow: 45rem,
C
codecalm 已提交
274
) !default;
C
chomik 已提交
275

C
codecalm 已提交
276 277
$content-padding-y: 1.25rem !default;

278
// Acpect ratios
C
codecalm 已提交
279 280 281 282 283 284 285 286 287 288
$aspect-ratios: (
  "1x1": 100%,
  "4x3": calc(3 / 4 * 100%),
  "3x4": calc(4 / 3 * 100%),
  "16x9": calc(9 / 16 * 100%),
  "9x16": calc(16 / 9 * 100%),
  "21x9": calc(9 / 21 * 100%),
  "9x21": calc(21 / 9 * 100%),
) !default;

P
Paweł Kuna 已提交
289 290 291
// Shadows
$shadow: rgba($dark, .04) 0 2px 4px 0 !default;

292 293 294 295
// Transitions
$transition-time: .3s !default;

// Overlay
C
codecalm 已提交
296 297
$overlay-gradient: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .6) 100%) !default;

C
codecalm 已提交
298
//accordion
P
Paweł Kuna 已提交
299
$accordion-bg: transparent !default;
C
codecalm 已提交
300 301 302
$accordion-border-color: $border-color-transparent !default;
$accordion-icon-width: 1rem !default;

P
Paweł Kuna 已提交
303
$accordion-button-bg: transparent !default;
C
codecalm 已提交
304 305 306
$accordion-button-active-bg: transparent !default;
$accordion-button-active-color: inherit !default;
$accordion-button-focus-border-color: $accordion-border-color !default;
C
codecalm 已提交
307

A
Anton 已提交
308
//alerts
C
codecalm 已提交
309
$alert-padding-x: 1rem !default;
C
codecalm 已提交
310
$alert-padding-y: 1rem !default;
C
codecalm 已提交
311
$alert-link-font-weight: $font-weight-bold !default;
A
Anton 已提交
312

C
codecalm 已提交
313 314 315
$alert-border-width: 1px !default;
$alert-border-color: $border-color-transparent !default;
$alert-shadow: rgba($dark, .04) 0 2px 4px 0 !default;
C
codecalm 已提交
316

317
//breadcrumb
C
codecalm 已提交
318 319 320
$breadcrumb-divider-color: $text-muted !default;
$breadcrumb-active-color: inherit !default;

321
$breadcrumb-variants: (
C
codecalm 已提交
322 323 324
  dots: "·",
  arrows: "›",
  bullets: "\02022",
325 326 327
) !default;

//badges
C
codecalm 已提交
328 329
$badge-font-size: $code-font-size !default;
$badge-line-height: $code-line-height !default;
C
codecalm 已提交
330
$badge-font-weight: $font-weight-medium !default;
331 332
$badge-padding-y: .25em !default;
$badge-padding-x: .5em !default;
C
codecalm 已提交
333
$badge-empty-size: .5rem !default;
334 335

//buttons
C
codecalm 已提交
336
$input-btn-line-height: $line-height-base !default;
C
codecalm 已提交
337
$input-btn-font-size: $font-size-base !default;
C
codecalm 已提交
338
$input-btn-padding-y: .5rem - .0625rem !default;
339

C
codecalm 已提交
340 341 342
$input-btn-font-size-sm: $h5-font-size !default;
$input-btn-padding-x-sm: .5rem !default;
$input-btn-padding-y-sm: .125rem !default;
343

C
codecalm 已提交
344 345 346
$input-btn-font-size-lg: $h2-font-size !default;
$input-btn-padding-x-lg: 1.5rem !default;
$input-btn-padding-y-lg: .5rem !default;
347

C
codecalm 已提交
348
$input-btn-focus-width: .25rem !default;
C
codecalm 已提交
349

350 351 352
$input-height: null !default;
$input-height-sm: null !default;
$input-height-lg: null !default;
C
codecalm 已提交
353 354
$input-color: inherit !default;
$input-focus-color: inherit !default;
355

C
codecalm 已提交
356
//buttons
357
$btn-padding-x: 1rem !default;
C
codecalm 已提交
358
$btn-font-weight: $font-weight-medium !default;
C
codecalm 已提交
359
$btn-border-radius: $border-radius !default;
360

C
codecalm 已提交
361
//cards
C
codecalm 已提交
362 363
$card-title-spacer-y: 1.25rem !default;

E
Enrico Dias 已提交
364
$card-border-width: $border-width !default;
C
codecalm 已提交
365
$card-border-color: $border-color-transparent !default;
C
codecalm 已提交
366 367
$card-border-radius: $border-radius !default;

C
codecalm 已提交
368 369
$card-spacer-x: 1.25rem !default;
$card-spacer-y: 1rem !default;
C
codecalm 已提交
370

C
codecalm 已提交
371 372 373 374
$card-cap-bg: $gray-50 !default;
$card-cap-color: $text-muted !default;
$card-cap-padding-x: $card-spacer-x !default;
$card-cap-padding-y: $card-spacer-y !default;
C
codecalm 已提交
375

C
codecalm 已提交
376
$card-status-size: $border-width-wide !default;
C
codecalm 已提交
377
$card-group-margin: 1.5rem !default;
C
codecalm 已提交
378

P
Paweł Kuna 已提交
379
$card-shadow: $shadow !default;
380
$card-shadow-hover: rgba($dark, .16) 0 2px 16px 0 !default;
C
codecalm 已提交
381

C
codecalm 已提交
382
$cards-grid-gap: 1rem !default;
C
codecalm 已提交
383 384
$cards-grid-breakpoint: lg !default;

C
codecalm 已提交
385 386 387 388 389 390 391
//carousel
$carousel-control-color: $white !default;
$carousel-control-icon-width: 1.5rem !default;
$carousel-control-prev-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='#{$carousel-control-color}' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='15 18 9 12 15 6'></polyline></svg>") !default;
$carousel-control-next-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='#{$carousel-control-color}' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='9 18 15 12 9 6'></polyline></svg>") !default;


C
chomik 已提交
392
//close
C
codecalm 已提交
393
$btn-close-width: .75rem !default;
C
codecalm 已提交
394
$btn-close-opacity: .3 !default;
C
chomik 已提交
395

C
codecalm 已提交
396
//dropdown
C
codecalm 已提交
397 398
$dropdown-item-padding-x: .75rem !default;
$dropdown-item-padding-y: .5rem !default;
399
$dropdown-font-size: $font-size-base !default;
C
codecalm 已提交
400 401
$dropdown-border-color: $border-color-transparent !default;
$dropdown-divider-bg: $dropdown-border-color !default;
C
codecalm 已提交
402 403
$dropdown-padding-y: .25rem !default;
$dropdown-link-color: inherit !default;
404 405
$dropdown-link-hover-bg: $hover-bg !default;
$dropdown-link-hover-color: inherit !default;
C
codecalm 已提交
406
$dropdown-spacer: 1px !default;
407 408
$dropdown-min-width: 11rem !default;
$dropdown-max-width: 25rem !default;
409

C
codecalm 已提交
410
$dropdown-scrollable-height: 13rem !default;
C
codecalm 已提交
411

C
codecalm 已提交
412 413 414
$dropdown-link-active-color: $primary !default;
$dropdown-link-active-bg: $active-bg !default;

415

C
codecalm 已提交
416 417 418
//loader
$loader-size: 2.5rem !default;

419
//lists
C
codecalm 已提交
420 421 422 423 424
$list-group-header-bg: $light !default;

$list-group-border-color: $border-color !default;
$list-group-item-padding-y: $card-cap-padding-y !default;
$list-group-item-padding-x: $card-cap-padding-x !default;
425

C
codecalm 已提交
426 427 428
//modals
$modal-backdrop-opacity: .24 !default;
$modal-backdrop-bg: $dark !default;
C
codecalm 已提交
429
$modal-backdrop-blur: 4px !default;
C
codecalm 已提交
430 431 432

$modal-fade-transform: translate(0, -1rem) !default;

C
codecalm 已提交
433
$modal-content-border-color: transparent !default;
C
modals  
codecalm 已提交
434
$modal-content-bg: $gray-50 !default;
C
codecalm 已提交
435 436
$modal-content-border-radius: $border-radius !default;

C
modals  
codecalm 已提交
437 438 439
$modal-header-padding: 1.5rem !default;
$modal-header-height: 3.5rem !default;
$modal-header-border-width: 1px !default;
C
codecalm 已提交
440
$modal-header-border-color: $border-color !default;
C
modals  
codecalm 已提交
441
$modal-header-bg: $white !default;
C
codecalm 已提交
442
$modal-inner-padding: 1.5rem !default;
C
codecalm 已提交
443
$modal-footer-border-width: 0 !default;
C
modals  
codecalm 已提交
444
$modal-footer-margin-between: .75rem !default;
C
codecalm 已提交
445

C
codecalm 已提交
446 447
$modal-status-size: $border-width-wide !default;

C
codecalm 已提交
448
$modal-xl: 1140px !default;
C
modals  
codecalm 已提交
449
$modal-lg: 720px !default;
C
codecalm 已提交
450
$modal-md: 540px !default;
C
codecalm 已提交
451
$modal-sm: 380px !default;
C
codecalm 已提交
452

C
codecalm 已提交
453
//nav
C
codecalm 已提交
454 455
$nav-link-color: inherit !default;
$nav-link-padding-y: .5rem !default;
C
codecalm 已提交
456 457
$nav-link-padding-x: .75rem !default;

C
codecalm 已提交
458 459 460
$nav-pills-link-active-color: $primary !default;
$nav-pills-link-active-bg: $active-bg !default;

C
codecalm 已提交
461 462 463 464 465 466 467
$nav-bordered-border-color: $border-color !default;
$nav-bordered-border-width: $border-width !default;
$nav-bordered-link-active-color: $primary !default;
$nav-bordered-link-active-border-color: $primary !default;
$nav-bordered-link-active-border-width: 2 * $border-width !default;
$nav-bordered-margin-x: 1.25rem !default;

C
codecalm 已提交
468

469
//navbar
C
codecalm 已提交
470
$navbar-height: 3.5rem !default;
C
codecalm 已提交
471 472
$navbar-padding-y: .25rem !default;

C
codecalm 已提交
473
$navbar-light-color: rgba($body-color, $text-muted-opacity) !default;
C
codecalm 已提交
474
$navbar-light-brand-color: $body-color !default;
C
codecalm 已提交
475
$navbar-light-border-color: $border-color-transparent !default;
C
codecalm 已提交
476 477
$navbar-light-active-color: $body-color !default;
$navbar-light-disabled-color: rgba($body-color, .3) !default;
C
codecalm 已提交
478

C
codecalm 已提交
479
$navbar-dark-color: rgba($white, $text-muted-opacity) !default;
C
codecalm 已提交
480
$navbar-dark-brand-color: $white !default;
C
codecalm 已提交
481
$navbar-dark-border-color: $border-color-transparent !default;
C
codecalm 已提交
482 483
$navbar-dark-active-color: $white !default;
$navbar-dark-disabled-color: rgba($white, .3) !default;
C
codecalm 已提交
484

C
codecalm 已提交
485

C
codecalm 已提交
486
$navbar-brand-padding-y: $nav-link-padding-y !default;
C
codecalm 已提交
487 488
$navbar-brand-image-height: 2rem !default;
$navbar-brand-margin-right: 0 !default;
C
codecalm 已提交
489
$navbar-brand-font-size: $h3-font-size !default;
C
codecalm 已提交
490
$navbar-brand-font-weight: $font-weight-bold !default;
C
codecalm 已提交
491

C
codecalm 已提交
492
$navbar-toggler-font-size: 1rem !default;
C
codecalm 已提交
493 494
$navbar-toggler-padding-x: 0 !default;
$navbar-toggler-padding-y: 0 !default;
C
codecalm 已提交
495
$navbar-toggler-animation-time: .2s !default;
C
codecalm 已提交
496
$navbar-toggler-focus-width: 0 !default;
C
codecalm 已提交
497

C
codecalm 已提交
498
$navbar-nav-link-padding-x: $nav-link-padding-x !default;
C
codecalm 已提交
499

500 501
$navbar-overlap-height: 9rem !default;

502 503
//sidebar
$sidebar-width: 15rem !default;
C
codecalm 已提交
504

C
codecalm 已提交
505 506 507
//popover
$popover-border-color: $border-color !default;

508
//footer
C
codecalm 已提交
509
$footer-padding-y: 2rem !default;
510 511 512 513
$footer-bg: $white !default;
$footer-border-color: $border-color !default;
$footer-border-color: $border-color !default;

C
codecalm 已提交
514

C
chomik 已提交
515 516 517 518 519
//pagination
$pagination-border-width: 0 !default;
$pagination-padding-y: .25rem !default;
$pagination-padding-x: .25rem !default;
$pagination-color: $text-muted !default;
C
chomik 已提交
520 521
$pagination-bg: transparent !default;
$pagination-disabled-bg: transparent !default;
C
codecalm 已提交
522
$pagination-disabled-color: rgba($text-muted, .5) !default;
C
chomik 已提交
523

P
Paweł Kuna 已提交
524 525
//statuses
$status-dot-size: .5rem !default;
C
chomik 已提交
526

C
chomik 已提交
527 528 529 530
//steps
$steps-border-width: 2px !default;
$steps-color-inactive: #f3f5f5 !default;

C
chomik 已提交
531 532 533
//spinner
$spinner-width: 1.5rem !default;
$spinner-height: 1.5rem !default;
C
codecalm 已提交
534 535
$spinner-width-sm: 1rem !default;
$spinner-height-sm: 1rem !default;
C
chomik 已提交
536
$spinner-border-width: 2px !default;
C
codecalm 已提交
537
$spinner-border-width-sm: 1px !default;
C
chomik 已提交
538

539
//tables
C
codecalm 已提交
540
$table-color: inherit !default;
C
codecalm 已提交
541 542
$table-border-color: $border-color-transparent !default;
$table-head-border-color: $border-color-transparent !default;
C
codecalm 已提交
543 544
$table-head-padding-y: .5rem !default;
$table-head-color: $text-muted !default;
P
Paweł Kuna 已提交
545
$table-head-bg: var(--#{$variable-prefix}border-color-light) !default;
C
codecalm 已提交
546
$table-striped-order: even !default;
P
Paweł Kuna 已提交
547
$table-striped-bg: var(--#{$variable-prefix}border-color-light) !default;
C
codecalm 已提交
548
$table-group-separator-color: $border-color-transparent !default;
549

C
chomik 已提交
550 551 552 553
//toasts
$toast-border-color: $border-color !default;
$toast-header-color: $text-muted !default;

554
//progress
C
codecalm 已提交
555
$progress-bg: $border-color !default;
C
codecalm 已提交
556
$progress-height: .5rem !default;
557

C
codecalm 已提交
558 559 560
//ribbons
$ribbon-margin: .25rem !default;

C
codecalm 已提交
561

C
chomik 已提交
562
$list-group-border-color: $border-color !default;
C
chomik 已提交
563
$list-group-action-color: inherit !default;
C
codecalm 已提交
564
$list-group-bg: inherit !default;
C
chomik 已提交
565

C
codecalm 已提交
566
$input-bg: $white !default;
C
codecalm 已提交
567
$input-disabled-bg: $gray-50 !default;
C
codecalm 已提交
568 569
$input-border-color: $border-color-dark !default;
$input-border-color-transparent: $border-color-dark-transparent !default;
C
codecalm 已提交
570
$input-placeholder-color: $text-muted-light !default;
C
chomik 已提交
571

C
codecalm 已提交
572
$input-group-addon-bg: $light !default;
C
chomik 已提交
573 574 575 576
$input-group-addon-color: $text-muted !default;

$input-border-radius: $border-radius !default;

577 578

//Forms
C
codecalm 已提交
579
$form-check-margin-bottom: .5rem !default;
C
codecalm 已提交
580
$form-check-input-width: 1rem !default;
C
codecalm 已提交
581
$form-check-padding-start: $form-check-input-width + .5rem !default;
C
codecalm 已提交
582
$form-check-input-bg: $white !default;
C
codecalm 已提交
583
$form-check-input-border: 1px solid $input-border-color-transparent !default;
C
codecalm 已提交
584
$form-check-input-border-radius: $border-radius !default;
C
codecalm 已提交
585
$form-check-input-checked-bg-size: 1rem !default;
586

C
codecalm 已提交
587
$form-check-input-checked-color: $white !default;
C
codecalm 已提交
588
$form-check-input-checked-bg-repeat: repeat !default;
C
codecalm 已提交
589 590
$form-check-input-checked-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'><path fill='none' stroke='#{$form-check-input-checked-color}' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8.5l2.5 2.5l5.5 -5.5'/></svg>") !default;
$form-check-input-checked-bg-image-dark: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'><path fill='none' stroke='#{$dark}' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8.5l2.5 2.5l5.5 -5.5'/></svg>") !default;
C
codecalm 已提交
591
$form-check-radio-checked-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><circle r='3' fill='#{$form-check-input-checked-color}' cx='8' cy='8' /></svg>") !default;
C
codecalm 已提交
592

C
codecalm 已提交
593
$form-check-input-checked-border-color: $input-border-color-transparent !default;
594

C
codecalm 已提交
595 596
$form-check-label-disabled-opacity: $text-muted-opacity;

C
codecalm 已提交
597
$form-select-indicator-color: $text-muted-light !default;
C
codecalm 已提交
598

C
codecalm 已提交
599 600
$form-switch-width: 2rem !default;
$form-switch-height: 1.125rem !default;
C
codecalm 已提交
601
$form-switch-padding-start: $form-switch-width + .5rem !default;
C
codecalm 已提交
602
$form-switch-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='#{$border-color}'/></svg>") !default;
C
codecalm 已提交
603
$form-switch-bg-size: auto !default;
C
codecalm 已提交
604

C
codecalm 已提交
605
$form-range-track-height: .25rem !default;
P
Paweł Kuna 已提交
606 607
$form-range-track-bg: var(--#{$variable-prefix}border-color-light) !default;
$form-range-thumb-border: 2px solid $form-range-track-bg !default;
C
codecalm 已提交
608 609
$form-range-thumb-height: 1rem !default;
$form-range-thumb-focus-box-shadow-width: .125rem !default;
610

C
codecalm 已提交
611 612
$form-feedback-icon-valid: str-replace(url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='" + $green + "' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'></polyline></svg>"), "#", "%23") !default;
$form-feedback-icon-invalid: str-replace(url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='" + $red + "' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><line x1='18' y1='6' x2='6' y2='18'></line><line x1='6' y1='6' x2='18' y2='18'></line></svg>"), "#", "%23") !default;
C
chomik 已提交
613

C
codecalm 已提交
614 615 616
$form-label-font-size: $h4-font-size !default;
$form-label-font-weight: $font-weight-medium !default;

C
codecalm 已提交
617
$caret-width: .36em !default;
618 619

//Flags
C
codecalm 已提交
620
$flag-sizes: $avatar-sizes !default;
621

M
memorte03 已提交
622
//Payments
C
codecalm 已提交
623
$payment-sizes: $avatar-sizes !default;
624

P
Paweł Kuna 已提交
625
// Offcanvas
626 627 628 629 630
$offcanvas-border-color: $border-color-transparent !default;

// Placeholder
$placeholder-opacity-min: .1 !default;
$placeholder-opacity-max: .2 !default;