-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodule.less
84 lines (75 loc) · 1.98 KB
/
module.less
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
.iitLogger {
input.showNumber {
margin-left:10px;
border:1px solid #c9c9c9;
-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .5);
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .5);
padding:2px 8px;
-webkit-border-radius: 4px;
border-radius: 4px;
font-size:1.5em;
width:2em;
}
#log-table, #saved-table {
width: 100%;
th {
text-align: left;
background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%);
color: #333;
padding: 6px 12px 6px 12px;
border: 0;
border-bottom: 1px solid #c9c9c9;
border-right: 1px solid #c9c9c9;
font-weight: bold;
}
tr {
cursor:pointer;
td {
white-space: nowrap;
padding: 6px 12px 6px 12px;
background-color: #fff;
border-bottom: 1px solid #c9c9c9;
border-right: 1px solid #c9c9c9;
div {
display: none;
}
}
td.message {
white-space: normal;
}
}
tr.odd td {
background-color: #F2F2F2;
}
tr.warn td {
color: #FF8000;
}
tr.debug td {
color: #A0A0A0;
}
tr.trace td {
color: #A0A0A0;
}
tr.error td {
color: #FF0000;
}
tr.fatal td {
color:#8B2899;
}
tr.alert td {
color:#FF00FF;
}
tr.notice td {
color:#397B39;
}
tr.fatal td {
color:#828282;
}
tr.emergency td {
color:#76237D;
}
tr.severe td {
color:#E3021F;
}
}
}