blob: ab5b2c6b35c4c7e3406c6a13fa557f772e48cc73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
.labelBox-outerDiv {
width: 100%;
height: 100%;
pointer-events: all;
border-radius: inherit;
display: flex;
flex-direction: column;
}
.labelBox-mainButton {
width: 100%;
height: 100%;
border-radius: inherit;
letter-spacing: 2px;
text-transform: uppercase;
overflow: hidden;
display:flex;
}
.labelBox-mainButtonCenter {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: inline;
align-items: center;
margin: auto;
}
.labelBox-params {
display: flex;
flex-direction: row;
}
.labelBox-missingParam {
width: 100%;
background: lightgray;
border: dimGray solid 1px;
}
|