Skip to content
Snippets Groups Projects
Commit ecc21777 authored by Chris Hallberg's avatar Chris Hallberg
Browse files

Update SASS.

parent 32e1224f
No related merge requests found
...@@ -129,19 +129,25 @@ ul.random.image li img { margin: 0 auto; } ...@@ -129,19 +129,25 @@ ul.random.image li img { margin: 0 auto; }
/* --- Sidebar --- */ /* --- Sidebar --- */
.sidebar { .sidebar {
.list-group { margin-bottom: 5px; } .facet-group { margin-bottom: 5px; }
.list-group label.list-group-item { padding-left: 26px; } .facet-group label.list-group-item { padding-left: 26px; }
.list-group label.list-group-item input[type=checkbox] { margin-top: 2px; } .facet-group label.list-group-item input[type=checkbox] { margin-top: 2px; }
.list-group-item { padding: 7px 10px 6px; } .facet { padding: 7px 10px 6px; }
.list-group-item.active { color: #fff; } .facet.active,
.list-group-item.active .badge { color: $active-orange; } .facet.active:hover,
.list-group-item.active, .active-filters .facet {
.list-group-item.active:hover { color: #fff;
background: $active-orange; background-color: $active-orange;
border-color: $active-orange; border-color: $active-orange;
} }
.list-group-item .badge a { color: #fff; } .facet.active .badge,
.jstree-node.active .badge,
.jstree-node.active .badge .fa { color: $active-orange; }
.facet .badge a { color: #fff; }
.facet.facetOR { padding-left: 1rem; }
.facet.excludable { padding-right: 0; }
} }
.slider-container .slider-handle { .slider-container .slider-handle {
background: $brand-primary; background: $brand-primary;
...@@ -156,3 +162,5 @@ ul.random.image li img { margin: 0 auto; } ...@@ -156,3 +162,5 @@ ul.random.image li img { margin: 0 auto; }
color: #fff; color: #fff;
&:hover { color: $brand-danger; } &:hover { color: $brand-danger; }
} }
.jstree-facet .jstree-ocl::before { margin-left: -5px; }
.jstree-node.active { background-color: $active-orange; }
.hierarchy-tree { .hierarchy-tree,
.jstree-facet {
/* jsTree arrows */ /* jsTree arrows */
.jstree-ocl:before { .jstree-ocl:before {
float: left; float: left;
...@@ -20,7 +21,7 @@ ...@@ -20,7 +21,7 @@
color: #000; color: #000;
} }
.jstree-anchor { .jstree-anchor {
padding: 2px 5px; padding-left: 5px;
white-space: nowrap; white-space: nowrap;
} }
.jstree-container-ul, .jstree-container-ul,
...@@ -41,6 +42,12 @@ ...@@ -41,6 +42,12 @@
font-weight: bold; font-weight: bold;
} }
} }
.jstree-node.list-group-item {
margin-bottom: 0;
border: 0;
border-bottom: 1px solid $list-group-border;
border-radius: 0;
}
/* --- Record --- */ /* --- Record --- */
#hierarchyTreeHolder { #hierarchyTreeHolder {
...@@ -73,12 +80,14 @@ ...@@ -73,12 +80,14 @@
} }
/* facet list styling */ /* facet list styling */
.jstree-facet li span.main { .jstree-facet li span.main {
display: block;
padding-left: 1px; /* Fix Firefox cutting the checkboxes */
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
} }
.jstree-facet .main.applied .fa-check {
margin-top: 2px;
margin-right: 4px;
}
.jstree-facet .jstree-container-ul { .jstree-facet .jstree-container-ul {
padding: 0; padding: 0;
& > li.active, & > li.active,
...@@ -92,6 +101,6 @@ li.jstree-node { list-style: none; } ...@@ -92,6 +101,6 @@ li.jstree-node { list-style: none; }
li.jstree-facet .badge { cursor: text; } li.jstree-facet .badge { cursor: text; }
li.jstree-facet ul { padding-left: 20px; } li.jstree-facet ul { padding-left: 20px; }
.list-group.facet .jstree-node.list-group-item { padding-left: 19px; } .facet .jstree-node.list-group-item { padding-left: 19px; }
.list-group.facet .jstree-icon::before { margin-left: -12px; } .facet .jstree-icon::before { margin-left: -12px; }
.list-group.facet .jstree-facet li span.main { padding: 1px; } .facet .jstree-facet li span.main { padding: 1px; }
...@@ -9,7 +9,11 @@ ...@@ -9,7 +9,11 @@
line-height: 1.5rem; line-height: 1.5rem;
.badge, .badge,
.status { float: right; } .status {
float: right;
body.rtl & { float: left; }
}
.badge { .badge {
max-height: 19px; max-height: 19px;
line-height: 1.1rem; line-height: 1.1rem;
...@@ -74,16 +78,23 @@ ...@@ -74,16 +78,23 @@
font-weight: bold; font-weight: bold;
color: $text-color; color: $text-color;
} }
.facet-group > .checkbox,
.sidebar .facet.checkbox {
margin: 0;
padding-left: 2rem;
}
.active-filters .facet, .active-filters .facet,
.facet-group .active { .facet-group .active {
padding-right: .65rem;
background-color: $brand-primary; background-color: $brand-primary;
color: #fff; color: #fff;
a { color: #fff; } a { color: #fff; }
} }
.active-filters .facet { padding-right: .65rem; } .facet.active .badge,
.facet-group .active .badge { .jstree-node.active .badge,
.jstree-node.active .badge .fa {
background-color: #fff; background-color: #fff;
color: $brand-primary; color: $brand-primary;
} }
...@@ -105,3 +116,10 @@ ...@@ -105,3 +116,10 @@
} }
.full-facet-list { margin-top: 1rem; } .full-facet-list { margin-top: 1rem; }
.full-facet-list .active .fa {
float: right;
margin-top: .25rem;
margin-right: 0.5rem;
margin-left: 0.5rem;
}
body.rtl .full-facet-list .active .fa { float: left; }
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment