ds4/scss/components/actor/_check.scss

36 lines
602 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 {
background: transparent;
border: none;
cursor: pointer;
2021-04-20 22:38:00 +02:00
display: flex;
font-family: inherit;
font-size: inherit;
2021-04-20 22:38:00 +02:00
justify-content: space-between;
line-height: inherit;
margin: 0;
&:focus {
box-shadow: none;
}
2021-04-20 22:38:00 +02:00
&:hover {
@include mixins.foundry-highlight-text-shadow;
box-shadow: none;
}
&[disabled] {
cursor: auto;
&:hover {
text-shadow: none;
}
2021-04-20 22:38:00 +02:00
}
}