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

Merge branch 'release-3.1'

parents 9958aced f8868363
No related merge requests found
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -4,6 +4,7 @@
@import "search";
@brand-primary: #619144; // a11y overrides @brand-primary in sass
@active-orange: #E70;
/* --- Bootstrap MODS ---*/
body {
......@@ -151,7 +152,7 @@ header .searchbox .tab-content .navbar-text { margin: 5px 10px 5px 0; }
}
}
header .breadcrumb {
border: 1px solid #CCC;
border: 1px solid @gray-lighter;
border-radius: 0;
border-width: 1px 0;
font-size: 12px;
......@@ -260,7 +261,6 @@ ul.random.image li img { margin: 0 auto; }
}
/* --- Sidebar --- */
@active-orange: #E70;
.sidebar {
.list-group { margin-bottom: 5px; }
.list-group label.list-group-item { padding-left: 26px; }
......@@ -275,15 +275,15 @@ ul.random.image li img { margin: 0 auto; }
border-color: @active-orange;
}
.list-group-item .badge a { color: #fff; }
.slider-container {
margin: 4px auto 10px;
width: 95%;
}
.slider-container .slider-handle {
background: #619144;
opacity: 1;
}
.slider-container .slider-handle {
background: @brand-primary;
border: 1px solid @brand-primary;
&:hover,&:active,&:focus {
background: #FFF;
border-color: @gray-light;
}
&:active,&:focus { border-color: @brand-primary; }
}
.top-row .badge a {
color: #fff;
......
......@@ -3,6 +3,7 @@
@import "search";
$brand-primary: #619144; // a11y overrides $brand-primary in sass
$active-orange: #E70 !default;
/* --- Bootstrap MODS ---*/
body {
......@@ -150,7 +151,7 @@ header .searchbox .tab-content .navbar-text { margin: 5px 10px 5px 0; }
}
}
header .breadcrumb {
border: 1px solid #CCC;
border: 1px solid $gray-lighter;
border-radius: 0;
border-width: 1px 0;
font-size: 12px;
......@@ -259,7 +260,6 @@ ul.random.image li img { margin: 0 auto; }
}
/* --- Sidebar --- */
$active-orange: #E70 !default;
.sidebar {
.list-group { margin-bottom: 5px; }
.list-group label.list-group-item { padding-left: 26px; }
......@@ -274,15 +274,15 @@ $active-orange: #E70 !default;
border-color: $active-orange;
}
.list-group-item .badge a { color: #fff; }
.slider-container {
margin: 4px auto 10px;
width: 95%;
}
.slider-container .slider-handle {
background: #619144;
opacity: 1;
}
.slider-container .slider-handle {
background: $brand-primary;
border: 1px solid $brand-primary;
&:hover,&:active,&:focus {
background: #FFF;
border-color: $gray-light;
}
&:active,&:focus { border-color: $brand-primary; }
}
.top-row .badge a {
color: #fff;
......
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