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";
|
2021-04-20 22:53:25 +02:00
|
|
|
|
2021-04-13 23:43:22 +02:00
|
|
|
.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;
|
2022-11-03 23:39:49 +01:00
|
|
|
|
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;
|
|
|
|
}
|
2022-11-03 23:39:49 +01:00
|
|
|
|
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
|
|
|
}
|
2021-04-13 23:43:22 +02:00
|
|
|
}
|