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