mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
rustdoc: remove unneeded position: relative
setting CSS
This was added to control percentage sizes, in
79956b96e8
Now, the only percentage size is [`border-radius`], which is
based on the size of the box itself, not its containing block.
This leaves the property unused.
[`border-radius`]: https://developer.mozilla.org/en-US/docs/Web/CSS/border-radius
This commit is contained in:
parent
5570fdae88
commit
24913bd768
@ -1,6 +1,5 @@
|
||||
.setting-line {
|
||||
margin: 1.2em 0.6em;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.setting-radio input, .setting-check input {
|
||||
|
@ -301,7 +301,7 @@ wait-for-css: ("#help-button .popover", {"display": "block"})
|
||||
// Now we go to the settings page to check that the CSS is loaded as expected.
|
||||
go-to: "file://" + |DOC_PATH| + "/settings.html"
|
||||
wait-for: "#settings"
|
||||
assert-css: (".setting-line", {"position": "relative"})
|
||||
assert-css: (".setting-radio", {"cursor": "pointer"})
|
||||
|
||||
assert-attribute-false: ("#settings", {"class": "popover"}, CONTAINS)
|
||||
compare-elements-position: (".sub form", "#settings", ("x"))
|
||||
@ -322,4 +322,4 @@ reload:
|
||||
set-window-size: (300, 1000)
|
||||
click: "#settings-menu"
|
||||
wait-for: "#settings"
|
||||
assert-css: (".setting-line", {"position": "relative"})
|
||||
assert-css: (".setting-radio", {"cursor": "pointer"})
|
||||
|
Loading…
Reference in New Issue
Block a user