blob: 8beee1db1aff3d57f989028628ffda08c92fc02a (
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
|
.confirmation-box-container {
.confirmation-message-wrap {
display: table;
height: 60px;
width: 100%;
.confirmation-message {
.dGray14r;
display: table-cell;
vertical-align: middle;
max-width: 100px;
overflow: hidden;
text-overflow: ellipsis;
//line-height: 60px;
}
}
.confirmation-title-wrap {
display: table;
height: 20px;
width: 100%;
.confirmation-title {
.dGray14r;
display: table-cell;
vertical-align: middle;
text-align: center;
font-weight: bold;
max-width: 100px;
overflow: hidden;
padding-bottom: 2px;
text-overflow: ellipsis;
}
}
}
|