35 lines
542 B
SCSS
35 lines
542 B
SCSS
/*
|
|
* SPDX-FileCopyrightText: 2021 Johannes Loher
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
@use "../../utils/mixins";
|
|
|
|
.ds4-check {
|
|
background: transparent;
|
|
border: none;
|
|
cursor: pointer;
|
|
display: flex;
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
justify-content: space-between;
|
|
line-height: inherit;
|
|
margin: 0;
|
|
|
|
&:focus {
|
|
box-shadow: none;
|
|
}
|
|
|
|
&:hover {
|
|
@include mixins.foundry-highlight-text-shadow;
|
|
box-shadow: none;
|
|
}
|
|
|
|
&[disabled] {
|
|
cursor: auto;
|
|
&:hover {
|
|
text-shadow: none;
|
|
}
|
|
}
|
|
}
|