@open-rlb/ng-bootstrap 3.1.7 → 3.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -131,7 +131,7 @@ $red: #f46a6a;
|
|
|
131
131
|
$orange: #f1734f;
|
|
132
132
|
$yellow: #f1b44c;
|
|
133
133
|
$green: #34c38f;
|
|
134
|
-
$teal: #
|
|
134
|
+
$teal: #20c997;
|
|
135
135
|
$cyan: #50a5f1;
|
|
136
136
|
// scss-docs-end color-variables
|
|
137
137
|
|
|
@@ -180,7 +180,7 @@ $theme-colors: (
|
|
|
180
180
|
|
|
181
181
|
// The contrast ratio to reach against white, to determine if color changes from "light" to "dark". Acceptable values for WCAG 2.0 are 3, 4.5 and 7.
|
|
182
182
|
// See https://www.w3.org/TR/WCAG20/#visual-audio-contrast-contrast
|
|
183
|
-
$min-contrast-ratio:
|
|
183
|
+
$min-contrast-ratio: 3;
|
|
184
184
|
|
|
185
185
|
// Customize the light and dark text colors for use in our color contrast function.
|
|
186
186
|
$color-contrast-dark: $black;
|
|
@@ -454,7 +454,7 @@ $escaped-characters: (
|
|
|
454
454
|
|
|
455
455
|
$enable-caret: false;
|
|
456
456
|
$enable-rounded: true;
|
|
457
|
-
$enable-shadows:
|
|
457
|
+
$enable-shadows: true;
|
|
458
458
|
$enable-gradients: false;
|
|
459
459
|
$enable-transitions: true;
|
|
460
460
|
$enable-reduced-motion: true;
|
|
@@ -605,7 +605,7 @@ $container-max-widths: (
|
|
|
605
605
|
// Set the number of columns and specify the width of the gutters.
|
|
606
606
|
|
|
607
607
|
$grid-columns: 12;
|
|
608
|
-
$grid-gutter-width:
|
|
608
|
+
$grid-gutter-width: 1.5rem;
|
|
609
609
|
$grid-row-columns: 6;
|
|
610
610
|
|
|
611
611
|
// Container padding
|
|
@@ -632,7 +632,7 @@ $border-color-translucent: $gray-400;
|
|
|
632
632
|
// scss-docs-end border-variables
|
|
633
633
|
|
|
634
634
|
// scss-docs-start border-radius-variables
|
|
635
|
-
$border-radius: .
|
|
635
|
+
$border-radius: .375rem;
|
|
636
636
|
$border-radius-sm: .2rem;
|
|
637
637
|
$border-radius-lg: .4rem;
|
|
638
638
|
$border-radius-xl: 1rem;
|
|
@@ -701,7 +701,7 @@ $font-family-code: var(--#{$prefix}font-monospace);
|
|
|
701
701
|
// $font-size-root effects the value of `rem`, which is used for as well font sizes, paddings and margins
|
|
702
702
|
// $font-size-base effects the font size of the body text
|
|
703
703
|
$font-size-root: null;
|
|
704
|
-
$font-size-base:
|
|
704
|
+
$font-size-base: 1rem;
|
|
705
705
|
$font-size-sm: $font-size-base * .875;
|
|
706
706
|
$font-size-lg: $font-size-base * 1.25;
|
|
707
707
|
|
|
@@ -820,7 +820,7 @@ $table-color: var(--#{$prefix}body-color);
|
|
|
820
820
|
$table-bg: var(--#{$prefix}secondary-bg);
|
|
821
821
|
$table-accent-bg: transparent;
|
|
822
822
|
|
|
823
|
-
$table-th-font-weight:
|
|
823
|
+
$table-th-font-weight: 600;
|
|
824
824
|
|
|
825
825
|
$table-striped-color: $table-color;
|
|
826
826
|
$table-striped-bg-factor: 1;
|
|
@@ -1415,16 +1415,16 @@ $placeholder-opacity-min: .2;
|
|
|
1415
1415
|
// Cards
|
|
1416
1416
|
|
|
1417
1417
|
// scss-docs-start card-variables
|
|
1418
|
-
$card-spacer-y: 1.
|
|
1419
|
-
$card-spacer-x: 1.
|
|
1418
|
+
$card-spacer-y: 1.5rem;
|
|
1419
|
+
$card-spacer-x: 1.5rem;
|
|
1420
1420
|
$card-title-spacer-y: $spacer * .5;
|
|
1421
1421
|
$card-title-color: var(--#{$prefix}emphasis-color);
|
|
1422
1422
|
$card-subtitle-color: null;
|
|
1423
1423
|
$card-border-width: 0;
|
|
1424
1424
|
$card-border-color: var(--#{$prefix}border-color);
|
|
1425
|
-
$card-border-radius:
|
|
1426
|
-
$card-box-shadow:
|
|
1427
|
-
$card-inner-border-radius:
|
|
1425
|
+
$card-border-radius: 1rem; // Soft bubbly cards
|
|
1426
|
+
$card-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
|
|
1427
|
+
$card-inner-border-radius: calc(#{$card-border-radius} - 1px);
|
|
1428
1428
|
$card-cap-padding-y: $card-spacer-y * .5;
|
|
1429
1429
|
$card-cap-padding-x: $card-spacer-x;
|
|
1430
1430
|
$card-cap-bg: var(--#{$prefix}tertiary-bg);
|
|
@@ -1824,18 +1824,3 @@ $kbd-bg: var(--#{$prefix}body-color);
|
|
|
1824
1824
|
$nested-kbd-font-weight: null; // Deprecated in v5.2.0, removing in v6
|
|
1825
1825
|
|
|
1826
1826
|
$pre-color: null;
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
// Dimensions and Light Shadows
|
|
1830
|
-
$enable-shadows: true;
|
|
1831
|
-
$card-border-radius: 1rem;
|
|
1832
|
-
$card-inner-border-radius: calc(#{$card-border-radius} - 1px);
|
|
1833
|
-
$card-spacer-y: 1.5rem;
|
|
1834
|
-
$card-spacer-x: 1.5rem;
|
|
1835
|
-
$card-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08); // Soft shadow for light mode
|
|
1836
|
-
$badge-border-radius: 0.375rem;
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
$input-border-radius: 0.5rem;
|
|
1840
|
-
$input-padding-y: 0.65rem;
|
|
1841
|
-
$input-padding-x: 1rem;
|