blob: 407cf103aed78dbcf992a7093faf7e186fcdf2bf [file] [log] [blame]
Nils Diewalda944fab2015-04-08 21:02:04 +00001@charset "utf-8";
Akron7636edf2025-11-04 12:44:53 +01002@use "../util";
3@use "../base/choose";
4@use "../base/colors";
5@use "../base/lengths";
Nils Diewalda944fab2015-04-08 21:02:04 +00006
7
8pre.query {
9 overflow-x: hidden;
Nils Diewalda944fab2015-04-08 21:02:04 +000010 padding: .5em;
Akron7636edf2025-11-04 12:44:53 +010011 @include choose.choose-item;
Nils Diewalda944fab2015-04-08 21:02:04 +000012 position:relative;
13 border: {
14 width: 2px;
15 style: solid;
Akron7636edf2025-11-04 12:44:53 +010016 radius: lengths.$standard-border-radius;
Nils Diewalda944fab2015-04-08 21:02:04 +000017 }
Akron7636edf2025-11-04 12:44:53 +010018 box-shadow: choose.$choose-box-shadow;
Akronf4a7cf42018-01-09 15:58:45 +010019 &:not(.unsupported) {
20 cursor: pointer;
21 &:hover {
Akron7636edf2025-11-04 12:44:53 +010022 @include choose.choose-hover;
Akronf4a7cf42018-01-09 15:58:45 +010023 }
24 &:active {
Akron7636edf2025-11-04 12:44:53 +010025 @include choose.choose-active;
Akronf4a7cf42018-01-09 15:58:45 +010026 }
Nils Diewalda944fab2015-04-08 21:02:04 +000027 }
Akronf4a7cf42018-01-09 15:58:45 +010028 &.unsupported span {
29 vertical-align: super;
Akron7636edf2025-11-04 12:44:53 +010030 color: colors.$dark-blue;
Akronf4a7cf42018-01-09 15:58:45 +010031 font-size: 90%;
32 font-weight: bold;
33 cursor: help;
Nils Diewalda944fab2015-04-08 21:02:04 +000034 }
35}