blob: 7c3825978f10b148b8b90e63c639e2004dfc17ab (
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
|
.buttonBox-outerDiv {
width: 100%;
height: 100%;
pointer-events: all;
border-radius: inherit;
display: flex;
flex-direction: column;
}
.buttonBox-mainButton {
width: 100%;
height: 100%;
border-radius: inherit;
text-align: center;
display: table;
overflow: hidden;
text-overflow: ellipsis;
letter-spacing: 2px;
text-transform: uppercase;
}
.buttonBox-mainButtonCenter {
height: 100%;
display: table-cell;
vertical-align: middle;
}
.buttonBox-params {
display: flex;
flex-direction: row;
}
.buttonBox-missingParam {
width: 100%;
background: lightgray;
}
|