This repository was archived by the owner on Oct 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathstyle.css
More file actions
144 lines (115 loc) · 2.19 KB
/
Copy pathstyle.css
File metadata and controls
144 lines (115 loc) · 2.19 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
139
140
141
142
143
144
#app-content-wrapper {
display: block;
}
#app {
font-family: Arial, sans-serif;
}
#app h1 a {
color: #777777;
font-size: 225%;
}
#app h2 {
color: #777777;
font-size: 125%;
}
#app section {
padding: 20px;
}
#app table.dataTable.no-footer {
border-bottom: none;
}
#app table.dataTable tbody td {
line-height: normal;
padding: 5px 20px;
white-space: normal;
}
#app table.dataTable thead th {
border-bottom: none;
color: #777777;
font-weight: normal;
padding: 10px 20px;
}
#app .row-fluid {
border-bottom: 5px solid #00B4EC;
}
#shared {
padding-left: 0.5em;
vertical-align: bottom;
}
#announcements {
margin: 2.5%;
}
#announcements a {
text-decoration: underline;
}
#announcement-form, #event {
display: none;
}
#announcementedit-form, #event {
display: none;
}
#quota {
position: relative;
}
#quota div {
height: 1.8em;
}
#quota-used {
float: left;
background-color: rgba(247, 70, 74, 0.9);
}
#quota-limit {
background-color: rgba(70, 191, 189, 0.9);
}
#quota-text {
position: absolute;
top: 0.1em;
text-align: center;
width: 100%;
color: white;
}
table.dataTable thead .sorting {
background-image: url("../img/button-up-down.svg");
background-size: 0.8em;
}
table.dataTable thead .sorting:hover {
background-image: url("../img/button-up-down-dark.svg");
}
table.dataTable thead .sorting_desc {
background-image: url("../img/button-down.svg");
background-size: 0.8em;
}
table.dataTable thead .sorting_desc:hover {
background-image: url("../img/button-down-dark.svg");
}
table.dataTable thead .sorting_asc {
background-image: url("../img/button-up.svg");
background-size: 0.8em;
}
table.dataTable thead .sorting_asc:hover {
background-image: url("../img/button-up-dark.svg");
}
.myCollapse {
display: none;
}
.myCollapse.in {
display: block;
}
.collapse, .collapsing {
display: none;
}
.collapse.in {
display: block;
}
@media (max-width: 767px) {
#app .row-fluid {
border-bottom: none;
}
#app .span6 {
border-bottom: 5px solid #00B4EC;
}
}
.ui-dialog-titlebar-close{
width: auto;
min-width: inherit;
}