rename borderColor theme variables
This commit is contained in:
parent
ff9cde5d5e
commit
308af338c0
|
@ -28,7 +28,7 @@
|
|||
border-bottom: 1px solid #000000;
|
||||
|
||||
@include themify($themes) {
|
||||
border-bottom-color: themed('borderColor');
|
||||
border-bottom-color: themed('listItemBorderColor');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -203,7 +203,7 @@ $close-text-shadow: 0 1px 0 $white !default;
|
|||
//@include border-top-radius($border-radius-lg);
|
||||
|
||||
@include themify($themes) {
|
||||
border-bottom-color: themed('borderColorDark');
|
||||
border-bottom-color: themed('borderColor');
|
||||
}
|
||||
|
||||
.close {
|
||||
|
@ -249,7 +249,7 @@ $close-text-shadow: 0 1px 0 $white !default;
|
|||
border-top: $modal-footer-border-width solid $modal-footer-border-color;
|
||||
|
||||
@include themify($themes) {
|
||||
border-top-color: themed('borderColorDark');
|
||||
border-top-color: themed('borderColor');
|
||||
}
|
||||
|
||||
// Easily place margin between footer elements
|
||||
|
|
|
@ -39,8 +39,7 @@ $button-color-danger: darken($brand-danger, 10%);
|
|||
$themes: (
|
||||
light: (
|
||||
textColor: $text-color,
|
||||
borderColor: $border-color,
|
||||
borderColorDark: $border-color-dark,
|
||||
borderColor: $border-color-dark,
|
||||
backgroundColor: $background-color,
|
||||
backgroundColorAlt: $background-color-alt,
|
||||
backgroundColorAlt2: $background-color-alt2,
|
||||
|
@ -57,6 +56,7 @@ $themes: (
|
|||
headerInputPlaceholderColor: lighten($brand-primary, 35%),
|
||||
listItemBackgroundColor: $background-color,
|
||||
listItemBackgroundHoverColor: $list-item-hover,
|
||||
listItemBorderColor: $border-color,
|
||||
groupingsActiveColor: darken($background-color-alt, 5%),
|
||||
disabledIconColor: $list-icon-color,
|
||||
headingColor: $gray-light,
|
||||
|
@ -86,7 +86,6 @@ $themes: (
|
|||
dark: (
|
||||
textColor: #ffffff,
|
||||
borderColor: #2f2f2f,
|
||||
borderColorDark: #2f2f2f,
|
||||
backgroundColor: #363636,
|
||||
backgroundColorAlt: #3d3d3d,
|
||||
backgroundColorAlt2: #222222,
|
||||
|
@ -103,6 +102,7 @@ $themes: (
|
|||
headerInputPlaceholderColor: #707070,
|
||||
listItemBackgroundColor: #363636,
|
||||
listItemBackgroundHoverColor: #3c3c3c,
|
||||
listItemBorderColor: #2f2f2f,
|
||||
groupingsActiveColor: #292929,
|
||||
disabledIconColor: #c7c7cd,
|
||||
headingColor: #a3a3a3,
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
@include themify($themes) {
|
||||
background-color: themed('backgroundColorAlt');
|
||||
border-right-color: themed('borderColorDark');
|
||||
border-right-color: themed('borderColor');
|
||||
}
|
||||
|
||||
.inner-content {
|
||||
|
@ -141,7 +141,7 @@
|
|||
|
||||
@include themify($themes) {
|
||||
background-color: themed('backgroundColor');
|
||||
border-right-color: themed('borderColorDark');
|
||||
border-right-color: themed('borderColor');
|
||||
}
|
||||
|
||||
.no-items {
|
||||
|
@ -302,7 +302,7 @@
|
|||
|
||||
@include themify($themes) {
|
||||
background-color: themed('backgroundColorAlt');
|
||||
border-top-color: themed('borderColorDark');
|
||||
border-top-color: themed('borderColor');
|
||||
}
|
||||
|
||||
button {
|
||||
|
|
Loading…
Reference in New Issue