salix/client/core/src/components/textfield/style.scss

45 lines
1013 B
SCSS
Raw Normal View History

vn-textfield {
2018-06-21 07:12:35 +00:00
.mdl-chip__action {
position: absolute;
width: auto;
top: 0px;
right: -6px;
margin: 21px 0px;
background: white;
opacity: 1;
z-index: 1;
color: #aaa;
}
.mdl-textfield {
2018-06-20 06:41:59 +00:00
width: 100%;
}
2018-06-21 07:12:35 +00:00
.mdl-textfield__error {
2018-06-20 06:41:59 +00:00
visibility: visible;
2018-06-21 07:12:35 +00:00
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
2018-06-20 06:41:59 +00:00
width: 100%;
}
2018-06-21 07:12:35 +00:00
.mdl-textfield.invalid {
.mdl-textfield__input {
border-color: #d50000;
box-shadow: none;
}
.mdl-textfield__label::after {
background-color: #d50000;
}
2018-06-20 06:41:59 +00:00
}
2018-06-21 07:12:35 +00:00
.mdl-textfield--floating-label.invalid .mdl-textfield__label {
color: #d50000;
font-size: 12px;
top: 4px;
}
2018-06-21 07:12:35 +00:00
.material-icons {
font-size: 18px;
float: right;
margin-right: 5px;
}
2018-06-21 07:12:35 +00:00
.material-icons:hover {
color: rgba(0,0,0, .87);
2017-12-19 11:29:35 +00:00
}
}