|
| 1 | +$bg: $body-bg !default; |
| 2 | +$fg: $text-color !default; // BS3 |
| 3 | +$theme-colors: ("primary": $brand-primary, "info": $brand-info, "warning": $brand-warning, "danger": $brand-danger) !default; |
| 4 | + |
| 5 | +// No $border-width, $border-color, or $border-radius in BS3 |
| 6 | +$border-width: 1px !default; |
| 7 | +$border-color: mix($bg, $fg, 70%) !default; |
| 8 | +$border-radius: $border-radius-base !default; |
| 9 | + |
| 10 | +$shiny-disconnected-bg: mix($bg, $fg, 58%) !default; |
| 11 | +$shiny-table-na: mix($bg, $fg, 54%) !default; |
| 12 | +$shiny-error-validated-color: mix($bg, $fg, 50%) !default; |
| 13 | +$shiny-progress-text-bg-color: #eef8ff !default; |
| 14 | +$shiny-input-panel-bg: mix($bg, $fg, 96%) !default; |
| 15 | +$shiny-input-panel-border: $border-width solid $border-color !default; |
| 16 | +$shiny-input-panel-border-radius: $border-radius !default; |
| 17 | +$shiny-text-output-border-radius: $border-radius !default; |
| 18 | +$notification-bg-color: mix($bg, $fg, 90%) !default; |
| 19 | +$notification-color: $fg !default; |
| 20 | +$notification-border: $border-width solid $border-color !default; |
| 21 | +$notification-border-radius: $border-radius !default; |
| 22 | +$notification-message-bg: mix($bg, map-get($theme-colors, "info"), 90%) !default; |
| 23 | +$notification-message-color: mix($fg, map-get($theme-colors, "info"), 10%) !default; |
| 24 | +$notification-message-border: $border-width solid mix($bg, map-get($theme-colors, "info"), 53%) !default; |
| 25 | +$notification-warning-bg: mix($bg, map-get($theme-colors, "warning"), 90%) !default; |
| 26 | +$notification-warning-color: mix($fg, map-get($theme-colors, "warning"), 10%) !default; |
| 27 | +$notification-warning-border: $border-width solid mix($bg, map-get($theme-colors, "warning"), 71%) !default; |
| 28 | +$notification-error-bg: mix($bg, map-get($theme-colors, "danger"), 90%) !default; |
| 29 | +$notification-error-color: mix($fg, map-get($theme-colors, "danger"), 10%) !default; |
| 30 | +$notification-error-border: $border-width solid mix($bg, map-get($theme-colors, "danger"), 79%) !default; |
| 31 | +$notification-close-color: mix($bg, $fg, 20%) !default; |
| 32 | +$notification-close-hover-color: $fg !default; |
| 33 | +$notification-content-action-color: map-get($theme-colors, "primary") !default; |
| 34 | +$datepicker-disabled-color: $dropdown-link-disabled-color !default; |
0 commit comments