Files
STIXMODELER_UI/stix-modeler-app/src/components/ui/inputs/text.scss
2025-10-14 09:45:57 -04:00

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;
}