PL-10206 Color indicator in ColorPicker component does not stretch across the width of the component

This commit is contained in:
Roman Pinyazhin 2018-01-11 12:20:57 +04:00
parent 8ca207fb7d
commit f093259165
2 changed files with 19 additions and 0 deletions

View File

@ -55,6 +55,10 @@
margin-bottom: round($v-unit-size/4);
}
.#{$primary-stylename}-button-color {
max-width: none;
}
.c-color-picker-error > .v-colorpicker {
@include valo-textfield-error-style;

View File

@ -20,4 +20,19 @@
border-color: transparent;
box-shadow: none;
}
.#{$primary-stylename}-button-color {
width: 100%;
height: 100%;
min-width: 13px;
margin-top: 0;
margin-right: 0;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.v-colorpicker > .v-button-wrap {
padding: 5px 0 5px 0;
}
}