LookupPickerField styles in Halo #PL-5807

This commit is contained in:
Yuriy Artamonov 2015-08-26 11:01:52 +00:00
parent d6817368b5
commit cd01d8ad69
2 changed files with 21 additions and 1 deletions

View File

@ -33,6 +33,8 @@
}
.v-button {
display: block !important;
text-align: center !important;
padding: 0;
min-width: $v-unit-size;
height: $v-unit-size;
@ -42,7 +44,7 @@
border-top-left-radius: 0;
border-bottom-left-radius: 0;
border-left-color: transparent;
border-left: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
@ -70,11 +72,23 @@
background: transparent;
}
&:focus:after {
border-color: transparent;
@include box-shadow(none);
}
&:active:after {
@if type-of($v-textfield-background-color) == color {
@include valo-button-active-style($v-textfield-background-color);
}
}
.v-button-wrap {
.v-button-caption {
display: none;
}
}
}
.v-slot:last-child .v-button {

View File

@ -10,4 +10,10 @@
overflow-y: visible !important;
}
}
.#{$primary-stylename}.v-readonly {
.#{$primary-stylename}-button {
display: none;
}
}
}