6ea245b1c23ec06607aa2b9f03f00f77a6be6b5f
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / style / ui / label.scss
1 /* #### Labels #### */
2 /* label list */
3 .labelList {
4 @include inlineList;
5
6 display: inline-flex;
7
8 > li {
9 &:not(:first-child) {
10 .label {
11 border-top-left-radius: 0;
12 border-bottom-left-radius: 0;
13 }
14 }
15
16 &:not(:last-child) {
17 margin-right: 1px;
18
19 .label {
20 border-top-right-radius: 0;
21 border-bottom-right-radius: 0;
22 }
23 }
24
25 .label {
26 top: -1px;
27 }
28 }
29 }
30
31 /* ACP label list */
32 #labelList > li {
33 flex-basis: 30%;
34 margin-bottom: 10px;
35
36 &.labelCustomClass {
37 display: flex;
38
39 > input[type="radio"] {
40 flex: 0 0 auto;
41 margin-right: 7px;
42 }
43
44 > span {
45 flex: 1 1 auto;
46 }
47 }
48 }
49
50 .labelChooser > .dropdownToggle > span {
51 cursor: pointer;
52 }