1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
diff --git a/inst/lib/bsw5/dist/minty/_bootswatch.scss b/inst/lib/bsw5/dist/minty/_bootswatch.scss
index 7f27462..5fc5795 100644
--- a/inst/lib/bsw5/dist/minty/_bootswatch.scss
+++ b/inst/lib/bsw5/dist/minty/_bootswatch.scss
@@ -27,57 +27,6 @@ $web-font-path: "https://fonts.googleapis.com/css2?family=Montserrat:wght@400;50
.btn {
font-family: $headings-font-family;
-
- &,
- &:hover {
- color: $white;
- }
-
- &-light,
- &-light:hover {
- color: $gray-700;
- }
-
- &-link,
- &-link:hover {
- color: $primary;
- }
-
- &-link.disabled:hover {
- color: $gray-600;
- }
-
- &-outline-primary {
- color: $primary;
- }
-
- &-outline-secondary {
- color: $secondary;
- }
-
- &-outline-success {
- color: $success;
- }
-
- &-outline-info {
- color: $info;
- }
-
- &-outline-warning {
- color: $warning;
- }
-
- &-outline-danger {
- color: $danger;
- }
-
- &-outline-dark {
- color: $dark;
- }
-
- &-outline-light {
- color: $light;
- }
}
// Forms
diff --git a/inst/lib/bsw5/dist/minty/_variables.scss b/inst/lib/bsw5/dist/minty/_variables.scss
index b1337d9..13dcaaf 100755
--- a/inst/lib/bsw5/dist/minty/_variables.scss
+++ b/inst/lib/bsw5/dist/minty/_variables.scss
@@ -43,7 +43,8 @@ $min-contrast-ratio: 1.45 !default;
// Body
-$body-color: $gray-600 !default;
+$body-color: $gray-700 !default;
+$color-contrast-dark: $body-color !default; // Prefer $body-color over $black inside color-contrast()
// Components
|