mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-17 05:13:32 +00:00
17 lines
265 B
SCSS
17 lines
265 B
SCSS
/* element attempts matching input styles */
|
|
.textInput {
|
|
padding-top: 0.25rem;
|
|
height: 2rem;
|
|
background-color: transparent;
|
|
border-radius: 3px;
|
|
|
|
&.muted {
|
|
color: $label-gray;
|
|
}
|
|
|
|
&:hover {
|
|
background-color: $gray-1100;
|
|
cursor: text;
|
|
}
|
|
}
|