2014-12-02 23:02:35 +01:00
// Variables
2015-03-09 15:18:25 +01:00
//
2017-06-13 17:25:55 +02:00
// Variables should follow the `$component-state-property-size` formula for
2017-06-13 17:25:18 +02:00
// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.
2015-08-11 08:38:41 +02:00
2017-06-30 08:17:18 +02:00
// Color system
2017-06-15 20:16:27 +02:00
2017-10-04 13:02:35 +02:00
$white : #fff !default ;
2017-06-15 20:16:27 +02:00
$gray-100 : #f8f9fa !default ;
$gray-200 : #e9ecef !default ;
$gray-300 : #dee2e6 !default ;
$gray-400 : #ced4da !default ;
$gray-500 : #adb5bd !default ;
2017-12-29 22:03:35 +01:00
$gray-600 : #6c757d !default ;
2017-06-15 20:16:27 +02:00
$gray-700 : #495057 !default ;
$gray-800 : #343a40 !default ;
$gray-900 : #212529 !default ;
2017-10-04 13:02:35 +02:00
$black : #000 !default ;
2017-06-15 20:16:27 +02:00
2017-08-13 23:56:30 +02:00
$grays : () !default ;
2018-06-01 17:00:36 +02:00
// stylelint-disable-next-line scss/dollar-variable-default
$grays : map-merge (
(
" 100 " : $ gray-100 ,
" 200 " : $ gray-200 ,
" 300 " : $ gray-300 ,
" 400 " : $ gray-400 ,
" 500 " : $ gray-500 ,
" 600 " : $ gray-600 ,
" 700 " : $ gray-700 ,
" 800 " : $ gray-800 ,
" 900 " : $ gray-900
) ,
$ grays
) ;
2017-06-15 20:16:27 +02:00
$blue : #007bff !default ;
2017-06-26 03:08:43 +02:00
$indigo : #6610f2 !default ;
$purple : #6f42c1 !default ;
$pink : #e83e8c !default ;
$red : #dc3545 !default ;
$orange : #fd7e14 !default ;
$yellow : #ffc107 !default ;
$green : #28a745 !default ;
$teal : #20c997 !default ;
$cyan : #17a2b8 !default ;
2017-06-15 20:16:27 +02:00
2017-08-13 23:56:30 +02:00
$colors : () !default ;
2018-06-01 17:00:36 +02:00
// stylelint-disable-next-line scss/dollar-variable-default
$colors : map-merge (
(
" blue " : $ blue ,
" indigo " : $ indigo ,
" purple " : $ purple ,
" pink " : $ pink ,
" red " : $ red ,
" orange " : $ orange ,
" yellow " : $ yellow ,
" green " : $ green ,
" teal " : $ teal ,
" cyan " : $ cyan ,
" white " : $ white ,
" gray " : $ gray-600 ,
" gray-dark " : $ gray-800
) ,
$ colors
) ;
2017-06-15 20:16:27 +02:00
2017-10-19 08:05:00 +02:00
$primary : $blue !default ;
$secondary : $gray-600 !default ;
$success : $green !default ;
$info : $cyan !default ;
$warning : $yellow !default ;
$danger : $red !default ;
$light : $gray-100 !default ;
$dark : $gray-800 !default ;
2017-08-13 23:56:30 +02:00
$theme-colors : () !default ;
2018-06-01 17:00:36 +02:00
// stylelint-disable-next-line scss/dollar-variable-default
$theme-colors : map-merge (
(
" primary " : $ primary ,
" secondary " : $ secondary ,
" success " : $ success ,
" info " : $ info ,
" warning " : $ warning ,
" danger " : $ danger ,
" light " : $ light ,
" dark " : $ dark
) ,
$ theme-colors
) ;
2017-06-15 20:16:27 +02:00
2017-06-26 03:31:03 +02:00
// Set a specific jump point for requesting color jumps
2017-10-04 13:02:35 +02:00
$theme-color-interval : 8 % !default ;
2014-12-02 23:02:35 +01:00
2017-12-02 04:26:10 +01:00
// The yiq lightness value that determines when the lightness of color changes from "dark" to "light". Acceptable values are between 0 and 255.
2018-03-08 13:28:32 +01:00
$yiq-contrasted-threshold : 150 !default ;
2017-12-02 04:26:10 +01:00
2017-10-19 06:06:13 +02:00
// Customize the light and dark text colors for use in our YIQ color contrast function.
2018-03-08 13:28:32 +01:00
$yiq-text-dark : $gray-900 !default ;
$yiq-text-light : $white !default ;
2017-10-19 06:06:13 +02:00
2018-09-16 23:32:11 +02:00
2016-12-24 21:35:08 +01:00
// Options
2014-12-02 23:02:35 +01:00
//
2015-08-11 08:38:41 +02:00
// Quickly modify global styling by enabling or disabling optional features.
2018-11-03 19:23:26 +01:00
$enable-caret : true !default ;
$enable-rounded : true !default ;
$enable-shadows : false !default ;
$enable-gradients : false !default ;
$enable-transitions : true !default ;
$enable-prefers-reduced-motion-media-query : true !default ;
$enable-hover-media-query : false !default ; // Deprecated, no longer affects any compiled CSS
$enable-grid-classes : true !default ;
2018-12-29 12:55:20 +01:00
$enable-pointer-cursor-for-buttons : true !default ;
2018-11-03 19:23:26 +01:00
$enable-print-styles : true !default ;
$enable-validation-icons : true !default ;
2015-08-11 08:38:41 +02:00
2018-09-16 23:32:11 +02:00
2016-12-24 21:35:08 +01:00
// Spacing
2015-08-11 08:38:41 +02:00
//
// Control the default styling of most Bootstrap elements by modifying these
// variables. Mostly focused on spacing.
2015-12-27 19:20:39 +01:00
// You can add more entries to the $spacers map, should you need more variation.
2015-08-11 08:38:41 +02:00
2017-03-05 21:20:44 +01:00
$spacer : 1 rem !default ;
2018-01-16 07:01:32 +01:00
$spacers : () !default ;
2018-06-01 17:00:36 +02:00
// stylelint-disable-next-line scss/dollar-variable-default
$spacers : map-merge (
(
0 : 0 ,
1 : ( $spacer * .25 ) ,
2 : ( $spacer * .5 ) ,
3 : $spacer ,
4 : ( $spacer * 1 .5 ) ,
5 : ( $ spacer * 3 )
) ,
$ spacers
) ;
2015-08-11 08:38:41 +02:00
2017-04-09 00:14:52 +02:00
// This variable affects the `.h-*` and `.w-*` classes.
2018-01-16 07:01:32 +01:00
$sizes : () !default ;
2018-06-01 17:00:36 +02:00
// stylelint-disable-next-line scss/dollar-variable-default
$sizes : map-merge (
(
25 : 25 % ,
50 : 50 % ,
75 : 75 % ,
100 : 100 % ,
auto : auto
) ,
$ sizes
) ;
2015-08-11 08:38:41 +02:00
2018-09-16 23:32:11 +02:00
2016-12-24 21:35:08 +01:00
// Body
2015-08-11 08:38:41 +02:00
//
// Settings for the `<body>` element.
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$body-bg : $white !default ;
$body-color : $gray-900 !default ;
2015-08-11 08:38:41 +02:00
2018-09-16 23:32:11 +02:00
2016-12-24 21:35:08 +01:00
// Links
2015-08-11 08:38:41 +02:00
//
// Style anchor elements.
2014-12-02 23:02:35 +01:00
2018-12-16 00:59:16 +01:00
$link-color : theme-color ( " primary " ) !default ;
2018-10-22 19:52:20 +02:00
$link-decoration : none !default ;
$link-hover-color : darken ( $link-color , 15 % ) !default ;
$link-hover-decoration : underline !default ;
// Darken percentage for links with `.text-*` class (e.g. `.text-success`)
$emphasized-link-hover-darken-percentage : 15 % !default ;
2018-09-16 23:32:11 +02:00
2017-08-11 08:00:01 +02:00
// Paragraphs
//
// Style p element.
2017-10-04 13:02:35 +02:00
$paragraph-margin-bottom : 1 rem !default ;
2017-08-11 08:00:01 +02:00
2014-12-02 23:02:35 +01:00
2016-12-24 21:35:08 +01:00
// Grid breakpoints
2014-12-02 23:02:35 +01:00
//
2016-02-16 10:24:34 +01:00
// Define the minimum dimensions at which your layout will change,
2015-08-11 08:38:41 +02:00
// adapting to different screen sizes, for use in media queries.
2014-12-02 23:02:35 +01:00
2018-10-23 04:48:44 +02:00
$grid-breakpoints : () !default ;
// stylelint-disable-next-line scss/dollar-variable-default
$grid-breakpoints : map-merge (
(
xs : 0 ,
sm : 576 px ,
md : 768 px ,
lg : 992 px ,
xl : 1200px
) ,
$ grid-breakpoints
) ;
2017-10-04 13:02:35 +02:00
2016-02-07 11:53:35 +01:00
@include _assert-ascending ( $grid-breakpoints , " $grid-breakpoints " ) ;
2016-02-24 21:42:02 +01:00
@include _assert-starts-at-zero ( $grid-breakpoints ) ;
2014-12-02 23:02:35 +01:00
2015-04-29 20:48:58 +02:00
2016-12-24 21:35:08 +01:00
// Grid containers
2015-04-29 20:48:58 +02:00
//
2015-08-11 08:38:41 +02:00
// Define the maximum width of `.container` for different screen sizes.
2015-04-29 20:48:58 +02:00
2018-10-23 04:48:44 +02:00
$container-max-widths : () !default ;
// stylelint-disable-next-line scss/dollar-variable-default
$container-max-widths : map-merge (
(
sm : 540 px ,
md : 720 px ,
lg : 960 px ,
xl : 1140px
) ,
$ container-max-widths
) ;
2017-10-04 13:02:35 +02:00
2016-02-07 11:53:35 +01:00
@include _assert-ascending ( $container-max-widths , " $container-max-widths " ) ;
2015-08-11 08:38:41 +02:00
2016-12-24 21:35:08 +01:00
// Grid columns
2015-08-11 08:38:41 +02:00
//
// Set the number of columns and specify the width of the gutters.
2017-10-04 13:02:35 +02:00
$grid-columns : 12 !default ;
$grid-gutter-width : 30 px !default ;
2017-03-05 21:20:44 +01:00
2018-09-16 23:32:11 +02:00
2017-03-05 21:20:44 +01:00
// Components
//
// Define common padding and border radius sizes and more.
2017-10-04 13:02:35 +02:00
$line-height-lg : 1 .5 !default ;
$line-height-sm : 1 .5 !default ;
2017-03-05 21:20:44 +01:00
2017-10-04 13:02:35 +02:00
$border-width : 1 px !default ;
2018-01-02 05:50:59 +01:00
$border-color : $gray-300 !default ;
2017-03-05 21:20:44 +01:00
2017-10-04 13:02:35 +02:00
$border-radius : .25 rem !default ;
$border-radius-lg : .3 rem !default ;
$border-radius-sm : .2 rem !default ;
2018-11-05 18:19:00 +01:00
$rounded-pill : 50 rem !default ;
2017-03-05 21:20:44 +01:00
2018-04-01 07:07:48 +02:00
$box-shadow-sm : 0 .125 rem .25 rem rgba ( $black , .075 ) !default ;
$box-shadow : 0 .5 rem 1 rem rgba ( $black , .15 ) !default ;
$box-shadow-lg : 0 1 rem 3 rem rgba ( $black , .175 ) !default ;
2017-10-04 13:02:35 +02:00
$component-active-color : $white !default ;
2018-12-16 00:59:16 +01:00
$component-active-bg : theme-color ( " primary " ) !default ;
2017-03-05 21:20:44 +01:00
2017-10-04 13:02:35 +02:00
$caret-width : .3 em !default ;
2019-01-07 17:28:21 +01:00
$caret-vertical-align : $caret-width * .85 !default ;
$caret-spacing : $caret-width * .85 !default ;
2017-03-05 21:20:44 +01:00
2017-10-04 13:02:35 +02:00
$transition-base : all .2 s ease-in-out !default ;
$transition-fade : opacity .15 s linear !default ;
$transition-collapse : height .35 s ease !default ;
2017-03-05 21:20:44 +01:00
2018-11-11 10:04:04 +01:00
$embed-responsive-aspect-ratios : () !default ;
// stylelint-disable-next-line scss/dollar-variable-default
$embed-responsive-aspect-ratios : join (
(
( 21 9 ) ,
( 16 9 ) ,
2018-12-23 12:58:58 +01:00
( 4 3 ) ,
2018-11-11 10:04:04 +01:00
( 1 1 ) ,
) ,
$ embed-responsive-aspect-ratios
) ;
2017-03-05 21:20:44 +01:00
2016-12-24 21:35:08 +01:00
// Fonts
2014-12-02 23:02:35 +01:00
//
2015-03-09 15:18:25 +01:00
// Font, line-height, and color for body text, headings, and more.
2014-12-02 23:02:35 +01:00
2017-10-03 05:34:56 +02:00
// stylelint-disable value-keyword-case
2018-12-05 12:40:59 +01:00
$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 ;
2017-11-06 01:23:36 +01:00
$font-family-monospace : SFMono-Regular , Menlo , Monaco , Consolas , " Liberation Mono " , " Courier New " , monospace !default ;
2017-10-04 13:02:35 +02:00
$font-family-base : $font-family-sans-serif !default ;
2017-10-03 05:34:56 +02:00
// stylelint-enable value-keyword-case
2014-12-02 23:02:35 +01:00
2017-10-19 17:16:38 +02:00
$font-size-base : 1 rem !default ; // Assumes the browser default, typically `16px`
2019-01-03 19:59:18 +01:00
$font-size-lg : $font-size-base * 1 .25 !default ;
$font-size-sm : $font-size-base * .875 !default ;
2014-12-10 01:24:05 +01:00
2018-07-25 02:23:17 +02:00
$font-weight-lighter : lighter !default ;
2017-10-04 13:02:35 +02:00
$font-weight-light : 300 !default ;
$font-weight-normal : 400 !default ;
$font-weight-bold : 700 !default ;
2018-07-25 02:23:17 +02:00
$font-weight-bolder : bolder !default ;
2016-10-19 21:41:27 +02:00
2017-10-04 13:02:35 +02:00
$font-weight-base : $font-weight-normal !default ;
$line-height-base : 1 .5 !default ;
2016-02-04 04:45:13 +01:00
2017-10-19 17:16:38 +02:00
$h1-font-size : $font-size-base * 2 .5 !default ;
$h2-font-size : $font-size-base * 2 !default ;
$h3-font-size : $font-size-base * 1 .75 !default ;
$h4-font-size : $font-size-base * 1 .5 !default ;
$h5-font-size : $font-size-base * 1 .25 !default ;
$h6-font-size : $font-size-base !default ;
2014-12-02 23:02:35 +01:00
2018-12-14 17:54:44 +01:00
$headings-margin-bottom : $spacer / 2 !default ;
2017-10-04 13:02:35 +02:00
$headings-font-family : inherit !default ;
$headings-font-weight : 500 !default ;
2017-10-19 04:48:35 +02:00
$headings-line-height : 1 .2 !default ;
2017-10-04 13:02:35 +02:00
$headings-color : inherit !default ;
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$display1-size : 6 rem !default ;
$display2-size : 5 .5 rem !default ;
$display3-size : 4 .5 rem !default ;
$display4-size : 3 .5 rem !default ;
2017-01-02 20:03:25 +01:00
2017-10-04 13:02:35 +02:00
$display1-weight : 300 !default ;
$display2-weight : 300 !default ;
$display3-weight : 300 !default ;
$display4-weight : 300 !default ;
$display-line-height : $headings-line-height !default ;
2017-01-02 20:03:25 +01:00
2019-01-03 19:59:18 +01:00
$lead-font-size : $font-size-base * 1 .25 !default ;
2017-10-19 17:16:38 +02:00
$lead-font-weight : 300 !default ;
2015-08-14 08:18:32 +02:00
2017-10-04 13:02:35 +02:00
$small-font-size : 80 % !default ;
2016-10-17 03:49:55 +02:00
2017-10-04 13:02:35 +02:00
$text-muted : $gray-600 !default ;
2015-08-14 08:18:32 +02:00
2017-10-04 13:02:35 +02:00
$blockquote-small-color : $gray-600 !default ;
2018-08-14 10:35:11 +02:00
$blockquote-small-font-size : $small-font-size !default ;
2019-01-03 19:59:18 +01:00
$blockquote-font-size : $font-size-base * 1 .25 !default ;
2015-08-14 08:18:32 +02:00
2017-10-22 23:00:00 +02:00
$hr-border-color : rgba ( $black , .1 ) !default ;
2017-10-04 13:02:35 +02:00
$hr-border-width : $border-width !default ;
2015-08-05 09:38:36 +02:00
2017-10-04 13:02:35 +02:00
$mark-padding : .2 em !default ;
2016-02-16 08:55:19 +01:00
2017-10-04 13:02:35 +02:00
$dt-font-weight : $font-weight-bold !default ;
2015-12-06 21:28:15 +01:00
2017-10-22 23:00:00 +02:00
$kbd-box-shadow : inset 0 - .1 rem 0 rgba ( $black , .25 ) !default ;
2017-10-04 13:02:35 +02:00
$nested-kbd-font-weight : $font-weight-bold !default ;
2015-12-06 21:28:15 +01:00
2017-10-31 13:04:26 +01:00
$list-inline-padding : .5 rem !default ;
2015-12-04 10:56:49 +01:00
2017-10-23 15:13:18 +02:00
$mark-bg : #fcf8e3 !default ;
$hr-margin-y : $spacer !default ;
2017-06-28 18:36:43 +02:00
2014-12-02 23:02:35 +01:00
2016-12-24 21:35:08 +01:00
// Tables
2014-12-02 23:02:35 +01:00
//
2015-03-09 15:18:25 +01:00
// Customizes the `.table` component with basic values, each used across all table variations.
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$table-cell-padding : .75 rem !default ;
$table-cell-padding-sm : .3 rem !default ;
2014-12-02 23:02:35 +01:00
2018-12-15 23:01:09 +01:00
$table-color : $body-color !default ;
2017-10-04 13:02:35 +02:00
$table-bg : transparent !default ;
2017-10-22 23:00:00 +02:00
$table-accent-bg : rgba ( $black , .05 ) !default ;
2018-12-15 23:01:09 +01:00
$table-hover-color : $table-color !default ;
2017-10-22 23:00:00 +02:00
$table-hover-bg : rgba ( $black , .075 ) !default ;
2017-10-04 13:02:35 +02:00
$table-active-bg : $table-hover-bg !default ;
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$table-border-width : $border-width !default ;
2018-12-18 11:28:57 +01:00
$table-border-color : $border-color !default ;
2017-03-20 01:03:52 +01:00
2017-10-04 13:02:35 +02:00
$table-head-bg : $gray-200 !default ;
$table-head-color : $gray-700 !default ;
2016-04-18 03:56:09 +02:00
2018-12-15 23:01:09 +01:00
$table-dark-color : $white !default ;
2018-12-15 19:15:52 +01:00
$table-dark-bg : $gray-800 !default ;
2017-10-04 13:02:35 +02:00
$table-dark-accent-bg : rgba ( $white , .05 ) !default ;
2018-12-15 23:01:09 +01:00
$table-dark-hover-color : $table-dark-color !default ;
2017-10-04 13:02:35 +02:00
$table-dark-hover-bg : rgba ( $white , .075 ) !default ;
2018-12-15 19:15:52 +01:00
$table-dark-border-color : lighten ( $table-dark-bg , 7 .5 % ) !default ;
2018-09-16 10:06:53 +02:00
$table-dark-color : $white !default ;
2014-12-02 23:02:35 +01:00
2018-01-19 18:34:49 +01:00
$table-striped-order : odd !default ;
2018-02-19 23:42:54 +01:00
$table-caption-color : $text-muted !default ;
2014-12-02 23:02:35 +01:00
2018-10-20 10:21:31 +02:00
$table-bg-level : - 9 !default ;
$table-border-level : - 6 !default ;
2018-09-16 23:32:11 +02:00
2017-10-23 04:56:49 +02:00
// Buttons + Forms
//
// Shared variables that are reassigned to `$input-` and `$btn-` specific variables.
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$input-btn-padding-y : .375 rem !default ;
$input-btn-padding-x : .75 rem !default ;
2018-09-18 14:35:25 +02:00
$input-btn-font-size : $font-size-base !default ;
2017-10-04 13:02:35 +02:00
$input-btn-line-height : $line-height-base !default ;
2017-03-28 18:28:27 +02:00
2017-10-19 18:03:33 +02:00
$input-btn-focus-width : .2 rem !default ;
2018-01-13 08:56:31 +01:00
$input-btn-focus-color : rgba ( $component-active-bg , .25 ) !default ;
2017-10-19 18:03:33 +02:00
$input-btn-focus-box-shadow : 0 0 0 $input-btn-focus-width $input-btn-focus-color !default ;
2017-10-04 13:02:35 +02:00
$input-btn-padding-y-sm : .25 rem !default ;
$input-btn-padding-x-sm : .5 rem !default ;
2018-09-18 14:35:25 +02:00
$input-btn-font-size-sm : $font-size-sm !default ;
2017-10-04 13:02:35 +02:00
$input-btn-line-height-sm : $line-height-sm !default ;
2017-03-28 18:28:27 +02:00
2017-10-04 13:02:35 +02:00
$input-btn-padding-y-lg : .5 rem !default ;
$input-btn-padding-x-lg : 1 rem !default ;
2018-09-18 14:35:25 +02:00
$input-btn-font-size-lg : $font-size-lg !default ;
2017-10-04 13:02:35 +02:00
$input-btn-line-height-lg : $line-height-lg !default ;
2017-03-28 18:28:27 +02:00
2017-10-23 04:56:49 +02:00
$input-btn-border-width : $border-width !default ;
2017-10-19 09:05:07 +02:00
// Buttons
//
2017-10-23 04:56:49 +02:00
// For each of Bootstrap's buttons, define text, background, and border color.
2017-10-19 09:05:07 +02:00
$btn-padding-y : $input-btn-padding-y !default ;
$btn-padding-x : $input-btn-padding-x !default ;
2018-09-18 14:35:25 +02:00
$btn-font-size : $input-btn-font-size !default ;
2017-10-19 09:05:07 +02:00
$btn-line-height : $input-btn-line-height !default ;
$btn-padding-y-sm : $input-btn-padding-y-sm !default ;
$btn-padding-x-sm : $input-btn-padding-x-sm !default ;
2018-09-18 14:35:25 +02:00
$btn-font-size-sm : $input-btn-font-size-sm !default ;
2017-10-19 09:05:07 +02:00
$btn-line-height-sm : $input-btn-line-height-sm !default ;
$btn-padding-y-lg : $input-btn-padding-y-lg !default ;
$btn-padding-x-lg : $input-btn-padding-x-lg !default ;
2018-09-18 14:35:25 +02:00
$btn-font-size-lg : $input-btn-font-size-lg !default ;
2017-10-19 09:05:07 +02:00
$btn-line-height-lg : $input-btn-line-height-lg !default ;
$btn-border-width : $input-btn-border-width !default ;
2017-10-04 13:02:35 +02:00
$btn-font-weight : $font-weight-normal !default ;
2017-10-22 23:00:00 +02:00
$btn-box-shadow : inset 0 1 px 0 rgba ( $white , .15 ) , 0 1 px 1 px rgba ( $black , .075 ) !default ;
2017-10-25 21:30:29 +02:00
$btn-focus-width : $input-btn-focus-width !default ;
$btn-focus-box-shadow : $input-btn-focus-box-shadow !default ;
2017-11-06 22:34:42 +01:00
$btn-disabled-opacity : .65 !default ;
2017-10-22 23:00:00 +02:00
$btn-active-box-shadow : inset 0 3 px 5 px rgba ( $black , .125 ) !default ;
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$btn-link-disabled-color : $gray-600 !default ;
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$btn-block-spacing-y : .5 rem !default ;
2016-01-08 22:23:24 +01:00
2015-06-19 08:56:43 +02:00
// Allows for customizing button radius independently from global border radius
2017-10-04 13:02:35 +02:00
$btn-border-radius : $border-radius !default ;
$btn-border-radius-lg : $border-radius-lg !default ;
$btn-border-radius-sm : $border-radius-sm !default ;
2015-06-19 08:56:43 +02:00
2017-10-22 22:11:07 +02:00
$btn-transition : color .15 s ease-in-out , background-color .15 s ease-in-out , border-color .15 s ease-in-out , box-shadow .15 s ease-in-out !default ;
2016-12-20 05:33:17 +01:00
2014-12-02 23:02:35 +01:00
2016-12-24 21:35:08 +01:00
// Forms
2014-12-02 23:02:35 +01:00
2018-02-11 01:21:42 +01:00
$label-margin-bottom : .5 rem !default ;
2017-10-19 09:05:07 +02:00
$input-padding-y : $input-btn-padding-y !default ;
$input-padding-x : $input-btn-padding-x !default ;
2018-09-18 14:35:25 +02:00
$input-font-size : $input-btn-font-size !default ;
2018-10-20 10:50:20 +02:00
$input-font-weight : $font-weight-base !default ;
2017-10-19 09:05:07 +02:00
$input-line-height : $input-btn-line-height !default ;
$input-padding-y-sm : $input-btn-padding-y-sm !default ;
$input-padding-x-sm : $input-btn-padding-x-sm !default ;
2018-09-18 14:35:25 +02:00
$input-font-size-sm : $input-btn-font-size-sm !default ;
2017-10-19 09:05:07 +02:00
$input-line-height-sm : $input-btn-line-height-sm !default ;
$input-padding-y-lg : $input-btn-padding-y-lg !default ;
$input-padding-x-lg : $input-btn-padding-x-lg !default ;
2018-09-18 14:35:25 +02:00
$input-font-size-lg : $input-btn-font-size-lg !default ;
2017-10-19 09:05:07 +02:00
$input-line-height-lg : $input-btn-line-height-lg !default ;
2017-10-04 13:02:35 +02:00
$input-bg : $white !default ;
$input-disabled-bg : $gray-200 !default ;
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$input-color : $gray-700 !default ;
$input-border-color : $gray-400 !default ;
2017-10-19 09:05:07 +02:00
$input-border-width : $input-btn-border-width !default ;
2017-10-22 23:30:35 +02:00
$input-box-shadow : inset 0 1 px 1 px rgba ( $black , .075 ) !default ;
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$input-border-radius : $border-radius !default ;
$input-border-radius-lg : $border-radius-lg !default ;
$input-border-radius-sm : $border-radius-sm !default ;
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$input-focus-bg : $input-bg !default ;
2018-01-13 08:56:31 +01:00
$input-focus-border-color : lighten ( $component-active-bg , 25 % ) !default ;
2017-10-04 13:02:35 +02:00
$input-focus-color : $input-color !default ;
2017-10-25 21:30:29 +02:00
$input-focus-width : $input-btn-focus-width !default ;
$input-focus-box-shadow : $input-btn-focus-box-shadow !default ;
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$input-placeholder-color : $gray-600 !default ;
2018-02-11 23:25:36 +01:00
$input-plaintext-color : $body-color !default ;
2014-12-02 23:02:35 +01:00
2018-01-18 00:30:42 +01:00
$input-height-border : $input-border-width * 2 !default ;
2017-04-22 20:56:01 +02:00
2019-01-11 13:22:14 +01:00
$input-height-inner : ( $input-font-size * $input-line-height ) + ( $input-padding-y * 2 ) !default ;
2017-10-04 13:02:35 +02:00
$input-height : calc ( #{ $input-height-inner } + #{ $input-height-border } ) !default ;
2017-04-22 20:56:01 +02:00
2019-01-11 13:22:14 +01:00
$input-height-inner-sm : ( $input-font-size-sm * $input-line-height-sm ) + ( $input-padding-y-sm * 2 ) !default ;
2017-10-04 13:02:35 +02:00
$input-height-sm : calc ( #{ $input-height-inner-sm } + #{ $input-height-border } ) !default ;
2017-04-22 20:56:01 +02:00
2019-01-11 13:22:14 +01:00
$input-height-inner-lg : ( $input-font-size-lg * $input-line-height-lg ) + ( $input-padding-y-lg * 2 ) !default ;
2017-10-04 13:02:35 +02:00
$input-height-lg : calc ( #{ $input-height-inner-lg } + #{ $input-height-border } ) !default ;
2014-12-02 23:02:35 +01:00
2017-11-06 01:23:36 +01:00
$input-transition : border-color .15 s ease-in-out , box-shadow .15 s ease-in-out !default ;
2016-12-20 05:33:17 +01:00
2017-10-04 13:02:35 +02:00
$form-text-margin-top : .25 rem !default ;
2016-12-27 00:42:19 +01:00
2017-10-04 13:02:35 +02:00
$form-check-input-gutter : 1 .25 rem !default ;
2017-12-23 01:13:01 +01:00
$form-check-input-margin-y : .3 rem !default ;
2017-10-04 13:02:35 +02:00
$form-check-input-margin-x : .25 rem !default ;
2016-12-27 00:42:19 +01:00
2017-10-04 13:02:35 +02:00
$form-check-inline-margin-x : .75 rem !default ;
2017-12-23 01:13:01 +01:00
$form-check-inline-input-margin-x : .3125 rem !default ;
2016-12-27 00:42:19 +01:00
2018-12-05 16:15:24 +01:00
$form-grid-gutter-width : 10 px !default ;
2017-10-04 13:02:35 +02:00
$form-group-margin-bottom : 1 rem !default ;
2015-03-01 23:11:22 +01:00
2017-10-04 13:02:35 +02:00
$input-group-addon-color : $input-color !default ;
$input-group-addon-bg : $gray-200 !default ;
$input-group-addon-border-color : $input-border-color !default ;
2014-12-02 23:02:35 +01:00
2018-05-19 15:37:26 +02:00
$custom-forms-transition : background-color .15 s ease-in-out , border-color .15 s ease-in-out , box-shadow .15 s ease-in-out !default ;
2018-12-14 02:04:10 +01:00
$custom-control-gutter : .5 rem !default ;
2017-10-04 13:02:35 +02:00
$custom-control-spacer-x : 1 rem !default ;
2016-01-17 07:29:51 +01:00
2017-10-04 13:02:35 +02:00
$custom-control-indicator-size : 1 rem !default ;
2018-10-21 09:25:07 +02:00
$custom-control-indicator-bg : $input-bg !default ;
2017-10-04 13:02:35 +02:00
$custom-control-indicator-bg-size : 50 % 50 % !default ;
2018-10-21 09:25:07 +02:00
$custom-control-indicator-box-shadow : $input-box-shadow !default ;
$custom-control-indicator-border-color : $gray-500 !default ;
$custom-control-indicator-border-width : $input-border-width !default ;
2016-01-17 07:29:51 +01:00
2018-10-21 09:25:07 +02:00
$custom-control-indicator-disabled-bg : $input-disabled-bg !default ;
2018-03-08 13:28:32 +01:00
$custom-control-label-disabled-color : $gray-600 !default ;
2016-01-17 07:29:51 +01:00
2018-01-13 08:56:31 +01:00
$custom-control-indicator-checked-color : $component-active-color !default ;
$custom-control-indicator-checked-bg : $component-active-bg !default ;
2018-12-16 00:59:16 +01:00
$custom-control-indicator-checked-disabled-bg : rgba ( theme-color ( " primary " ) , .5 ) !default ;
2017-10-04 13:02:35 +02:00
$custom-control-indicator-checked-box-shadow : none !default ;
2018-10-21 09:25:07 +02:00
$custom-control-indicator-checked-border-color : $custom-control-indicator-checked-bg !default ;
2016-01-17 07:29:51 +01:00
2018-10-21 09:25:07 +02:00
$custom-control-indicator-focus-box-shadow : $input-btn-focus-box-shadow !default ;
$custom-control-indicator-focus-border-color : $input-focus-border-color !default ;
2016-01-17 07:29:51 +01:00
2018-01-13 08:56:31 +01:00
$custom-control-indicator-active-color : $component-active-color !default ;
$custom-control-indicator-active-bg : lighten ( $component-active-bg , 35 % ) !default ;
2017-10-04 13:02:35 +02:00
$custom-control-indicator-active-box-shadow : none !default ;
2018-10-21 09:25:07 +02:00
$custom-control-indicator-active-border-color : $custom-control-indicator-active-bg !default ;
2016-01-17 07:29:51 +01:00
2017-10-04 13:02:35 +02:00
$custom-checkbox-indicator-border-radius : $border-radius !default ;
2018-10-21 09:03:17 +02:00
$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 ;
2016-10-03 03:27:03 +02:00
2018-10-21 09:25:07 +02:00
$custom-checkbox-indicator-indeterminate-bg : $component-active-bg !default ;
$custom-checkbox-indicator-indeterminate-color : $custom-control-indicator-checked-color !default ;
$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 ;
$custom-checkbox-indicator-indeterminate-box-shadow : none !default ;
$custom-checkbox-indicator-indeterminate-border-color : $custom-checkbox-indicator-indeterminate-bg !default ;
2016-01-17 07:29:51 +01:00
2017-10-04 13:02:35 +02:00
$custom-radio-indicator-border-radius : 50 % !default ;
2018-10-21 09:03:17 +02:00
$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 ;
2016-01-17 07:29:51 +01:00
2018-12-12 14:28:25 +01:00
$custom-switch-width : $custom-control-indicator-size * 1 .75 !default ;
$custom-switch-indicator-border-radius : $custom-control-indicator-size / 2 !default ;
$custom-switch-indicator-size : calc ( #{ $custom-control-indicator-size } - #{ $custom-control-indicator-border-width * 4 } ) !default ;
2018-10-20 21:00:48 +02:00
$custom-select-padding-y : $input-btn-padding-y !default ;
$custom-select-padding-x : $input-btn-padding-x !default ;
2018-12-29 03:44:35 +01:00
$custom-select-font-size : $input-font-size !default ;
2017-09-17 07:18:24 +02:00
$custom-select-height : $input-height !default ;
2016-09-08 13:57:57 +02:00
$custom-select-indicator-padding : 1 rem !default ; // Extra padding to account for the presence of the background-image based indicator
2018-10-20 10:50:20 +02:00
$custom-select-font-weight : $input-font-weight !default ;
2018-09-17 00:43:49 +02:00
$custom-select-line-height : $input-line-height !default ;
2016-09-08 13:57:57 +02:00
$custom-select-color : $input-color !default ;
2017-06-30 08:15:16 +02:00
$custom-select-disabled-color : $gray-600 !default ;
2018-02-11 23:24:18 +01:00
$custom-select-bg : $input-bg !default ;
2017-10-04 13:02:35 +02:00
$custom-select-disabled-bg : $gray-200 !default ;
$custom-select-bg-size : 8 px 10 px !default ; // In pixels because image dimensions
2017-10-30 13:30:22 +01:00
$custom-select-indicator-color : $gray-800 !default ;
2018-10-21 09:03:17 +02:00
$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 ;
2018-07-09 00:31:18 +02:00
$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)
2018-10-22 20:36:07 +02:00
$custom-select-feedback-icon-padding-right : $input-height-inner * 3 / 4 + $custom-select-padding-x + $custom-select-indicator-padding !default ;
$custom-select-feedback-icon-position : center right ( $custom-select-padding-x + $custom-select-indicator-padding ) !default ;
$custom-select-feedback-icon-size : ( $input-height-inner / 2 ) ( $input-height-inner / 2 ) !default ;
2018-09-17 00:43:49 +02:00
$custom-select-border-width : $input-border-width !default ;
2017-10-04 13:02:35 +02:00
$custom-select-border-color : $input-border-color !default ;
$custom-select-border-radius : $border-radius !default ;
2018-06-24 22:07:49 +02:00
$custom-select-box-shadow : inset 0 1 px 2 px rgba ( $black , .075 ) !default ;
2017-10-04 13:02:35 +02:00
2017-11-24 23:29:59 +01:00
$custom-select-focus-border-color : $input-focus-border-color !default ;
2018-09-17 00:43:49 +02:00
$custom-select-focus-width : $input-focus-width !default ;
2019-01-05 13:17:15 +01:00
$custom-select-focus-box-shadow : 0 0 0 $custom-select-focus-width $input-btn-focus-color !default ;
2017-10-04 13:02:35 +02:00
2018-09-17 00:43:49 +02:00
$custom-select-padding-y-sm : $input-padding-y-sm !default ;
$custom-select-padding-x-sm : $input-padding-x-sm !default ;
2018-12-29 03:44:35 +01:00
$custom-select-font-size-sm : $input-font-size-sm !default ;
2017-10-04 13:02:35 +02:00
$custom-select-height-sm : $input-height-sm !default ;
2018-09-17 00:43:49 +02:00
$custom-select-padding-y-lg : $input-padding-y-lg !default ;
$custom-select-padding-x-lg : $input-padding-x-lg !default ;
2018-12-29 03:44:35 +01:00
$custom-select-font-size-lg : $input-font-size-lg !default ;
2017-11-24 23:29:59 +01:00
$custom-select-height-lg : $input-height-lg !default ;
2018-02-19 23:40:59 +01:00
$custom-range-track-width : 100 % !default ;
$custom-range-track-height : .5 rem !default ;
$custom-range-track-cursor : pointer !default ;
$custom-range-track-bg : $gray-300 !default ;
$custom-range-track-border-radius : 1 rem !default ;
$custom-range-track-box-shadow : inset 0 .25 rem .25 rem rgba ( $black , .1 ) !default ;
2018-07-15 06:31:20 +02:00
$custom-range-thumb-width : 1 rem !default ;
$custom-range-thumb-height : $custom-range-thumb-width !default ;
$custom-range-thumb-bg : $component-active-bg !default ;
$custom-range-thumb-border : 0 !default ;
$custom-range-thumb-border-radius : 1 rem !default ;
$custom-range-thumb-box-shadow : 0 .1 rem .25 rem rgba ( $black , .1 ) !default ;
2018-09-17 00:43:49 +02:00
$custom-range-thumb-focus-box-shadow : 0 0 0 1 px $body-bg , $input-focus-box-shadow !default ;
$custom-range-thumb-focus-box-shadow-width : $input-focus-width !default ; // For focus box shadow issue in IE/Edge
2018-07-15 06:31:20 +02:00
$custom-range-thumb-active-bg : lighten ( $component-active-bg , 35 % ) !default ;
2018-07-25 02:39:15 +02:00
$custom-range-thumb-disabled-bg : $gray-500 !default ;
2018-02-19 23:40:59 +01:00
2017-10-04 13:02:35 +02:00
$custom-file-height : $input-height !default ;
2018-04-30 01:47:35 +02:00
$custom-file-height-inner : $input-height-inner !default ;
2017-11-24 23:29:59 +01:00
$custom-file-focus-border-color : $input-focus-border-color !default ;
2018-09-17 00:43:49 +02:00
$custom-file-focus-box-shadow : $input-focus-box-shadow !default ;
2018-05-11 06:35:28 +02:00
$custom-file-disabled-bg : $input-disabled-bg !default ;
2017-10-04 13:02:35 +02:00
2018-09-17 00:43:49 +02:00
$custom-file-padding-y : $input-padding-y !default ;
$custom-file-padding-x : $input-padding-x !default ;
$custom-file-line-height : $input-line-height !default ;
2018-10-20 10:50:20 +02:00
$custom-file-font-weight : $input-font-weight !default ;
2017-10-04 13:02:35 +02:00
$custom-file-color : $input-color !default ;
$custom-file-bg : $input-bg !default ;
2018-09-17 00:43:49 +02:00
$custom-file-border-width : $input-border-width !default ;
2017-10-04 13:02:35 +02:00
$custom-file-border-color : $input-border-color !default ;
$custom-file-border-radius : $input-border-radius !default ;
$custom-file-box-shadow : $input-box-shadow !default ;
$custom-file-button-color : $custom-file-color !default ;
$custom-file-button-bg : $input-group-addon-bg !default ;
2016-01-18 05:50:55 +01:00
$custom-file-text : (
2017-12-24 07:47:37 +01:00
en : " Browse "
2016-01-18 05:50:55 +01:00
) ! default ;
2015-10-14 04:30:30 +02:00
2017-06-07 07:45:37 +02:00
// Form validation
2018-09-16 23:32:11 +02:00
2017-11-15 02:32:08 +01:00
$form-feedback-margin-top : $form-text-margin-top !default ;
$form-feedback-font-size : $small-font-size !default ;
2018-12-16 00:59:16 +01:00
$form-feedback-valid-color : theme-color ( " success " ) !default ;
$form-feedback-invalid-color : theme-color ( " danger " ) !default ;
2015-08-13 07:39:36 +02:00
2018-07-09 00:31:18 +02:00
$form-feedback-icon-valid-color : $form-feedback-valid-color !default ;
2018-10-21 09:03:17 +02:00
$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 ;
2018-07-09 00:31:18 +02:00
$form-feedback-icon-invalid-color : $form-feedback-invalid-color !default ;
2018-12-27 22:05:29 +01:00
$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 ;
2018-07-09 00:31:18 +02:00
2019-01-11 20:16:50 +01:00
$form-validation-states : () !default ;
// stylelint-disable-next-line scss/dollar-variable-default
$form-validation-states : map-merge (
(
" valid " : (
" color " : $ form-feedback-valid-color ,
" icon " : $ form-feedback-icon-valid
) ,
" invalid " : (
" color " : $ form-feedback-invalid-color ,
" icon " : $ form-feedback-icon-invalid
) ,
) ,
$ form-validation-states
) ;
2014-12-02 23:02:35 +01:00
2016-12-24 21:35:08 +01:00
// Z-index master list
2014-12-02 23:02:35 +01:00
//
// Warning: Avoid customizing these values. They're used for a bird's eye view
// of components dependent on the z-axis and are designed to all work together.
2017-10-04 13:02:35 +02:00
$zindex-dropdown : 1000 !default ;
$zindex-sticky : 1020 !default ;
$zindex-fixed : 1030 !default ;
$zindex-modal-backdrop : 1040 !default ;
$zindex-modal : 1050 !default ;
$zindex-popover : 1060 !default ;
$zindex-tooltip : 1070 !default ;
2014-12-02 23:02:35 +01:00
2018-09-16 23:32:11 +02:00
2017-01-14 07:52:05 +01:00
// Navs
2017-10-04 13:02:35 +02:00
$nav-link-padding-y : .5 rem !default ;
$nav-link-padding-x : 1 rem !default ;
$nav-link-disabled-color : $gray-600 !default ;
2017-01-14 07:52:05 +01:00
2017-10-30 13:30:22 +01:00
$nav-tabs-border-color : $gray-300 !default ;
2017-10-04 13:02:35 +02:00
$nav-tabs-border-width : $border-width !default ;
$nav-tabs-border-radius : $border-radius !default ;
2017-11-06 22:35:52 +01:00
$nav-tabs-link-hover-border-color : $gray-200 $gray-200 $nav-tabs-border-color !default ;
2017-10-04 13:02:35 +02:00
$nav-tabs-link-active-color : $gray-700 !default ;
$nav-tabs-link-active-bg : $body-bg !default ;
2017-11-06 22:35:52 +01:00
$nav-tabs-link-active-border-color : $gray-300 $gray-300 $nav-tabs-link-active-bg !default ;
2017-01-14 07:52:05 +01:00
2017-10-04 13:02:35 +02:00
$nav-pills-border-radius : $border-radius !default ;
$nav-pills-link-active-color : $component-active-color !default ;
$nav-pills-link-active-bg : $component-active-bg !default ;
2017-01-14 07:52:05 +01:00
2018-03-12 18:19:37 +01:00
$nav-divider-color : $gray-200 !default ;
2018-12-14 17:54:44 +01:00
$nav-divider-margin-y : $spacer / 2 !default ;
2018-02-20 03:15:44 +01:00
2018-09-16 23:32:11 +02:00
2016-12-24 21:35:08 +01:00
// Navbar
2014-12-02 23:02:35 +01:00
2018-12-14 17:54:44 +01:00
$navbar-padding-y : $spacer / 2 !default ;
2017-04-08 13:18:17 +02:00
$navbar-padding-x : $spacer !default ;
2016-05-13 17:15:48 +02:00
2017-12-29 12:18:13 +01:00
$navbar-nav-link-padding-x : .5 rem !default ;
2017-01-14 07:59:20 +01:00
$navbar-brand-font-size : $font-size-lg !default ;
2017-01-14 07:52:05 +01:00
// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link
2018-12-14 17:54:44 +01:00
$nav-link-height : $font-size-base * $line-height-base + $nav-link-padding-y * 2 !default ;
2017-10-19 04:51:45 +02:00
$navbar-brand-height : $navbar-brand-font-size * $line-height-base !default ;
$navbar-brand-padding-y : ( $nav-link-height - $navbar-brand-height ) / 2 !default ;
2017-01-14 07:52:05 +01:00
2017-10-04 13:02:35 +02:00
$navbar-toggler-padding-y : .25 rem !default ;
$navbar-toggler-padding-x : .75 rem !default ;
$navbar-toggler-font-size : $font-size-lg !default ;
$navbar-toggler-border-radius : $btn-border-radius !default ;
2016-05-13 06:49:03 +02:00
2017-10-22 23:00:00 +02:00
$navbar-dark-color : rgba ( $white , .5 ) !default ;
$navbar-dark-hover-color : rgba ( $white , .75 ) !default ;
2017-10-10 07:58:35 +02:00
$navbar-dark-active-color : $white !default ;
2017-10-22 23:00:00 +02:00
$navbar-dark-disabled-color : rgba ( $white , .25 ) !default ;
2018-10-21 09:03:17 +02:00
$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 ;
2017-10-22 23:00:00 +02:00
$navbar-dark-toggler-border-color : rgba ( $white , .1 ) !default ;
2015-08-18 09:46:29 +02:00
2017-10-22 23:00:00 +02:00
$navbar-light-color : rgba ( $black , .5 ) !default ;
$navbar-light-hover-color : rgba ( $black , .7 ) !default ;
$navbar-light-active-color : rgba ( $black , .9 ) !default ;
$navbar-light-disabled-color : rgba ( $black , .3 ) !default ;
2018-10-21 09:03:17 +02:00
$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 ;
2017-10-22 23:00:00 +02:00
$navbar-light-toggler-border-color : rgba ( $black , .1 ) !default ;
2014-12-02 23:02:35 +01:00
2018-09-11 12:56:56 +02:00
$navbar-light-brand-color : $navbar-light-active-color !default ;
$navbar-light-brand-hover-color : $navbar-light-active-color !default ;
$navbar-dark-brand-color : $navbar-dark-active-color !default ;
$navbar-dark-brand-hover-color : $navbar-dark-active-color !default ;
2018-07-09 00:31:18 +02:00
2018-12-22 05:59:40 +01:00
// Dropdowns
//
// Dropdown menu container and contents.
$dropdown-min-width : 10 rem !default ;
$dropdown-padding-y : .5 rem !default ;
$dropdown-spacer : .125 rem !default ;
$dropdown-bg : $white !default ;
$dropdown-border-color : rgba ( $black , .15 ) !default ;
$dropdown-border-radius : $border-radius !default ;
$dropdown-border-width : $border-width !default ;
$dropdown-inner-border-radius : calc ( #{ $dropdown-border-radius } - #{ $dropdown-border-width } ) !default ;
$dropdown-divider-bg : $gray-200 !default ;
$dropdown-divider-margin-y : $nav-divider-margin-y !default ;
$dropdown-box-shadow : 0 .5 rem 1 rem rgba ( $black , .175 ) !default ;
$dropdown-link-color : $gray-900 !default ;
$dropdown-link-hover-color : darken ( $gray-900 , 5 % ) !default ;
$dropdown-link-hover-bg : $gray-100 !default ;
$dropdown-link-active-color : $component-active-color !default ;
$dropdown-link-active-bg : $component-active-bg !default ;
$dropdown-link-disabled-color : $gray-600 !default ;
$dropdown-item-padding-y : .25 rem !default ;
$dropdown-item-padding-x : 1 .5 rem !default ;
$dropdown-header-color : $gray-600 !default ;
2016-12-24 21:35:08 +01:00
// Pagination
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$pagination-padding-y : .5 rem !default ;
$pagination-padding-x : .75 rem !default ;
$pagination-padding-y-sm : .25 rem !default ;
$pagination-padding-x-sm : .5 rem !default ;
$pagination-padding-y-lg : .75 rem !default ;
$pagination-padding-x-lg : 1 .5 rem !default ;
$pagination-line-height : 1 .25 !default ;
2015-08-14 08:04:16 +02:00
2017-10-04 13:02:35 +02:00
$pagination-color : $link-color !default ;
$pagination-bg : $white !default ;
$pagination-border-width : $border-width !default ;
2017-10-30 13:30:22 +01:00
$pagination-border-color : $gray-300 !default ;
2014-12-02 23:02:35 +01:00
2017-12-31 07:50:43 +01:00
$pagination-focus-box-shadow : $input-btn-focus-box-shadow !default ;
2018-01-19 01:47:47 +01:00
$pagination-focus-outline : 0 !default ;
2017-12-31 07:50:43 +01:00
2017-10-04 13:02:35 +02:00
$pagination-hover-color : $link-hover-color !default ;
$pagination-hover-bg : $gray-200 !default ;
2017-10-30 13:30:22 +01:00
$pagination-hover-border-color : $gray-300 !default ;
2014-12-02 23:02:35 +01:00
2018-01-13 08:56:31 +01:00
$pagination-active-color : $component-active-color !default ;
$pagination-active-bg : $component-active-bg !default ;
$pagination-active-border-color : $pagination-active-bg !default ;
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$pagination-disabled-color : $gray-600 !default ;
$pagination-disabled-bg : $white !default ;
2017-10-30 13:30:22 +01:00
$pagination-disabled-border-color : $gray-300 !default ;
2014-12-02 23:02:35 +01:00
2016-12-24 21:35:08 +01:00
// Jumbotron
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$jumbotron-padding : 2 rem !default ;
$jumbotron-bg : $gray-200 !default ;
2014-12-02 23:02:35 +01:00
2016-12-24 21:35:08 +01:00
// Cards
2016-12-23 06:07:51 +01:00
2017-10-04 13:02:35 +02:00
$card-spacer-y : .75 rem !default ;
$card-spacer-x : 1 .25 rem !default ;
$card-border-width : $border-width !default ;
$card-border-radius : $border-radius !default ;
2017-10-22 23:00:00 +02:00
$card-border-color : rgba ( $black , .125 ) !default ;
2017-10-04 13:02:35 +02:00
$card-inner-border-radius : calc ( #{ $card-border-radius } - #{ $card-border-width } ) !default ;
$card-cap-bg : rgba ( $black , .03 ) !default ;
2018-11-17 10:16:16 +01:00
$card-cap-color : inherit !default ;
2017-10-04 13:02:35 +02:00
$card-bg : $white !default ;
2015-08-19 23:34:26 +02:00
2017-10-04 13:02:35 +02:00
$card-img-overlay-padding : 1 .25 rem !default ;
2016-02-17 08:25:18 +01:00
2018-12-14 17:54:44 +01:00
$card-group-margin : $grid-gutter-width / 2 !default ;
2017-10-04 13:02:35 +02:00
$card-deck-margin : $card-group-margin !default ;
2015-12-08 09:51:43 +01:00
2017-10-04 13:02:35 +02:00
$card-columns-count : 3 !default ;
$card-columns-gap : 1 .25 rem !default ;
$card-columns-margin : $card-spacer-y !default ;
2016-02-17 08:00:58 +01:00
2015-09-26 14:57:13 +02:00
2016-12-24 21:35:08 +01:00
// Tooltips
2014-12-02 23:02:35 +01:00
2018-03-08 13:28:32 +01:00
$tooltip-font-size : $font-size-sm !default ;
$tooltip-max-width : 200 px !default ;
$tooltip-color : $white !default ;
$tooltip-bg : $black !default ;
$tooltip-border-radius : $border-radius !default ;
$tooltip-opacity : .9 !default ;
$tooltip-padding-y : .25 rem !default ;
$tooltip-padding-x : .5 rem !default ;
$tooltip-margin : 0 !default ;
2017-11-06 18:29:12 +01:00
2018-03-08 13:28:32 +01:00
$tooltip-arrow-width : .8 rem !default ;
$tooltip-arrow-height : .4 rem !default ;
$tooltip-arrow-color : $tooltip-bg !default ;
2014-12-02 23:02:35 +01:00
2018-09-19 06:27:02 +02:00
// Form tooltips must come after regular tooltips
$form-feedback-tooltip-padding-y : $tooltip-padding-y !default ;
$form-feedback-tooltip-padding-x : $tooltip-padding-x !default ;
$form-feedback-tooltip-font-size : $tooltip-font-size !default ;
$form-feedback-tooltip-line-height : $line-height-base !default ;
$form-feedback-tooltip-opacity : $tooltip-opacity !default ;
$form-feedback-tooltip-border-radius : $tooltip-border-radius !default ;
2014-12-02 23:02:35 +01:00
2016-12-24 21:35:08 +01:00
// Popovers
2014-12-02 23:02:35 +01:00
2017-12-18 20:48:51 +01:00
$popover-font-size : $font-size-sm !default ;
2017-10-04 13:02:35 +02:00
$popover-bg : $white !default ;
$popover-max-width : 276 px !default ;
$popover-border-width : $border-width !default ;
2017-10-22 23:00:00 +02:00
$popover-border-color : rgba ( $black , .2 ) !default ;
2017-12-18 21:08:25 +01:00
$popover-border-radius : $border-radius-lg !default ;
2017-10-22 23:00:00 +02:00
$popover-box-shadow : 0 .25 rem .5 rem rgba ( $black , .2 ) !default ;
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$popover-header-bg : darken ( $popover-bg , 3 % ) !default ;
$popover-header-color : $headings-color !default ;
2017-08-31 17:38:24 +02:00
$popover-header-padding-y : .5 rem !default ;
$popover-header-padding-x : .75 rem !default ;
2017-06-15 07:03:33 +02:00
2017-10-04 13:02:35 +02:00
$popover-body-color : $body-color !default ;
2017-08-31 17:38:24 +02:00
$popover-body-padding-y : $popover-header-padding-y !default ;
$popover-body-padding-x : $popover-header-padding-x !default ;
2014-12-02 23:02:35 +01:00
2017-12-27 06:54:47 +01:00
$popover-arrow-width : 1 rem !default ;
$popover-arrow-height : .5 rem !default ;
2017-10-04 13:02:35 +02:00
$popover-arrow-color : $popover-bg !default ;
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$popover-arrow-outer-color : fade-in ( $popover-border-color , .05 ) !default ;
2014-12-02 23:02:35 +01:00
2017-07-04 01:09:28 +02:00
// Toasts
$toast-max-width : 350 px !default ;
$toast-padding-x : .75 rem !default ;
$toast-padding-y : .25 rem !default ;
$toast-font-size : .875 rem !default ;
$toast-background-color : rgba ( $white , .85 ) !default ;
$toast-border-width : 1 px !default ;
2018-08-23 18:31:25 +02:00
$toast-border-color : rgba ( 0 , 0 , 0 , .1 ) !default ;
2017-07-04 01:09:28 +02:00
$toast-border-radius : .25 rem !default ;
$toast-box-shadow : 0 .25 rem .75 rem rgba ( $black , .1 ) !default ;
$toast-header-color : $gray-600 !default ;
$toast-header-background-color : rgba ( $white , .85 ) !default ;
$toast-header-border-color : rgba ( 0 , 0 , 0 , .05 ) !default ;
2016-12-24 21:35:08 +01:00
// Badges
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$badge-font-size : 75 % !default ;
$badge-font-weight : $font-weight-bold !default ;
$badge-padding-y : .25 em !default ;
$badge-padding-x : .4 em !default ;
$badge-border-radius : $border-radius !default ;
2016-10-27 03:33:58 +02:00
2018-12-21 22:55:05 +01:00
$badge-transition : $btn-transition !default ;
$badge-focus-width : $input-btn-focus-width !default ;
2017-10-04 13:02:35 +02:00
$badge-pill-padding-x : .6 em !default ;
2016-02-16 09:30:40 +01:00
// Use a higher than normal value to ensure completely rounded edges when
// customizing padding or font-size on labels.
2017-10-04 13:02:35 +02:00
$badge-pill-border-radius : 10 rem !default ;
2014-12-02 23:02:35 +01:00
2016-10-19 10:17:55 +02:00
2016-12-24 21:35:08 +01:00
// Modals
2014-12-02 23:02:35 +01:00
2015-03-09 15:18:25 +01:00
// Padding applied to the modal body
2018-03-08 13:28:32 +01:00
$modal-inner-padding : 1 rem !default ;
2014-12-02 23:02:35 +01:00
2018-03-08 13:28:32 +01:00
$modal-dialog-margin : .5 rem !default ;
$modal-dialog-margin-y-sm-up : 1 .75 rem !default ;
2016-02-16 08:10:38 +01:00
2017-10-04 13:02:35 +02:00
$modal-title-line-height : $line-height-base !default ;
2014-12-02 23:02:35 +01:00
2018-03-08 13:28:32 +01:00
$modal-content-bg : $white !default ;
$modal-content-border-color : rgba ( $black , .2 ) !default ;
$modal-content-border-width : $border-width !default ;
$modal-content-border-radius : $border-radius-lg !default ;
$modal-content-box-shadow-xs : 0 .25 rem .5 rem rgba ( $black , .5 ) !default ;
$modal-content-box-shadow-sm-up : 0 .5 rem 1 rem rgba ( $black , .5 ) !default ;
$modal-backdrop-bg : $black !default ;
$modal-backdrop-opacity : .5 !default ;
2018-12-18 11:12:30 +01:00
$modal-header-border-color : $border-color !default ;
2018-03-08 13:28:32 +01:00
$modal-footer-border-color : $modal-header-border-color !default ;
$modal-header-border-width : $modal-content-border-width !default ;
$modal-footer-border-width : $modal-header-border-width !default ;
2018-09-19 06:33:31 +02:00
$modal-header-padding-y : 1 rem !default ;
$modal-header-padding-x : 1 rem !default ;
$modal-header-padding : $modal-header-padding-y $modal-header-padding-x !default ; // Keep this for backwards compatibility
2014-12-02 23:02:35 +01:00
2018-07-08 01:16:43 +02:00
$modal-xl : 1140 px !default ;
2017-10-04 13:02:35 +02:00
$modal-lg : 800 px !default ;
$modal-md : 500 px !default ;
$modal-sm : 300 px !default ;
2014-12-02 23:02:35 +01:00
2018-08-13 09:00:53 +02:00
$modal-fade-transform : translate ( 0 , - 50 px ) !default ;
$modal-show-transform : none !default ;
2017-10-04 13:02:35 +02:00
$modal-transition : transform .3 s ease-out !default ;
2016-12-20 05:33:17 +01:00
2014-12-02 23:02:35 +01:00
2016-12-24 21:35:08 +01:00
// Alerts
2014-12-02 23:02:35 +01:00
//
2015-03-09 15:18:25 +01:00
// Define alert colors, border radius, and padding.
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$alert-padding-y : .75 rem !default ;
$alert-padding-x : 1 .25 rem !default ;
$alert-margin-bottom : 1 rem !default ;
$alert-border-radius : $border-radius !default ;
$alert-link-font-weight : $font-weight-bold !default ;
$alert-border-width : $border-width !default ;
2014-12-02 23:02:35 +01:00
2017-12-24 23:36:22 +01:00
$alert-bg-level : - 10 !default ;
$alert-border-level : - 9 !default ;
2017-12-27 01:51:30 +01:00
$alert-color-level : 6 !default ;
2017-12-24 23:36:22 +01:00
2014-12-02 23:02:35 +01:00
2016-12-24 21:35:08 +01:00
// Progress bars
2014-12-02 23:02:35 +01:00
2017-10-19 17:16:38 +02:00
$progress-height : 1 rem !default ;
2019-01-03 19:59:18 +01:00
$progress-font-size : $font-size-base * .75 !default ;
2017-10-19 17:16:38 +02:00
$progress-bg : $gray-200 !default ;
$progress-border-radius : $border-radius !default ;
2017-10-22 23:00:00 +02:00
$progress-box-shadow : inset 0 .1 rem .1 rem rgba ( $black , .1 ) !default ;
2017-10-19 17:16:38 +02:00
$progress-bar-color : $white !default ;
2018-12-16 00:59:16 +01:00
$progress-bar-bg : theme-color ( " primary " ) !default ;
2017-10-19 17:16:38 +02:00
$progress-bar-animation-timing : 1 s linear infinite !default ;
$progress-bar-transition : width .6 s ease !default ;
2014-12-02 23:02:35 +01:00
2018-09-16 23:32:11 +02:00
2016-12-24 21:35:08 +01:00
// List group
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$list-group-bg : $white !default ;
2017-10-22 23:00:00 +02:00
$list-group-border-color : rgba ( $black , .125 ) !default ;
2017-10-04 13:02:35 +02:00
$list-group-border-width : $border-width !default ;
$list-group-border-radius : $border-radius !default ;
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$list-group-item-padding-y : .75 rem !default ;
$list-group-item-padding-x : 1 .25 rem !default ;
2016-12-28 22:45:07 +01:00
2017-10-04 13:02:35 +02:00
$list-group-hover-bg : $gray-100 !default ;
$list-group-active-color : $component-active-color !default ;
$list-group-active-bg : $component-active-bg !default ;
$list-group-active-border-color : $list-group-active-bg !default ;
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$list-group-disabled-color : $gray-600 !default ;
$list-group-disabled-bg : $list-group-bg !default ;
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$list-group-action-color : $gray-700 !default ;
$list-group-action-hover-color : $list-group-action-color !default ;
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$list-group-action-active-color : $body-color !default ;
$list-group-action-active-bg : $gray-200 !default ;
2016-02-17 07:57:10 +01:00
2014-12-02 23:02:35 +01:00
2016-12-24 21:35:08 +01:00
// Image thumbnails
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$thumbnail-padding : .25 rem !default ;
$thumbnail-bg : $body-bg !default ;
$thumbnail-border-width : $border-width !default ;
2017-10-30 13:30:22 +01:00
$thumbnail-border-color : $gray-300 !default ;
2017-10-04 13:02:35 +02:00
$thumbnail-border-radius : $border-radius !default ;
2017-10-22 23:00:00 +02:00
$thumbnail-box-shadow : 0 1 px 2 px rgba ( $black , .075 ) !default ;
2014-12-02 23:02:35 +01:00
2016-12-24 21:35:08 +01:00
// Figures
2016-02-17 07:31:40 +01:00
2017-10-04 13:02:35 +02:00
$figure-caption-font-size : 90 % !default ;
$figure-caption-color : $gray-600 !default ;
2016-02-17 07:31:40 +01:00
2016-12-24 21:35:08 +01:00
// Breadcrumbs
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$breadcrumb-padding-y : .75 rem !default ;
$breadcrumb-padding-x : 1 rem !default ;
$breadcrumb-item-padding : .5 rem !default ;
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$breadcrumb-margin-bottom : 1 rem !default ;
2017-08-11 07:59:21 +02:00
2017-10-04 13:02:35 +02:00
$breadcrumb-bg : $gray-200 !default ;
$breadcrumb-divider-color : $gray-600 !default ;
$breadcrumb-active-color : $gray-600 !default ;
2018-04-02 03:15:57 +02:00
$breadcrumb-divider : quote ( " / " ) !default ;
2014-12-02 23:02:35 +01:00
2018-03-12 17:55:47 +01:00
$breadcrumb-border-radius : $border-radius !default ;
2014-12-02 23:02:35 +01:00
2016-12-24 21:35:08 +01:00
// Carousel
2014-12-02 23:02:35 +01:00
2018-08-26 13:53:36 +02:00
$carousel-control-color : $white !default ;
$carousel-control-width : 15 % !default ;
$carousel-control-opacity : .5 !default ;
2018-10-21 09:13:35 +02:00
$carousel-control-hover-opacity : .9 !default ;
$carousel-control-transition : opacity .15 s ease !default ;
2014-12-02 23:02:35 +01:00
2018-08-26 13:53:36 +02:00
$carousel-indicator-width : 30 px !default ;
$carousel-indicator-height : 3 px !default ;
$carousel-indicator-hit-area-height : 10 px !default ;
$carousel-indicator-spacer : 3 px !default ;
$carousel-indicator-active-bg : $white !default ;
$carousel-indicator-transition : opacity .6 s ease !default ;
2014-12-02 23:02:35 +01:00
2018-08-26 13:53:36 +02:00
$carousel-caption-width : 70 % !default ;
$carousel-caption-color : $white !default ;
2014-12-02 23:02:35 +01:00
2018-08-26 13:53:36 +02:00
$carousel-control-icon-width : 20 px !default ;
2016-02-17 05:46:52 +01:00
2018-10-21 09:03:17 +02:00
$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 ;
$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 ;
2016-12-05 06:54:45 +01:00
2018-10-29 21:11:50 +01:00
$carousel-transition-duration : .6 s !default ;
2018-10-31 08:45:39 +01:00
$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`)
2016-12-20 05:33:17 +01:00
2014-12-02 23:02:35 +01:00
2017-07-02 03:51:53 +02:00
// Spinners
$spinner-width : 2 rem !default ;
$spinner-height : $spinner-width !default ;
$spinner-border-width : .25 em !default ;
$spinner-width-sm : 1 rem !default ;
$spinner-height-sm : $spinner-width-sm !default ;
$spinner-border-width-sm : .2 em !default ;
2016-12-24 21:35:08 +01:00
// Close
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$close-font-size : $font-size-base * 1 .5 !default ;
$close-font-weight : $font-weight-bold !default ;
$close-color : $black !default ;
$close-text-shadow : 0 1 px 0 $white !default ;
2014-12-02 23:02:35 +01:00
2018-09-16 23:32:11 +02:00
2016-12-24 21:35:08 +01:00
// Code
2014-12-02 23:02:35 +01:00
2017-12-23 01:49:57 +01:00
$code-font-size : 87 .5 % !default ;
$code-color : $pink !default ;
2014-12-02 23:02:35 +01:00
2017-12-23 01:49:57 +01:00
$kbd-padding-y : .2 rem !default ;
$kbd-padding-x : .4 rem !default ;
$kbd-font-size : $code-font-size !default ;
2017-10-04 13:02:35 +02:00
$kbd-color : $white !default ;
$kbd-bg : $gray-900 !default ;
2014-12-02 23:02:35 +01:00
2017-10-04 13:02:35 +02:00
$pre-color : $gray-900 !default ;
$pre-scrollable-max-height : 340 px !default ;
2018-01-04 01:01:03 +01:00
2018-09-19 04:54:56 +02:00
// Utilities
2018-12-29 03:54:58 +01:00
$displays : none , inline , inline-block , block , table , table-row , table-cell , flex , inline-flex !default ;
2018-09-19 04:54:56 +02:00
$overflows : auto , hidden !default ;
$positions : static , relative , absolute , fixed , sticky !default ;
2018-01-04 01:01:03 +01:00
// Printing
2018-09-16 23:32:11 +02:00
2018-01-04 01:01:03 +01:00
$print-page-size : a3 !default ;
$print-body-min-width : map-get ( $grid-breakpoints , " lg " ) !default ;