From ed5a5e7390d24659633efaae47f8c31d52c5b867 Mon Sep 17 00:00:00 2001 From: Zanz2 Date: Wed, 29 Aug 2018 11:33:20 +0200 Subject: [PATCH] Fixed blue block in dropdown, now its a full line --- app/assets/stylesheets/themes/scinote.scss | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/themes/scinote.scss b/app/assets/stylesheets/themes/scinote.scss index 1e440c934..ab05003b7 100644 --- a/app/assets/stylesheets/themes/scinote.scss +++ b/app/assets/stylesheets/themes/scinote.scss @@ -148,7 +148,18 @@ body { .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) { width: 100% !important; } - +/* Makes blue selected element line fill parent (as it should, fixes sci-2672) */ +.bootstrap-select { + .dropdown-menu{ + ul{ + .selected{ + a{ + display: block !important; + } + } + } + } +} mark,.mark { background-color: $brand-warning; }