mirror of
https://github.com/apache/httpd.git
synced 2025-08-15 23:27:39 +00:00
Follow up to r1828588.
Update css to have permalink more in line with httpd.a.o: - default to white (blue on dark-blue is not really visible) - visible only when the mouse is over the corresponding heading git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1851167 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -1032,6 +1032,24 @@ p.figure dfn {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
* Permalink are used in <h2> tags only.
|
||||
* They are hidden by default, and become visible only when the mouse
|
||||
* is over the corresponding element.
|
||||
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
|
||||
.permalink {
|
||||
visibility: hidden;
|
||||
}
|
||||
.permalink:link {
|
||||
color: white;
|
||||
}
|
||||
.permalink:visited {
|
||||
color: white;
|
||||
}
|
||||
h2:hover > .permalink {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
* -> The End <-
|
||||
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
|
||||
|
Reference in New Issue
Block a user