-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjoblist.sass
99 lines (98 loc) · 1.79 KB
/
joblist.sass
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
#TWDS_joblist_container {
.hasMousePopup,
[title] {
text-decoration:underline;
}
p {
text-align:right;
display:grid;
}
#TWDS_job_filtergroup {
grid-column:1;
grid-row: 1 / span 3;
margin-right:2em;
display:inline-block;
}
#TWDS_job_modearea {
grid-column:2;
grid-row: 1;
}
#TWDS_job_searchgroup {
grid-column:2;
grid-row: 2;
}
#TWDS_job_search {
width:140px;
}
#TWDS_job_duration {
grid-column:2;
grid-row: 3;
justify-self: end;
min-width:5em;
}
#TWDS_joblist_filter_container {
text-align:left;
fieldset {
display:inline-block;
max-width:12em;
}
select {
display:block;
}
input {
display:block;
width:75px;
}
}
#TWDS_jobs {
margin-bottom:1em;
border-collapse: collapse;
width:98%;
margin-left:1%;
margin-right:1%;
tr, td, th { border:1px solid #888;}
td { text-align:right;}
td[data-field=name] { text-align:left; padding:1px 2px; }
th[data-field=danger] { color: red}
th[data-field=luck] { color: green}
tr.gold td {
background-color: #ffd70050;
}
tr.silver td {
background-color: #c0c0c080;
}
input.color {
width:19px;
height:19px;
}
}
.TWDS_joblist_stars {
opacity:0.5;
color:green;
text-shadow: 0 0 0px black;
}
.TWDS_joblist_stars.TWDS_joblist_stage_gold {
color:gold;
}
.TWDS_joblist_stars.TWDS_joblist_stage_silver {
color:silver;
}
.TWDS_joblist_stars.TWDS_joblist_stage_bronze {
color:#cd7f32;
}
.TWDS_job_negative {
color:red;
}
.TWDS_job_less {
color:orange;
}
#TWDS_job p {
text-align:right
}
#TWDS_jobs tr.hidden {
display:none
}
#TWDS_job_filterx {
border-radius:5px;
}
}