-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Clean up dom #84703
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clean up dom #84703
Changes from all commits
7414d28
4231250
9077d54
93389b5
98a9b02
fab6814
14fe83f
0daf8ac
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,8 +10,7 @@ body { | |
color: #c5c5c5; | ||
} | ||
|
||
h1, h2, h3:not(.impl):not(.method):not(.type):not(.tymethod), | ||
h4:not(.method):not(.type):not(.tymethod) { | ||
h1, h2, h3, h4 { | ||
color: white; | ||
} | ||
h1.fqn { | ||
|
@@ -20,10 +19,10 @@ h1.fqn { | |
h1.fqn a { | ||
color: #fff; | ||
} | ||
h2, h3:not(.impl):not(.method):not(.type):not(.tymethod) { | ||
h2, h3, h4 { | ||
border-bottom-color: #5c6773; | ||
} | ||
h4:not(.method):not(.type):not(.tymethod):not(.associatedconstant) { | ||
h4 { | ||
border: none; | ||
} | ||
Comment on lines
+22
to
27
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not necessarily for this PR, but: it's odd that there's a rule setting border-bottom-color for h2, h3, and h4; but then there's immediately a rule removing any border for h4. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It doesn't make sense, I'll remove it as well. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah! Actually we need both because of how we enforce the themes to have the same rules as the |
||
|
||
|
@@ -407,6 +406,10 @@ pre.ignore:hover, .information:hover + pre.ignore { | |
border-color: #5c6773; | ||
} | ||
|
||
.notable-traits-tooltiptext .notable { | ||
border-bottom-color: #5c6773; | ||
} | ||
|
||
#titles > button.selected { | ||
background-color: #141920 !important; | ||
border-bottom: 1px solid #ffb44c !important; | ||
|
Uh oh!
There was an error while loading. Please reload this page.