forked from Parallels/rq-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmain.css
More file actions
138 lines (111 loc) · 1.9 KB
/
Copy pathmain.css
File metadata and controls
138 lines (111 loc) · 1.9 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/* @override http://localhost:9181/static/css/main.css */
.container-fluid {
background: white;
}
#content {
background: yellow;
}
.section
{
padding: 2em;
}
p.intro {
min-height: 2em;
padding-top: .8em;
color: #888;
}
p.fixed.intro {
height: 5em;
}
h1 {
font-family: 'Helvetica Neue', helvetica, sans-serif;
font-weight: 300;
color: steelblue;
text-shadow: 0 -1px #229;
word-break: break-word;
}
h1 strong {
font-weight: 500;
}
h1 strong.failed {
color: red;
text-shadow: 0 -1px #922;
}
table, table tr, table tr td {
background-color: snow;
}
table tbody tr td.narrow {
width: 100px;
}
table#queues {
/*width: 300px;*/
}
#jobs-names-wrapper{
max-height: 300px;
overflow-y: auto;
}
table#jobs td.actions a {
margin-right: 8px;
margin-bottom: 8px;
}
table#jobs span.description {
color: #555;
font-weight: 600;
}
table#jobs span.origin {
color: #888;
}
table#jobs div.job_id {
font-size: 70%;
color: gray;
margin-left: 24px;
}
table#jobs-name tr td{
word-break: break-all;
}
pre.exc_info {
max-height: 30px;
overflow: hidden;
}
.expand pre.exc_info {
color: #fff;
background-color: black;
max-height: none;
overflow: auto;
}
table#workers {
/*width: 600px;*/
}
table tbody tr td {
vertical-align: middle;
}
table tr.failed {
color: red;
border-top: 2px solid red;
}
table tr.failed a {
color: red;
}
table tr.failed td {
background-color: lightgoldenrodyellow;
}
span.loading {
font-size: .8em;
color: #555;
}
.job-logs.loading{
background-image: url("../img/ajax-loader.gif");
background-repeat: no-repeat;
background-position: top right;
}
.enable-polling-wrapper{
position: fixed;
background-color: #aaa;
padding: 5px 10px;
right: 50px;
top: 10px;
}
.enable-polling-wrapper label{
display: inline;
cursor: pointer;
}