Skip to content

Commit

Permalink
General CSS cleanup
Browse files Browse the repository at this point in the history
Fixes various CSS bugs
  • Loading branch information
David McCallum committed Jul 23, 2014
1 parent c96374a commit b563065
Show file tree
Hide file tree
Showing 7 changed files with 187 additions and 180 deletions.
13 changes: 11 additions & 2 deletions app/assets/stylesheets/a-accessibility-overrides.css.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#header-navbar-fixed-top {
.navbar-inner {
.black, .black a {
color: #FFF;
color: #fff;
}
.brand, .brand a {
color: #000;
Expand All @@ -33,5 +33,14 @@
}

.sets #osu-top-hat {
color: #FFF;
color: #fff;
}

#header-navbar-fixed-top .navbar-inner .black {
/* background-color: red !important;*/
}

#searchbar span {
font-size: .8em;
top: 5em;
}
6 changes: 3 additions & 3 deletions app/assets/stylesheets/blacklight.css.scss
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
/* Accessibility tweaks to built-in variables to avoid crazy CSS overrides */
$linkColor: darken(#08c, 20%);
$linkColorHover: darken($linkColor, 15%);
$linkColor: #0f959a;//#1C88A4;
$linkColorHover: lighten($linkColor, 10%);
$warningText: darken(#c09853, 20%);
$successText: darken(#468847, 20%);
$errorText: darken(#b94a48, 20%);
$infoText: darken(#3a87ad, 20%);

/* Undo color changes for variables that bootstrap defines as being based on
* those I just overrode */
$btnPrimaryBackground: #08c;
$btnPrimaryBackground: #0f959a;
$dropdownLinkBackgroundActive: #08c;

@import 'bootstrap';
Expand Down
19 changes: 6 additions & 13 deletions app/assets/stylesheets/sets_osu_template.css.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.sets.Oregon_State_University {
$background: #F1ECE3;
$accent-bg: #DAC582;
$accent-bg: #F5DBB2;
$highlight-bg: #1FA1BF;

$color: #561F4B;
Expand All @@ -17,25 +17,18 @@
font-family: "Gudea","Arial","Verdana",sans-serif;
}


h1, h1 a, h2, h3, h4 {
font-weight: normal;
color: $color;
h1, h2, h3, h4 {
//color: $color;
font-family: 'EksjaExtremesRegular',Arial,Helvetica,Verdana,sans-serif;
}

a {
color: #C34500;
}

#facets h4, #sidebar-nav .nav-header {
background-color: #5C2651;
color: #FFFFFF;
background-color: #144651;
color: #fff;
font-family: 'EksjaExtremesRegular',Arial,Helvetica,Verdana,sans-serif;

}

#facets h5.twiddle-open {
background-color: #5D87A1;
}
}
}

0 comments on commit b563065

Please sign in to comment.