Rollup merge of #103988 - GuillaumeGomez:fix-bottom-border-color, r=notriddle

Fix search result bottom border color

It reverts a color change while keeping the improvement made in #103938.

I think it'll need to be backported once merged too.

r? `@notriddle`
This commit is contained in:
Matthias Krüger 2022-11-05 18:06:07 +01:00 committed by GitHub
commit e51e4a4ecf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 4 deletions

View File

@ -886,7 +886,7 @@ so that we can apply CSS-filters to change the arrow color in themes */
/* A little margin ensures the browser's outlining of focused links has room to display. */
margin-left: 2px;
margin-right: 2px;
border-bottom: 1px solid var(--border-color);
border-bottom: 1px solid var(--search-result-border-color);
gap: 1em;
}

View File

@ -38,6 +38,7 @@ Original by Dempfi (https://github.com/dempfi/ayu)
--sidebar-link-color: #53b1db;
--sidebar-current-link-background-color: transparent;
--search-result-link-focus-background-color: #3c3c3c;
--search-result-border-color: #aaa3;
--stab-background-color: #314559;
--stab-code-color: #e6e1cf;
--search-color: #fff;

View File

@ -33,6 +33,7 @@
--sidebar-link-color: #fdbf35;
--sidebar-current-link-background-color: #444;
--search-result-link-focus-background-color: #616161;
--search-result-border-color: #aaa3;
--stab-background-color: #314559;
--stab-code-color: #e6e1cf;
--search-color: #111;

View File

@ -33,6 +33,7 @@
--sidebar-link-color: #356da4;
--sidebar-current-link-background-color: #fff;
--search-result-link-focus-background-color: #ccc;
--search-result-border-color: #aaa3;
--stab-background-color: #fff5d6;
--stab-code-color: #000;
--search-color: #000;

View File

@ -78,7 +78,7 @@ assert-css: (
// Checking the color of the bottom border.
assert-css: (
".search-results > a",
{"border-bottom-color": "rgb(92, 103, 115)"}
{"border-bottom-color": "rgba(170, 170, 170, 0.2)"}
)
// Checking the color of "keyword" text.
@ -190,7 +190,7 @@ assert-css: (
// Checking the color of the bottom border.
assert-css: (
".search-results > a",
{"border-bottom-color": "rgb(224, 224, 224)"}
{"border-bottom-color": "rgba(170, 170, 170, 0.2)"}
)
// Checking the color for "keyword" text.
@ -287,7 +287,7 @@ assert-css: (
// Checking the color of the bottom border.
assert-css: (
".search-results > a",
{"border-bottom-color": "rgb(224, 224, 224)"}
{"border-bottom-color": "rgba(170, 170, 170, 0.2)"}
)
// Checking the color for "keyword" text.