Skip to content

Commit 999eac9

Browse files
litvinovgchenejac
authored andcommitted
Layout fixes, download text image fixes
1 parent 176c85a commit 999eac9

File tree

5 files changed

+317
-45
lines changed

5 files changed

+317
-45
lines changed

webapp/src/main/webapp/css/search/custom_filters.css

Lines changed: 158 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
.li-selected> a > label::before {
1+
/* $This file is distributed under the terms of the license in LICENSE$ */
2+
.li-selected>a>label::before {
23
content: url(../../images/checkMark.svg);
34
color: #2ea0cf;
45
padding-right: 5px;
@@ -27,7 +28,7 @@
2728
margin: 0px;
2829
border-bottom: 0px;
2930
border-top: 0px;
30-
border-left: 0px;
31+
border-right: 0px;
3132
height: 3em;
3233
border-radius: unset;
3334
color: rgb(112, 106, 102);
@@ -38,22 +39,62 @@
3839
margin: 0px;
3940
border-bottom: 0px;
4041
border-top: 0px;
41-
border-left: 0px;
42+
border-right: 0px;
4243
height: 3em;
4344
border-radius: unset;
45+
color: rgb(112, 106, 102);
46+
font-family: inherit;
4447
}
4548

4649
#browsing-options {
4750
border-bottom: 1px solid #dde4e3;
48-
border-top: 1px solid #dde4e3;
4951
padding-left: 11px;
52+
display: flex;
53+
justify-content: space-between;
5054
}
5155

5256
.display-title {
5357
font-size: small;
5458
display: block;
5559
}
5660

61+
.pagination-container {
62+
width: 100%;
63+
padding: 20px 20px;
64+
display: inline-block;
65+
font-size: .8em;
66+
}
67+
68+
.pagination-container:not(:last-child) {
69+
border-bottom: 1px solid #dde4e3;
70+
}
71+
72+
.pagination-container ul {
73+
display: inline;
74+
}
75+
76+
.pagination-container li.selected {
77+
padding: 0 0.4em;
78+
line-height: 1.5;
79+
color: #333;
80+
background: #ddd;
81+
}
82+
83+
.pagination-container li {
84+
display: inline-block;
85+
border: none;
86+
}
87+
88+
.pagination-container li a {
89+
padding: 0 0.4em;
90+
}
91+
92+
.pagination-container .round {
93+
-moz-border-radius: 3px;
94+
-webkit-border-radius: 3px;
95+
border-radius: 3px;
96+
}
97+
5798
#browse-filters {
5899
width: 271px;
59100
float: left;
@@ -69,6 +110,7 @@
69110
margin-right: 10px;
70111
padding-top: 10px;
71112
padding-bottom: 10px;
113+
list-style: none;
72114
}
73115

74116
#browse-filters li a {
@@ -87,20 +129,20 @@
87129
}
88130

89131
.li-selected a label {
90-
color: #2ea0cf;
132+
color: #2ea0cf;
91133
}
92134

93-
li > a > label:hover {
135+
li>a>label:hover {
94136
color: #2ea0cf;
95137
}
96138

97-
#browse-filters li:not(.li-selected) > a > label:hover::before {
139+
#browse-filters li:not(.li-selected)>a>label:hover::before {
98140
content: url(../../images/checkMark.svg);
99141
padding-right: 5px;
100142
margin-left: -17px;
101143
}
102144

103-
#browse-filters li.li-selected > a > label:hover::before {
145+
#browse-filters li.li-selected>a>label:hover::before {
104146
content: unset;
105147
padding-right: unset;
106148
margin-left: unset;
@@ -114,11 +156,11 @@ li > a > label:hover {
114156
padding-top: 10px;
115157
}
116158

117-
.facet-values label{
118-
cursor:pointer;
159+
.facet-values label {
160+
cursor: pointer;
119161
}
120162

121-
.filter-tab > a:focus {
163+
.filter-tab>a:focus {
122164
color: unset;
123165
text-decoration: none;
124166
}
@@ -137,6 +179,8 @@ li > a > label:hover {
137179
#downloadIcon {
138180
padding-left: 7px;
139181
font-size: 14px;
182+
color: rgb(112, 106, 102);
183+
font-family: inherit;
140184
}
141185

142186
.facet-input {
@@ -150,3 +194,106 @@ li > a > label:hover {
150194
.hidden-all-search-options {
151195
display: none;
152196
}
197+
198+
.download-results-text-button {
199+
border: 0px;
200+
background-color: transparent;
201+
}
202+
203+
nav#alphabetical-index-container {
204+
border-bottom: 1px solid #dde4e3;
205+
}
206+
207+
nav#alphabetical-index-container {
208+
width: 100%;
209+
float: left;
210+
padding-left: 10px;
211+
margin-left: 1px;
212+
box-sizing: border-box;
213+
}
214+
215+
ul#alphabetical-index-individuals {
216+
background-color: #fff;
217+
float: left;
218+
}
219+
220+
ul#alphabetical-index-individuals li {
221+
float: left;
222+
margin-right: 5px;
223+
font-size: .8em;
224+
}
225+
226+
#individuals-in-class ul {
227+
list-style: none;
228+
}
229+
230+
#individuals-in-class {
231+
float: right;
232+
width: 68%;
233+
padding-bottom: 30px;
234+
margin-bottom: 30px;
235+
margin-right: 17px;
236+
min-height: 170px;
237+
}
238+
239+
#individuals-in-class span.title {
240+
display: block;
241+
margin: .8em 0 0 0;
242+
font-size: .8em;
243+
line-height: 1;
244+
}
245+
246+
ul#alphabetical-index-individuals a:hover, ul#alphabetical-index-individuals a.selected
247+
{
248+
background: url(../../images/arrowSmall.svg) 0px 6px no-repeat;
249+
color: #2ea0cf;
250+
}
251+
252+
ul#alphabetical-index-individuals a {
253+
display: block;
254+
height: 35px;
255+
margin-left: 0;
256+
padding-left: 8px;
257+
text-decoration: none;
258+
}
259+
260+
#browse-by {
261+
clear: both;
262+
width: 90%;
263+
margin: 0 auto;
264+
overflow: hidden;
265+
}
266+
267+
#browse-by h2 {
268+
height: 44px;
269+
line-height: 44px;
270+
padding-left: 15px;
271+
margin-bottom: 27px;
272+
}
273+
274+
li.individual {
275+
width: 90%;
276+
padding: 20px 0;
277+
margin-left: 20px;
278+
margin-right: 30px;
279+
overflow: hidden;
280+
}
281+
282+
li.individual img {
283+
float: left;
284+
margin-right: 20px;
285+
}
286+
287+
li.individual h1 {
288+
padding: 0;
289+
line-height: 1.2em;
290+
font-weight: bold;
291+
}
292+
293+
li.individual h1.thumb {
294+
padding-top: 30px;
295+
}
296+
297+
p.no-individuals {
298+
margin: 1em 2em;
299+
}
Lines changed: 125 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)