Rollup merge of #99489 - GuillaumeGomez:gui-fixes, r=notriddle
rustdoc UI fixes The first commit fixes this bug:   The second one fixes the missing change of border color when the search input is focused. cc `@jsha` r? `@notriddle`
This commit is contained in:
commit
73ef81dcea
6 changed files with 46 additions and 8 deletions
|
@ -949,7 +949,7 @@ table,
|
||||||
#crate-search {
|
#crate-search {
|
||||||
min-width: 115px;
|
min-width: 115px;
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
padding-left: 0.3125em;
|
padding-left: 0.15em;
|
||||||
padding-right: 23px;
|
padding-right: 23px;
|
||||||
border: 1px solid;
|
border: 1px solid;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
@ -958,8 +958,6 @@ table,
|
||||||
-moz-appearance: none;
|
-moz-appearance: none;
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
/* Removes default arrow from firefox */
|
/* Removes default arrow from firefox */
|
||||||
text-indent: 0.01px;
|
|
||||||
text-overflow: "";
|
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
background-size: 20px;
|
background-size: 20px;
|
||||||
|
@ -986,7 +984,6 @@ table,
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
transition: border-color 300ms ease;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -184,7 +184,13 @@ details.rustdoc-toggle > summary::before {
|
||||||
|
|
||||||
#crate-search, .search-input {
|
#crate-search, .search-input {
|
||||||
background-color: #141920;
|
background-color: #141920;
|
||||||
/* Without the `!important`, the border-color is ignored for `<select>`... */
|
border-color: #424c57;
|
||||||
|
}
|
||||||
|
|
||||||
|
#crate-search {
|
||||||
|
/* Without the `!important`, the border-color is ignored for `<select>`...
|
||||||
|
It cannot be in the group above because `.search-input` has a different border color on
|
||||||
|
hover. */
|
||||||
border-color: #424c57 !important;
|
border-color: #424c57 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -159,7 +159,13 @@ details.rustdoc-toggle > summary::before {
|
||||||
#crate-search, .search-input {
|
#crate-search, .search-input {
|
||||||
color: #111;
|
color: #111;
|
||||||
background-color: #f0f0f0;
|
background-color: #f0f0f0;
|
||||||
/* Without the `!important`, the border-color is ignored for `<select>`... */
|
border-color: #f0f0f0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#crate-search {
|
||||||
|
/* Without the `!important`, the border-color is ignored for `<select>`...
|
||||||
|
It cannot be in the group above because `.search-input` has a different border color on
|
||||||
|
hover. */
|
||||||
border-color: #f0f0f0 !important;
|
border-color: #f0f0f0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -146,7 +146,13 @@ details.rustdoc-toggle > summary::before {
|
||||||
|
|
||||||
#crate-search, .search-input {
|
#crate-search, .search-input {
|
||||||
background-color: white;
|
background-color: white;
|
||||||
/* Without the `!important`, the border-color is ignored for `<select>`... */
|
border-color: #e0e0e0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#crate-search {
|
||||||
|
/* Without the `!important`, the border-color is ignored for `<select>`...
|
||||||
|
It cannot be in the group above because `.search-input` has a different border color on
|
||||||
|
hover. */
|
||||||
border-color: #e0e0e0 !important;
|
border-color: #e0e0e0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
23
src/test/rustdoc-gui/search-input.goml
Normal file
23
src/test/rustdoc-gui/search-input.goml
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
// Ensures that the search input border color changes on focus.
|
||||||
|
goto: file://|DOC_PATH|/test_docs/index.html
|
||||||
|
local-storage: {"rustdoc-use-system-theme": "false", "rustdoc-theme": "dark"}
|
||||||
|
reload:
|
||||||
|
|
||||||
|
assert-css: (".search-input", {"border-color": "rgb(224, 224, 224)"})
|
||||||
|
click: ".search-input"
|
||||||
|
focus: ".search-input"
|
||||||
|
assert-css: (".search-input", {"border-color": "rgb(0, 141, 253)"})
|
||||||
|
|
||||||
|
local-storage: {"rustdoc-theme": "light"}
|
||||||
|
reload:
|
||||||
|
|
||||||
|
assert-css: (".search-input", {"border-color": "rgb(224, 224, 224)"})
|
||||||
|
click: ".search-input"
|
||||||
|
assert-css: (".search-input", {"border-color": "rgb(102, 175, 233)"})
|
||||||
|
|
||||||
|
local-storage: {"rustdoc-theme": "ayu"}
|
||||||
|
reload:
|
||||||
|
|
||||||
|
assert-css: (".search-input", {"border-color": "rgb(66, 76, 87)"})
|
||||||
|
click: ".search-input"
|
||||||
|
assert-css: (".search-input", {"border-color": "rgb(66, 76, 87)"})
|
|
@ -18,7 +18,7 @@ assert-css: (".search-results div.desc", {"width": "570px"})
|
||||||
size: (900, 900)
|
size: (900, 900)
|
||||||
|
|
||||||
// First we check the current width and position.
|
// First we check the current width and position.
|
||||||
assert-css: ("#crate-search", {"width": "222px"})
|
assert-css: ("#crate-search", {"width": "218px"})
|
||||||
compare-elements-position-near: (
|
compare-elements-position-near: (
|
||||||
"#crate-search",
|
"#crate-search",
|
||||||
"#search-settings .search-results-title",
|
"#search-settings .search-results-title",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue