forked from ThinkInvis/BRSerker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
statusticket.css
62 lines (62 loc) · 1.23 KB
/
statusticket.css
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
.warntri {
width: 0;
height: 0;
background-color: transparent;
display: inline-block;
border-radius: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 0px solid transparent;
border-bottom: 10px solid #ffff00;
margin: 3px;
transform: scale(1.25);
}
.fatalX:before {
content: "×";
}
.fatalX {
display: inline-block;
margin: 3px;
padding: 0;
font-weight: 1000;
font-size: 14px;
transform: scale(1.6) translate(1px, -2.5px);
-moz-text-stroke: 1px #000;
-webkit-text-stroke: 1px #000;
text-stroke: 2px #000;
color: #a00;
}
.spinner-sm {
display: inline-block;
background-color: transparent;
border: 5px solid rgba(0, 0, 0, 0.1);
border-top: 5px solid #000;
border-radius: 50%;
margin: 1px;
width: 5px;
height: 5px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% {transform: rotate(0deg);}
100% {transform: rotate(360deg);}
}
.statusticket {
height: 20px;
padding: 2px;
transition: width 0.2s, opacity 0.2s;
opacity: 1;
width: 0;
background-color: #888800;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
border: solid 2px #000000;
border-radius: 4px;
}
.statustext {
background: transparent;
margin-left: 4px;
line-height: 20px;
vertical-align: 4px;
}