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

Now that paths are evaluated the same, no need for global img-path variables....

Now that paths are evaluated the same, no need for global img-path variables. Replaced with more direct paths.
parent ef63a3df
No related merge requests found
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -4,7 +4,6 @@ ...@@ -4,7 +4,6 @@
@import "search"; @import "search";
@brand-primary: #619144; // a11y overrides @brand-primary in sass @brand-primary: #619144; // a11y overrides @brand-primary in sass
@img-path: "../../bootprint3/images";
/* --- Bootstrap MODS ---*/ /* --- Bootstrap MODS ---*/
body { body {
...@@ -122,14 +121,14 @@ header .navbar { ...@@ -122,14 +121,14 @@ header .navbar {
width: 170px; width: 170px;
margin-top: 5px; margin-top: 5px;
color: transparent; color: transparent;
background-image: ~"url('@{img-path}/vufind_logo.png')"; background-image: ~"url('../../bootprint3/images/vufind_logo.png')";
background-position: center center; background-position: center center;
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: contain; background-size: contain;
&:active, &:active,
&:focus, &:focus,
&:hover { color: transparent; } &:hover { color: transparent; }
&.lang-ar { background-image: ~"url('@{img-path}/vufind_logo_ar.png')"; } &.lang-ar { background-image: ~"url('../../bootprint3/images/vufind_logo_ar.png')"; }
} }
.navbar-nav > li > a { padding: 12px 6px; } .navbar-nav > li > a { padding: 12px 6px; }
.navbar-right { margin-top: 12px; } .navbar-right { margin-top: 12px; }
......
This diff is collapsed.
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
@import "search"; @import "search";
$brand-primary: #619144; // a11y overrides $brand-primary in sass $brand-primary: #619144; // a11y overrides $brand-primary in sass
$img-path: "../../bootprint3/images" !default;
/* --- Bootstrap MODS ---*/ /* --- Bootstrap MODS ---*/
body { body {
...@@ -121,14 +120,14 @@ header .navbar { ...@@ -121,14 +120,14 @@ header .navbar {
width: 170px; width: 170px;
margin-top: 5px; margin-top: 5px;
color: transparent; color: transparent;
background-image: unquote("url('#{$img-path}/vufind_logo.png')"); background-image: unquote("url('../../bootprint3/images/vufind_logo.png')");
background-position: center center; background-position: center center;
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: contain; background-size: contain;
&:active, &:active,
&:focus, &:focus,
&:hover { color: transparent; } &:hover { color: transparent; }
&.lang-ar { background-image: url('#{$img-path}/vufind_logo_ar.png'); } &.lang-ar { background-image: unquote("url('../../bootprint3/images/vufind_logo_ar.png')"); }
} }
.navbar-nav > li > a { padding: 12px 6px; } .navbar-nav > li > a { padding: 12px 6px; }
.navbar-right { margin-top: 12px; } .navbar-right { margin-top: 12px; }
......
This diff is collapsed.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -3,8 +3,7 @@ ...@@ -3,8 +3,7 @@
@import "vendor/bootstrap-accessibility/bootstrap-accessibility"; @import "vendor/bootstrap-accessibility/bootstrap-accessibility";
@import "vendor/a11y"; @import "vendor/a11y";
@fa-font-path: "../../../fonts"; @fa-font-path: "../../../../../../themes/bootstrap3/css/fonts";
@img-path: "../../bootstrap3/images";
@import "components/advanced-search"; @import "components/advanced-search";
@import "components/alphabrowse"; @import "components/alphabrowse";
......
...@@ -4,7 +4,7 @@ $fa-font-path: "../../bootstrap3/css/fonts"; ...@@ -4,7 +4,7 @@ $fa-font-path: "../../bootstrap3/css/fonts";
@import "vendor/bootstrap-accessibility/bootstrap-accessibility"; @import "vendor/bootstrap-accessibility/bootstrap-accessibility";
@import "vendor/a11y"; @import "vendor/a11y";
$img-path: "../../bootstrap3/images" !default; $fa-font-path: "../../../../../../themes/bootstrap3/css/fonts" !default;
@import "components/advanced-search"; @import "components/advanced-search";
@import "components/alphabrowse"; @import "components/alphabrowse";
......
...@@ -48,5 +48,3 @@ ...@@ -48,5 +48,3 @@
.marc-row-008 { .marc-row-008 {
white-space: pre-wrap; white-space: pre-wrap;
} }
.comment-form textarea.form-control { display: block; }
...@@ -119,3 +119,8 @@ $thumbnail-width-large: 160px !default; ...@@ -119,3 +119,8 @@ $thumbnail-width-large: 160px !default;
} }
.wikipedia img { margin-right: 1rem; } .wikipedia img { margin-right: 1rem; }
.geoItem {
font-size: .9em;
margin: 0px 0px 10px;
}
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