Skip to content

Commit bdb5df5

Browse files
committed
fixed some smaller CSS issues including:
- built with line (removed height property) - appearance of dataset tag in Viper
1 parent f11ed21 commit bdb5df5

4 files changed

Lines changed: 25 additions & 13 deletions

File tree

vis/stylesheets/base/_colors.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ $black: #444444;
2323
$author-green: #216500;
2424
$abstract-gray: #333; //#5c6d7f; //old: #444444
2525
$link-gray: #333;
26-
$journal-gray: #4d7199; // old:#666666, 5c6d7f
26+
$journal-gray: #2C3E52; // old:#666666, 5c6d7f
2727
$list_metadata_title_paper: #333;
2828
$list_show_hide_button: #2d3e52; //#5c6d7f;
2929
$highlight-searchterm: #eff3f4;
@@ -33,7 +33,7 @@ $area-title-h2: #333;
3333
// Additional colors for buttons etc.
3434
$okm-modal-btn: #2d3e52;
3535
$infolink: #E55137;
36-
$framed-item: #4d7199;//gelb:#f1c500;
36+
$framed-item: #2C3E52;//gelb:#f1c500;
3737
$dataset: #2C3E52;
3838

3939
$lower_value_tag: #2C316E;
@@ -60,8 +60,8 @@ $highlight: #e1e5e5;
6060
$dark-red: #A70805;
6161
$black: #444444;
6262
$author-green: #216500;
63-
$abstract-gray: #333; //#5c6d7f; //old: #444444
64-
$link-gray : $medium-blue;
63+
$abstract-gray: #444; //#5c6d7f; //old: #444444
64+
$link-gray : #444;
6565
$journal-gray: #000000; // old:#666666
6666
$list_metadata_title_paper: #3696e0;
6767
$list_show_hide_button: #3696e0;
@@ -131,7 +131,7 @@ $highlight: #e1e5e5;
131131
$okm-red: #622166;
132132
$dark-blue: #666666;
133133
$medium-blue: #622166;
134-
$link-gray: $medium-blue;
134+
$link-gray: #622166;
135135
$okm-clouds: #f1f1f1;
136136
$okm-modal-btn: #622166;
137137
$framed-item: #622166;

vis/stylesheets/modules/_footer.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.builtwith {
22
margin: 15px 10px 15px 50px;
33
font-size: 12px;
4-
height: 20px;
4+
//height: 20px; might have to reintroduce this if it causes problems for embedded maps
55
}
66

77
.builtwith a {
@@ -17,6 +17,7 @@
1717
@media screen and (max-width: 640px) {
1818
.builtwith {
1919
margin: 10px 0px 10px 20px;
20+
font-size: 11px;
2021
}
2122
}
2223

vis/stylesheets/modules/list/_entry.scss

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
-webkit-border-radius: 14px;
3232
-moz-border-radius: 14px;
3333
font-size: 10px;
34-
vertical-align: top;
3534
font-weight: $fontweight400;
3635
display: inline-block;
3736
width: 100px;
@@ -61,9 +60,16 @@
6160
border: 1px solid $dataset;
6261
background-color: white;
6362
padding: 2px 4px;
64-
border-radius: 5px;
65-
-webkit-border-radius: 5px;
66-
-moz-border-radius: 5px;
63+
border-radius: 14px;
64+
-webkit-border-radius: 14px;
65+
-moz-border-radius: 14px;
66+
width: 100px;
67+
text-align: center;
68+
margin-left: 6px;
69+
}
70+
71+
.fa-database {
72+
margin-right: 3px;
6773
}
6874

6975
.resulttype-dataset {
@@ -161,7 +167,7 @@
161167
border-bottom: 1px solid $link-gray;
162168

163169
&:hover {
164-
border-bottom: 3px solid $link-gray;
170+
border-bottom: 2px solid $link-gray;
165171
}
166172
}
167173

vis/stylesheets/modules/map/_header.scss

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,10 @@
166166
font-size: 14px;
167167
}
168168
}
169+
170+
#context {
171+
font-size: 11px;
172+
}
169173
}
170174

171175
@if $skin == 'viper' {
@@ -174,7 +178,7 @@
174178
}
175179

176180
#infolink:hover, #infolink:focus, #infolink:active {
177-
border-bottom: 3px solid $framed-item;
181+
border-bottom: 2px solid $black;
178182
}
179183
}
180184

@@ -302,7 +306,7 @@
302306
display: inline-block;
303307
margin-right: 1%;
304308
height: 15px;
305-
margin-bottom: 3px;
309+
margin-bottom: 6px;
306310
}
307311

308312
//.context_metadata_high {
@@ -320,6 +324,7 @@
320324
align-items: center;
321325

322326
.heading {
327+
color: $area-title-h2;
323328
text-overflow: ellipsis;
324329
height: min-content; // 19.8px
325330
overflow: hidden;

0 commit comments

Comments
 (0)