ds4/scss/components/actor/_actor_progression.scss

49 lines
871 B
SCSS
Raw Normal View History

2021-06-26 22:02:00 +02:00
/*
* SPDX-FileCopyrightText: 2021 Johannes Loher
* SPDX-FileCopyrightText: 2021 Oliver Rümpelein
*
* SPDX-License-Identifier: MIT
*/
2022-01-21 03:22:17 +01:00
@use "../../utils/colors";
@use "../../utils/mixins";
@use "../../utils/variables";
2021-02-24 12:55:30 +01:00
2021-07-12 00:12:59 +02:00
.ds4-actor-progression {
2023-07-10 22:23:13 +02:00
@include mixins.mark-invalid-or-disabled-input;
display: flex;
gap: 0.5em;
2021-05-13 15:41:00 +02:00
2023-07-10 22:23:13 +02:00
&__entry {
align-items: center;
display: flex;
flex: 1;
gap: 0.25em;
justify-content: flex-end;
}
2023-07-10 22:23:13 +02:00
&__label {
@include mixins.font-heading-upper;
border: none;
color: colors.$c-light-grey;
margin: 0;
padding: 0;
text-align: right;
}
2021-07-11 05:04:05 +02:00
2023-07-10 22:23:13 +02:00
&__input {
flex: 0 0 5ch;
2021-05-13 15:41:00 +02:00
2023-07-10 22:23:13 +02:00
&--slayer-points {
&::-webkit-inner-spin-button,
&::-webkit-outer-spin-button {
-webkit-appearance: auto;
}
&:hover,
&:focus {
-moz-appearance: auto;
}
}
2023-07-10 22:23:13 +02:00
}
}