* Has modes for weapons and characters * Shows input when awakening is selected * Saves type and level to server * Redisplays type but level is broken
35 lines
631 B
SCSS
35 lines
631 B
SCSS
.Input {
|
|
-webkit-font-smoothing: antialiased;
|
|
background-color: var(--input-bg);
|
|
border: none;
|
|
border-radius: 6px;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
padding: $unit-2x;
|
|
width: 100%;
|
|
|
|
&.Bound {
|
|
background-color: var(--input-bound-bg);
|
|
|
|
&:hover {
|
|
background-color: var(--input-bound-bg-hover);
|
|
}
|
|
}
|
|
|
|
&.Hidden {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.InputError {
|
|
color: $error;
|
|
font-size: $font-tiny;
|
|
margin: $unit 0;
|
|
padding: calc($unit / 2) ($unit * 2);
|
|
}
|
|
|
|
::placeholder {
|
|
/* Chrome, Firefox, Opera, Safari 10.1+ */
|
|
color: var(--text-secondary) !important;
|
|
opacity: 1; /* Firefox */
|
|
}
|