mirror of
https://github.com/JHUAPL/STIXMODELER_UI.git
synced 2026-01-09 14:27:56 -05:00
49 lines
622 B
SCSS
49 lines
622 B
SCSS
@use '../../../defaults';
|
|
|
|
input:focus,
|
|
textarea:focus,
|
|
select {
|
|
outline: none;
|
|
}
|
|
|
|
input.def,
|
|
textarea,
|
|
select {
|
|
height: 39px;
|
|
border: 1px solid defaults.$standard-border-color;
|
|
background-color: transparent;
|
|
width: 97%;
|
|
padding-left: 10px;
|
|
color: defaults.$dark-font-0;
|
|
font-size: 16px;
|
|
font-family: defaults.$default-font-family;
|
|
}
|
|
|
|
input.def {
|
|
background-color: white;
|
|
}
|
|
|
|
textarea {
|
|
height: 80px;
|
|
}
|
|
|
|
select {
|
|
height: 44px;
|
|
}
|
|
|
|
::-webkit-input-placeholder {
|
|
color: #4f5257;
|
|
}
|
|
|
|
::-ms-input-placeholder {
|
|
color: red;
|
|
}
|
|
|
|
::-moz-placeholder {
|
|
color: red;
|
|
}
|
|
|
|
::-moz-placeholder {
|
|
color: red;
|
|
}
|