[stylesheets] debug

This commit is contained in:
Maxim Kadushkin 2020-12-19 22:44:59 +03:00
parent 3f7e982b79
commit 09c5ccf449
2 changed files with 20 additions and 11 deletions

View file

@ -10,8 +10,8 @@
width: @combo-dataview-width; width: @combo-dataview-width;
height: 100%; height: 100%;
.border-radius(@border-radius-small); .border-radius(@border-radius-small);
border: 1px solid @input-border; border: 1px solid @border-regular-control;
background-color: @input-bg; background-color: @background-normal;
.dataview { .dataview {
padding: 1px; padding: 1px;
@ -24,8 +24,8 @@
button { button {
border-radius:0 @border-radius-small @border-radius-small 0; border-radius:0 @border-radius-small @border-radius-small 0;
border: 1px solid @input-border; border: 1px solid @border-regular-control;
background-color: @input-bg; background-color: @background-normal;
&.dropdown-toggle { &.dropdown-toggle {
.inner-box-caret { .inner-box-caret {
@ -125,7 +125,7 @@
width: auto; width: auto;
position: relative; position: relative;
border: none; border: none;
.box-shadow(0 0 0 1px @body-bg); .box-shadow(0 0 0 1px @background-normal);
> div { > div {
background-repeat: no-repeat; background-repeat: no-repeat;
@ -142,15 +142,24 @@
padding: 0; padding: 0;
.caret { .caret {
width: 27px; //width: 27px;
height: 27px; //height: 27px;
background-position: @arrow-big-offset-x @arrow-big-offset-y; //background-position: @arrow-big-offset-x @arrow-big-offset-y;
transition: transform .2s; width: 8px;
height: 8px;
background-color: transparent;
border: solid 1px @border-regular-control;
border-bottom: none;
border-right: none;
background-image: none;
transition: transform 0.2s ease;
transform: rotate(-135deg) translate(2px,2px);
} }
&.active { &.active {
.caret { .caret {
transform: rotate(180deg); transform: rotate(45deg);
} }
} }
} }

View file

@ -1,6 +1,6 @@
.theme-colorpalette { .theme-colorpalette {
margin: 0 !important; margin: 0 !important;
color: black; //color: black;
em { em {
border: none; border: none;