forked from GitHub-Mirrors/foundry-sw5e
36 lines
No EOL
989 B
Text
36 lines
No EOL
989 B
Text
input[type="text"], input[type="number"], input[type="password"], input[type="date"], input[type="time"], select, textarea {
|
|
border: 1px solid @inputBorderNormal;
|
|
color: @inputTextColor;
|
|
&:hover {
|
|
border-color: @inputBorderHover;
|
|
}
|
|
&:focus {
|
|
border-color: @inputBorderFocus;
|
|
}
|
|
}
|
|
|
|
button, input[type="button"], input[type="submit"], input[type="reset"] {
|
|
background: @buttonBackground;
|
|
color: @buttonTextColor;
|
|
&:hover, &:focus {
|
|
background: @buttonHoverBackground;
|
|
}
|
|
&:disabled {
|
|
&:hover, &:focus {
|
|
background: @buttonBackground;
|
|
}
|
|
}
|
|
|
|
}
|
|
input[type="reset"], button.secondary, button[type="reset"], input[type="button"].secondary, input[type="submit"].secondary {
|
|
background: @buttonSecondaryBackground;
|
|
color: @buttonSecondaryTextColor;
|
|
&:hover {
|
|
background: @buttonSecondaryHoverBackground;
|
|
}
|
|
&:disabled {
|
|
&:hover, &:focus {
|
|
background: @buttonSecondaryBackground;
|
|
}
|
|
}
|
|
} |