[Redizajn 1KA] - Moje ankete --> Nova anketa - popravek (sprememba active barve)

This commit is contained in:
tejagerjovic 2022-03-17 13:19:41 +01:00
parent 4e2529e1b8
commit 8099e22ef9
4 changed files with 23 additions and 13 deletions

View File

@ -21097,11 +21097,12 @@ div#main.hide_header {
margin-left: 0;
}
#new_anketa_div .layout_left_item .item.active {
background-color: #1E88E5;
color: #FFFFFF;
background-color: #EEF7FF;
color: #1E88E5;
border-color: #1E88E5;
}
#new_anketa_div .layout_left_item .item.active:hover {
background-color: #187bd1;
background-color: #d5ebff;
}
#new_anketa_div .layout_left_item ul {
list-style-type: none;
@ -21325,15 +21326,18 @@ and open the template in the editor.
-webkit-border-radius: 2px;
}
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .survey_type_holder .setting.survey_type:hover {
background-color: #f3f3f3;
background-color: #ebebeb;
}
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .survey_type_holder .setting.survey_type span.faicon {
margin-right: 20px;
}
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .survey_type_holder .setting.survey_type.active {
border-color: #1E88E5;
background-color: #1E88E5;
color: #FFFFFF;
background-color: #EEF7FF;
color: #1E88E5;
}
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .survey_type_holder .setting.survey_type.active:hover {
background-color: #d5ebff;
}
#new_anketa_div .layout_right_item .layout_right_centering .fieldset.noSurvey_skin {
overflow: hidden;

View File

@ -6,6 +6,7 @@
$blue: #1E88E5;
$dark-blue: #0059ab;
$medium-blue: #EEF7FF;
$light-blue: #EAF9FE;
$black: #333333;

View File

@ -31,7 +31,7 @@
background-color: $light-gray;
&:hover {
background-color: darken( $light-gray, 5% );
background-color: darken($light-gray, 5%);
}
span.new_survey_menu_icon {
@ -41,11 +41,12 @@
}
.item.active {
background-color: $blue;
color: $white;
background-color: $medium-blue;
color: $blue;
border-color: $blue;
&:hover {
background-color: darken( $blue, 5% );
background-color: darken($medium-blue, 5%);
}
}

View File

@ -258,7 +258,7 @@ $skin_selector: $red;
-webkit-border-radius: 2px;
&:hover{
background-color: darken($light-gray, 2%);
background-color: darken($light-gray, 5%);
}
span.faicon{
@ -268,8 +268,12 @@ $skin_selector: $red;
}
.setting.survey_type.active{
border-color: $blue;
background-color: $blue;
color: $white;
background-color: $medium-blue;
color: $blue;
&:hover{
background-color: darken($medium-blue, 5%);
}
}
}
}