-
Notifications
You must be signed in to change notification settings - Fork 5
/
default.css
107 lines (91 loc) · 1.56 KB
/
default.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<style>
body {
padding-top:40px;
}
a.actionLink {
color: rgb(65, 131, 196);
text-decoration: none;
font-size: 15px;
}
a.actionLink:hover {
text-decoration: underline;
}
#feedback { font-size: 1.4em; }
.vertical-text {
display: inline-block;
overflow: hidden;
width: 1.5em;
}
.vertical-text__inner {
display: inline-block;
white-space: nowrap;
line-height: 1.5;
transform: translate(0,100%) rotate(-90deg);
transform-origin: 0 0;
/*Safari*/
-webkit-transform: rotate(-90deg);
/*Opera*/
-o-transform: rotate(-90deg);
/*IE*/
writing-mode: tb-rl;
filter: flipv fliph;
}
/* This element stretches the parent to be square
by using the mechanics of vertical margins */
.vertical-text__inner:after {
content: "";
display: block;
margin: -1.5em 0 100%;
}
tr { min-height: 130px;
padding: 10px;
margin: 0px;
}
th {
background-color: rgb(245, 245, 245);
margin: 0px;
border: 0px;
padding: 0px;
}
.approved {
color: rgb(108, 198, 68);
text-align: center;
font-size: 26px;
}
.pending {
color: rgb(247, 208, 46);
text-align: center;
font-size: 18px;
}
.rejected {
color: rgb(188, 1, 1);
text-align: center;
font-size: 22px;
}
.unaffected {
text-align: center;
font-size: 18px;
}
.title_cell {
min-width: 500px;
}
.pullActions {
color: rgb(65, 131, 196);
font-size: 80%;
}
.title_cell a {
color: rgb(65, 131, 196);
text-decoration: none;
}
.title_cell a:hover {
text-decoration: underline;
}
#myTable {
width: 80%;
}
table thead{
background-color: rgb(250, 250, 251);
border: 1px solid #ddd;
border-collapse: collapse;
}
</style>