content-text color variable

This commit is contained in:
nixa 2016-05-18 12:40:52 +03:00
parent f487080474
commit 563c03f7d1
9 changed files with 23 additions and 14 deletions

View file

@ -5,7 +5,7 @@
}
.feed-message {
$text-message-color: $default-text;
$text-message-color: $content-text;
$video-message-color: $danger;
$image-message-color: $success;
$geo-message-color: $primary;
@ -86,7 +86,7 @@
border-radius: 5px;
margin: 0 0 0 80px;
padding: 5px 20px;
color: $default-text;
color: $text-message-color;
width: 280px;
height: 70px;

View file

@ -7,7 +7,7 @@
color: $default-text;
text-align: center;
font-size: 18px;
background-color: rgba($default-text, 0.3);
background-color: rgba($content-text, 0.3);
padding: 12px 5px;
}
}

View file

@ -72,7 +72,7 @@ button.btn.btn-primary {
button.btn.btn-default {
border-width: 1px;
color: $default-text;
color: $content-text;
@include buttonColor(transparent, $border);
&:active, &:target {
background-color: rgba(0, 0, 0, 0.2);

View file

@ -33,15 +33,15 @@
.form-group {
label {
margin-bottom: 5px;
color: $default-text;
color: $content-text;
font-weight: $font-normal;
font-size: 13px;
}
}
.form-control {
color: $default-text;
@include placeholderStyle($default-text, 0.7);
color: $content-text;
@include placeholderStyle($content-text, 0.7);
border: 1px solid $input-border;
border-radius: 5px;
background-color: $input-background;
@ -54,6 +54,8 @@
}
}
select.form-control {
padding-left: 8px;
}
@ -224,7 +226,7 @@ label.custom-checkbox {
font-family: fontAwesome;
font-weight: $font-light;
font-size: 12px;
color: $default-text;
color: $content-text;
content: "\a0";
background-color: transparent;
border: 1px solid $border;
@ -318,7 +320,7 @@ label.custom-input-danger {
@mixin validationState($color, $focusColor) {
.control-label {
color: $default-text;
color: $content-text;
}
.form-control {
border: 1px solid $color;
@ -447,10 +449,15 @@ label.custom-input-danger {
border-radius: 5px;
}
.dropdown button.btn.btn-default.dropdown-toggle {
color: $content-text;
}
.bootstrap-select.btn-group {
button.btn.btn-default {
background: transparent;
color: $default-text;
color: $content-text;
&:hover {
background: $default;
box-shadow: none;
@ -491,7 +498,7 @@ label.custom-input-danger {
}
.bootstrap-tagsinput {
color: $default-text;
color: $content-text;
background-color: $input-background;
border: 1px solid $input-border;
border-radius: 5px;

View file

@ -142,7 +142,7 @@ tr.editable-row {
}
a.email-link {
color: $default-text;
color: $content-text;
&:hover {
color: $danger;
}

View file

@ -215,7 +215,7 @@ h5 {
line-height: 14px;
position: relative;
span {
color: $default-text;
color: $content-text;
display: block;
}
ol {

View file

@ -3,7 +3,7 @@ $card-header-font-size: 16px;
.card {
@include scrollbars(.4em, rgba(0, 0, 0, 0.6), rgba(255, 255, 255, 0.7));
color: $default-text;
color: $content-text;
background-color: $default;
border: none;
border-radius: 5px;

View file

@ -1,6 +1,7 @@
$default: rgba(#000000, 0.2);
$body-bg: #F0F3F4;
$default-text: #ffffff;
$content-text: $default-text;
$help-text: #eeeeee;
$label-text: #ffffff;

View file

@ -1,6 +1,7 @@
$default: #ffffff;
$body-bg: #F0F3F4;
$default-text: #666666;
$content-text: $default-text;
$help-text: #949494;
$label-text: #ffffff;