-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
92 lines (91 loc) · 1.88 KB
/
style.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
html, body, #console {
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
.log-page-container {
height: calc(100% - 50px);
height: -webkit-calc(100% - 50px);
overflow: auto;
}
.navigation, .header {
height: 25px;
background: #ddd;
color: black;
font-family: Lucida Grande, sans-serif;
font-size: 11px;
}
.navigation {
border-top: 1px solid #CACACA;
padding-right: 40px;
text-align: right;
background-image: linear-gradient(#F3F3F3, #EBEBEB);
background-image: -webkit-linear-gradient(#F3F3F3, #EBEBEB);
}
.header {
background-image: linear-gradient(#EBEBEB, #F3F3F3);
background-image: -webkit-linear-gradient(#EBEBEB, #F3F3F3);
border-bottom: 1px solid #CACACA;
}
.log-page {
width: 100%;
}
.log-line {
padding: 2px;
font-size: 12px !important;
font-family: Consolas, Lucida Console, monospace;
color: #333;
white-space: nowrap;
box-sizing: border-box;
width: 100%;
text-overflow: ellipsis;
}
.log-line td {
border-bottom: 1px solid #eee;
}
.log-line .level {
width: 5px;
max-width: 5px;
}
.log-line .time {
max-width: 75px;
width: 75px;
color: #aaa;
text-align: right;
}
.log-line .message {
padding-left: 4px;
}
.log-line.error {
color: red;
}
.log-line.warn {
color: orange;
}
.log-line.debug {
color: #aaa;
}
.navigation .button, .header .entry, .navigation .search {
display: inline-block;
margin: 0 4px;
padding: 4px;
color: black;
}
.navigation .button {
cursor: default;
}
.navigation .button:hover {
background: #bbb;
background-image: linear-gradient(#CCC, #DDD);
background-image: -webkit-linear-gradient(#CCC, #DDD);
}
.navigation .button.selected {
background: #6699ff;
}
.navigation .search input {
height: 1em;
font-size: 11px;
font-family: Lucida Grande, sans-serif;
border: 1px solid #aaa;
}