Tyler Scott | 3c17d5f | 2015-06-23 17:49:29 -0600 | [diff] [blame] | 1 | html, body { |
2 | width: 100%; | ||||
3 | height: 100%; | ||||
4 | margin: 0; | ||||
Tyler Scott | 696d38f | 2015-08-04 22:41:22 -0600 | [diff] [blame] | 5 | min-width: 650px; |
Tyler Scott | ab822fe | 2015-08-10 14:38:49 -0600 | [diff] [blame] | 6 | /* background-image: url(../background.jpg); */ |
Tyler Scott | 0385485 | 2015-08-07 15:45:10 -0600 | [diff] [blame] | 7 | background-size: cover; |
Tyler Scott | ff4c3c3 | 2015-08-06 14:38:13 -0600 | [diff] [blame] | 8 | background-attachment: fixed; |
Tyler Scott | 3c17d5f | 2015-06-23 17:49:29 -0600 | [diff] [blame] | 9 | } |
10 | |||||
Tyler Scott | ff4c3c3 | 2015-08-06 14:38:13 -0600 | [diff] [blame] | 11 | body#body {} |
12 | |||||
Tyler Scott | 3c17d5f | 2015-06-23 17:49:29 -0600 | [diff] [blame] | 13 | .sidebar { |
14 | height: 100%; | ||||
15 | max-height: 100%; | ||||
16 | overflow: auto; | ||||
17 | } | ||||
Tyler Scott | f08ab96 | 2015-06-30 16:31:29 -0600 | [diff] [blame] | 18 | |
Tyler Scott | a1ac69d | 2015-07-02 17:42:03 -0600 | [diff] [blame] | 19 | .fail { |
Tyler Scott | f65b710 | 2015-06-30 18:40:14 -0600 | [diff] [blame] | 20 | color: red; |
21 | } | ||||
22 | |||||
Tyler Scott | a1ac69d | 2015-07-02 17:42:03 -0600 | [diff] [blame] | 23 | .sucess { |
Tyler Scott | f65b710 | 2015-06-30 18:40:14 -0600 | [diff] [blame] | 24 | color: green; |
Tyler Scott | f08ab96 | 2015-06-30 16:31:29 -0600 | [diff] [blame] | 25 | } |
Tyler Scott | 7d076e2 | 2015-07-06 19:21:50 -0600 | [diff] [blame] | 26 | |
27 | .subnav { | ||||
28 | display: none; | ||||
29 | max-height: 500px; | ||||
30 | overflow: auto; | ||||
31 | margin-left: 15px; | ||||
32 | border-left: gray 3px solid; | ||||
33 | } | ||||
Tyler Scott | e815d3e | 2015-07-09 16:56:17 -0600 | [diff] [blame] | 34 | |
Tyler Scott | 93cae87 | 2015-07-21 14:58:23 -0600 | [diff] [blame] | 35 | .autoComplete .list-group { |
36 | margin-bottom: 0; | ||||
37 | border: none; | ||||
38 | } | ||||
39 | |||||
Tyler Scott | c55879f | 2015-07-28 14:56:37 -0600 | [diff] [blame] | 40 | #searchBar { |
41 | display: inline-block; | ||||
42 | } | ||||
43 | |||||
Tyler Scott | e815d3e | 2015-07-09 16:56:17 -0600 | [diff] [blame] | 44 | #filters { |
45 | margin-bottom: 10px; | ||||
46 | visibility: visible; | ||||
47 | opacity: 1; | ||||
48 | transition: visibility 1s ease-out, opacity 1s ease-out, margin-bottom 1s ease-out; | ||||
49 | } | ||||
50 | |||||
51 | #filters .label { | ||||
52 | /* display: none; */ | ||||
53 | font-size: inherit; | ||||
Tyler Scott | e8dac70 | 2015-10-13 14:33:25 -0600 | [diff] [blame] | 54 | transition: background-color 1s, border-color 2s; |
Tyler Scott | 087aef7 | 2015-07-14 14:11:59 -0600 | [diff] [blame] | 55 | cursor: pointer; |
Tyler Scott | e815d3e | 2015-07-09 16:56:17 -0600 | [diff] [blame] | 56 | } |
57 | |||||
Tyler Scott | a153005 | 2015-07-24 00:13:28 -0600 | [diff] [blame] | 58 | #filters .label::after { |
59 | content: " \2716"; | ||||
60 | } | ||||
61 | |||||
Tyler Scott | e815d3e | 2015-07-09 16:56:17 -0600 | [diff] [blame] | 62 | #filters .label:hover { |
63 | /* font-size: 0; */ | ||||
64 | background-color: red; | ||||
65 | border-color: red; | ||||
66 | } | ||||
67 | |||||
68 | #filters .label:hover::before { | ||||
69 | content: "Remove "; | ||||
70 | } | ||||
71 | |||||
72 | #filters .label:hover::after { | ||||
73 | content: "?"; | ||||
74 | } | ||||
75 | |||||
76 | #filters .label:not(:last-child) { | ||||
77 | margin-right: 5px; | ||||
78 | } | ||||
79 | |||||
80 | #filters:empty { | ||||
81 | visibility: hidden; | ||||
82 | opacity: 0; | ||||
83 | margin-bottom: 0; | ||||
84 | } | ||||
85 | |||||
86 | /* Magic filters text that won't get picked up in jquery.text */ | ||||
87 | #filters:not(:empty)::before { | ||||
88 | content: "Filters: "; | ||||
89 | } | ||||
Tyler Scott | fe8e493 | 2015-07-28 17:45:45 -0600 | [diff] [blame] | 90 | |
91 | #search { | ||||
Tyler Scott | 696d38f | 2015-08-04 22:41:22 -0600 | [diff] [blame] | 92 | min-width: 500px; |
Tyler Scott | fe8e493 | 2015-07-28 17:45:45 -0600 | [diff] [blame] | 93 | } |
94 | |||||
95 | .autoComplete { | ||||
96 | max-height: 0; | ||||
97 | overflow-y: auto; | ||||
98 | position: absolute; | ||||
99 | left: 0; | ||||
100 | transition: max-height 1s; | ||||
Tyler Scott | 3fc0527 | 2015-08-17 18:02:35 -0600 | [diff] [blame] | 101 | z-index: 1; |
Tyler Scott | e8dac70 | 2015-10-13 14:33:25 -0600 | [diff] [blame] | 102 | top: 40px !important; /* Ignore the library style */ |
Tyler Scott | fe8e493 | 2015-07-28 17:45:45 -0600 | [diff] [blame] | 103 | } |
104 | |||||
105 | *:focus ~ .autoComplete { /* If the parent detects focus on any subelement or itself */ | ||||
106 | max-height: 500px; | ||||
107 | } | ||||
Tyler Scott | 4e4865a | 2015-08-06 14:23:21 -0600 | [diff] [blame] | 108 | |
Tyler Scott | 3fc0527 | 2015-08-17 18:02:35 -0600 | [diff] [blame] | 109 | .interest-button { |
110 | font-size: medium; | ||||
111 | } | ||||
112 | |||||
113 | .interest-button.disabled { | ||||
114 | cursor: not-allowed !important; | ||||
115 | color: gray; | ||||
116 | } | ||||
117 | |||||
118 | .hidden { | ||||
119 | height: 0; | ||||
120 | display: none; | ||||
121 | } | ||||
122 | |||||
123 | .disabled { | ||||
124 | cursor: not-allowed; | ||||
Tyler Scott | 4e4865a | 2015-08-06 14:23:21 -0600 | [diff] [blame] | 125 | } |
Tyler Scott | 918210b | 2015-08-28 13:15:40 -0600 | [diff] [blame] | 126 | |
127 | .panel-heading a[data-toggle="collapse"]::after { | ||||
128 | font-family: "Glyphicons Halflings"; | ||||
129 | content: "\e114"; | ||||
130 | float: right; | ||||
Tyler Scott | cdfcde8 | 2015-09-14 16:13:29 -0600 | [diff] [blame] | 131 | color: white; |
Tyler Scott | 918210b | 2015-08-28 13:15:40 -0600 | [diff] [blame] | 132 | } |
133 | |||||
134 | .panel-heading a[data-toggle="collapse"].collapsed::after { | ||||
135 | content: "\e080"; | ||||
136 | } | ||||
137 | |||||
138 | .treeExplorer .treeExplorerNode { | ||||
139 | padding-left: 25px; | ||||
140 | display: block; | ||||
141 | cursor: pointer; | ||||
142 | } | ||||
143 | |||||
Tyler Scott | b59e6de | 2015-09-18 14:46:30 -0600 | [diff] [blame] | 144 | .treeExplorer .treeExplorerNode .nodeContent { |
145 | display: inline-block; | ||||
146 | } | ||||
147 | |||||
Tyler Scott | 918210b | 2015-08-28 13:15:40 -0600 | [diff] [blame] | 148 | .treeExplorer .treeExplorerNode > .nodeChildren { |
149 | display: none; | ||||
150 | } | ||||
151 | |||||
152 | .treeExplorer .treeExplorerNode.open > .nodeChildren { | ||||
153 | display: block; | ||||
154 | } | ||||
155 | |||||
Tyler Scott | 7ae6be0 | 2016-06-22 15:29:26 -0600 | [diff] [blame] | 156 | .treeExplorer .treeExplorerExpander:before { |
157 | content: "[+]"; | ||||
Tyler Scott | 918210b | 2015-08-28 13:15:40 -0600 | [diff] [blame] | 158 | color: gray; |
159 | } | ||||
160 | |||||
Tyler Scott | 7ae6be0 | 2016-06-22 15:29:26 -0600 | [diff] [blame] | 161 | .treeExplorer .open > .nodeContent > .treeExplorerExpander:before { |
162 | content: "[-]"; | ||||
Tyler Scott | 918210b | 2015-08-28 13:15:40 -0600 | [diff] [blame] | 163 | } |
164 | |||||
Tyler Scott | bb42ed2 | 2015-10-21 17:02:56 -0600 | [diff] [blame] | 165 | .treeExplorer .file > .nodeContent > .treeExplorerExpander { |
Tyler Scott | 918210b | 2015-08-28 13:15:40 -0600 | [diff] [blame] | 166 | cursor: default; |
167 | } | ||||
168 | |||||
Tyler Scott | 7ae6be0 | 2016-06-22 15:29:26 -0600 | [diff] [blame] | 169 | .treeExplorer .file > .nodeContent > .treeExplorerExpander:before { |
170 | content: "[=]" | ||||
Tyler Scott | 918210b | 2015-08-28 13:15:40 -0600 | [diff] [blame] | 171 | } |
Tyler Scott | cdfcde8 | 2015-09-14 16:13:29 -0600 | [diff] [blame] | 172 | |
173 | #popup { | ||||
174 | top: 0; | ||||
175 | left: 0; | ||||
176 | position: fixed; | ||||
177 | width: 100%; | ||||
178 | height: 100%; | ||||
179 | display: flex; | ||||
180 | align-items: center; | ||||
181 | justify-content: center; | ||||
182 | z-index: 9000; | ||||
183 | pointer-events: none; | ||||
184 | } | ||||
185 | |||||
186 | #popup > * { | ||||
187 | display: none; | ||||
188 | pointer-events: auto; | ||||
189 | } | ||||
190 | |||||
191 | .modal-open, #request { | ||||
192 | padding-right: 0 !important; | ||||
193 | } | ||||
194 | |||||
195 | .sk-cube-grid { | ||||
196 | display: none; | ||||
197 | } | ||||
198 | |||||
199 | table:empty ~ .sk-cube-grid { | ||||
200 | display: block; | ||||
201 | } | ||||
202 | |||||
203 | #requestForm { | ||||
204 | max-width: 500px; | ||||
Tyler Scott | 384f37a | 2016-05-05 16:09:05 -0600 | [diff] [blame] | 205 | /* min-height: 300px; */ |
Tyler Scott | cdfcde8 | 2015-09-14 16:13:29 -0600 | [diff] [blame] | 206 | position: relative; |
207 | } | ||||
208 | |||||
Tyler Scott | f355e45 | 2015-11-06 21:35:14 -0700 | [diff] [blame] | 209 | .floatRight { |
210 | float: right; | ||||
211 | margin-right: 15px; | ||||
Tyler Scott | cdfcde8 | 2015-09-14 16:13:29 -0600 | [diff] [blame] | 212 | } |
Tyler Scott | e8dac70 | 2015-10-13 14:33:25 -0600 | [diff] [blame] | 213 | |
214 | .fade { | ||||
215 | display: none; | ||||
216 | } | ||||
217 | |||||
218 | .fade.in { | ||||
219 | display: block; | ||||
220 | } | ||||
221 | |||||
222 | .navbar-brand { | ||||
223 | text-shadow: 1px 1px 1px black; | ||||
224 | } | ||||
Tyler Scott | 48f92cd | 2015-10-16 18:31:20 -0600 | [diff] [blame] | 225 | |
226 | .popover { | ||||
227 | max-width: none; | ||||
228 | } | ||||
229 | |||||
230 | .popover-container { | ||||
231 | position: relative; | ||||
232 | } | ||||
233 | |||||
234 | .metaData { | ||||
235 | width: 600px; | ||||
236 | max-height: 800px; | ||||
237 | word-wrap: normal; | ||||
238 | overflow: auto; | ||||
239 | } | ||||
Tyler Scott | f355e45 | 2015-11-06 21:35:14 -0700 | [diff] [blame] | 240 | |
241 | #requestForm button { | ||||
242 | margin-bottom: 5px; | ||||
243 | } | ||||
244 | |||||
245 | #templates { | ||||
246 | display: none; | ||||
247 | } | ||||
248 | |||||
249 | #subsetVariables > .row:not(:last-child) { | ||||
250 | margin-bottom: 5px; | ||||
251 | } | ||||
252 | |||||
253 | #subsetVariables { | ||||
254 | transition: opacity 1s, margin 1s, padding 1s; | ||||
255 | } | ||||
256 | |||||
257 | #subsetVariables:empty { | ||||
258 | opacity: 0; | ||||
259 | margin: 0; | ||||
260 | padding: 0; | ||||
261 | } | ||||
Tyler Scott | 384f37a | 2016-05-05 16:09:05 -0600 | [diff] [blame] | 262 | |
263 | #direct-download-list:before { | ||||
264 | content: "The following are available for direct download:"; | ||||
265 | } | ||||
266 | |||||
267 | #direct-download-list:empty:before { | ||||
268 | content: "No names in the selection are available for direct download..."; | ||||
269 | } |