From 7ca58187adc219cc6ad29de6181bf02b6963c678 Mon Sep 17 00:00:00 2001 From: Claas Kazzer <kazzer@ub.uni-leipzig.de> Date: Wed, 19 Jun 2019 09:18:40 +0200 Subject: [PATCH] refs #15407 [fid_bbi] style fixes in advanced search box * fixes advanced search box options in header (after having submitted a search) * fixes shards label color on home page * creates single border look for adv search options in header --- themes/fid_bbi/scss/compiled.scss | 45 ++++++++++++++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) diff --git a/themes/fid_bbi/scss/compiled.scss b/themes/fid_bbi/scss/compiled.scss index 01780e50b0f..05968029642 100644 --- a/themes/fid_bbi/scss/compiled.scss +++ b/themes/fid_bbi/scss/compiled.scss @@ -152,6 +152,10 @@ body { display: flex; } + .flex-checkbox label { + color: $oil; + } + // Shard box .checkbox { transform: translate(-250%, 200%); @@ -197,6 +201,45 @@ input.searchFormKeepFilters { } } +//// Advanced Search links in header +///// pull to right on Large +.navbar-form { + padding: 0; + + ///// transparentize border to avoid double border thickness + .tab-content { + border-color: transparent; + } +} + +.adv_search_terms { + background-color: transparent; + border: 1px solid $snow; + color: $snow; +} + +.adv_search_links { + border-bottom: 1px solid $snow; + border-left: 1px solid $snow; + border-right: 1px solid $snow; + color: $snow; + + li { + display: table-cell; + } + + a { + color: $snow; + } + + // 768px and above as inline list + @media only screen and (min-width: $screen-sm-min) { + li { + border-right: 1px solid $snow; + } + } +} + // Breadcrumbs .breadcrumb { @@ -241,7 +284,6 @@ input.searchFormKeepFilters { } - // Footer footer { background: $brand-primary; @@ -305,3 +347,4 @@ footer { .description-tab > table th { min-width: 13rem; } + -- GitLab