Skip to content

Commit

Permalink
Refs #139198 - Improve text readability with darker grays.
Browse files Browse the repository at this point in the history
  • Loading branch information
GhitaB committed Sep 29, 2021
1 parent 2f4d0e3 commit 24b749b
Showing 1 changed file with 17 additions and 9 deletions.
26 changes: 17 additions & 9 deletions src/SearchBlock/styles.less
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
@s-medium-gray: #e0e1e2;
@s-light-gray: #edf1f2;
@s-light-orange: #ffdfbb;
@s-dark-orange: #b5762a;
@s-dark-orange: #9c5a0a;

.sui-multi-checkbox-facet__option-input-wrapper {
max-width: 15em;
Expand Down Expand Up @@ -46,10 +46,14 @@ div#page-document {
}

div.searchapp {
background-color: @s-light-gray;
background-color: @s-medium-gray;

div.sui-layout-header {
border-bottom: none;
}

div.sui-paging-info {
color: rgba(0, 0, 0, 0.4);
color: @s-dark-gray;
}

div.sui-facet-search {
Expand Down Expand Up @@ -87,10 +91,6 @@ div#page-document {
div.sui-search-box {
padding-top: 10px;

.ui.toggle.checkbox input ~ label:after {
background: @s-medium-gray;
}

div.search-input {
flex-wrap: wrap;
border-radius: 0;
Expand Down Expand Up @@ -184,6 +184,14 @@ div#page-document {
margin: 0px;
}

.ui.dropdown {
border-bottom: 1px solid @s-dark-gray;

.text {
color: @s-dark-gray;
}
}

div.sorting i.dropdown.icon {
position: absolute;
right: 20px;
Expand Down Expand Up @@ -220,7 +228,7 @@ div#page-document {

width: 100%;
padding-bottom: 5px;
border-bottom: 1px solid @s-light-gray;
border-bottom: 1px solid @s-medium-gray;
margin-top: 5px;
clear: both;

Expand Down Expand Up @@ -257,7 +265,7 @@ div#page-document {
}

p {
color: rgba(0, 0, 0, 0.4);
color: @s-dark-gray;
font-size: 12.8px;
}

Expand Down

0 comments on commit 24b749b

Please sign in to comment.