ds4/scss/components/actor/_check.scss

36 lines
542 B
SCSS
Raw Normal View History

2021-06-26 22:02:00 +02:00
/*
* SPDX-FileCopyrightText: 2021 Johannes Loher
*
* SPDX-License-Identifier: MIT
*/
2022-01-21 03:22:17 +01:00
@use "../../utils/mixins";
.ds4-check {
2023-07-10 22:23:13 +02:00
background: transparent;
border: none;
cursor: pointer;
display: flex;
font-family: inherit;
font-size: inherit;
justify-content: space-between;
line-height: inherit;
margin: 0;
2023-07-10 22:23:13 +02:00
&:focus {
box-shadow: none;
}
2021-04-20 22:38:00 +02:00
2023-07-10 22:23:13 +02:00
&:hover {
@include mixins.foundry-highlight-text-shadow;
box-shadow: none;
}
2023-07-10 22:23:13 +02:00
&[disabled] {
cursor: auto;
&:hover {
text-shadow: none;
2021-04-20 22:38:00 +02:00
}
2023-07-10 22:23:13 +02:00
}
}