Redesign - urejanje ankete - popravek toolbox barve

This commit is contained in:
pero1203 2022-03-27 18:58:21 +02:00
parent 65ce0ad591
commit e90a52a849
2 changed files with 40 additions and 24 deletions

View File

@ -11722,22 +11722,14 @@ div#general_popup div.popup_content.publish.qr {
left: 0; left: 0;
top: 220px; top: 220px;
background-color: #F2F2F2; background-color: #F2F2F2;
border-top: 1px #E5E5E5 solid;
border-right: 1px #E5E5E5 solid;
border-bottom: 1px #E5E5E5 solid;
} }
.toolbox_holder .toolbox { .toolbox_holder .toolbox {
cursor: pointer; cursor: pointer;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
/*&#toolbox_basic {
.toolbox_item.new_if,
.toolbox_item.new_block{
background-color: $dark-gray2 !important;
&:hover{
background-color: $dark-gray !important;
}
}
}*/
} }
.toolbox_holder .toolbox .toolbox_item { .toolbox_holder .toolbox .toolbox_item {
display: flex; display: flex;
@ -11745,6 +11737,20 @@ div#general_popup div.popup_content.publish.qr {
border-bottom: 1px #E5E5E5 solid; border-bottom: 1px #E5E5E5 solid;
transition: 0.2s; transition: 0.2s;
} }
.toolbox_holder .toolbox .toolbox_item.open_lib, .toolbox_holder .toolbox .toolbox_item.new_if, .toolbox_holder .toolbox .toolbox_item.new_block {
background-color: #EEF7FF;
border-bottom: 1px #CCE4F9 solid;
}
.toolbox_holder .toolbox .toolbox_item.open_lib:hover, .toolbox_holder .toolbox .toolbox_item.new_if:hover, .toolbox_holder .toolbox .toolbox_item.new_block:hover {
background-color: #CCE4F9;
}
.toolbox_holder .toolbox .toolbox_item.user_access_locked {
background-color: #FFF0C5;
border-bottom: 1px #FFE59C solid;
}
.toolbox_holder .toolbox .toolbox_item.user_access_locked:hover {
background-color: #FFE59C;
}
.toolbox_holder .toolbox .toolbox_item .item_icon { .toolbox_holder .toolbox .toolbox_item .item_icon {
width: 40px; width: 40px;
line-height: 40px; line-height: 40px;

View File

@ -13,7 +13,9 @@
top: 220px; top: 220px;
background-color: $light-gray2; background-color: $light-gray2;
border-top: 1px $gray solid;
border-right: 1px $gray solid;
border-bottom: 1px $gray solid;
// Posamezni toolbox // Posamezni toolbox
.toolbox{ .toolbox{
@ -30,6 +32,26 @@
transition: 0.2s; transition: 0.2s;
&.open_lib,
&.new_if,
&.new_block{
background-color: $medium-blue;
border-bottom: 1px #CCE4F9 solid;
&:hover{
background-color: #CCE4F9;
}
}
&.user_access_locked{
background-color: #FFF0C5;
border-bottom: 1px #FFE59C solid;
&:hover{
background-color: #FFE59C;
}
}
.item_icon{ .item_icon{
width: 40px; width: 40px;
line-height: 40px; line-height: 40px;
@ -125,18 +147,6 @@
} }
} }
} }
/*&#toolbox_basic {
.toolbox_item.new_if,
.toolbox_item.new_block{
background-color: $dark-gray2 !important;
&:hover{
background-color: $dark-gray !important;
}
}
}*/
} }