Tweak Checkbox styles for the actor sheet
This commit is contained in:
parent
8c9d8125f2
commit
022a63f12f
3 changed files with 28 additions and 0 deletions
|
|
@ -66,6 +66,29 @@
|
|||
opacity: 60%;
|
||||
}
|
||||
|
||||
input[type="checkbox"] {
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
appearance: none;
|
||||
border-radius: 2px;
|
||||
margin: 0;
|
||||
cursor: pointer;
|
||||
|
||||
background: var(--elevation-8dp-bg);
|
||||
position: relative;
|
||||
&:checked::before {
|
||||
content: "";
|
||||
background: var(--color-checkbox-checked);
|
||||
border-radius: 3px;
|
||||
$margin: 4px;
|
||||
top: $margin;
|
||||
bottom: $margin;
|
||||
left: $margin;
|
||||
right: $margin;
|
||||
position: absolute;
|
||||
}
|
||||
}
|
||||
|
||||
.page-content {
|
||||
padding: 16px;
|
||||
padding-bottom: 69px;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue