Place a:active definitions after a:hover ones, as per the
recommendations at http://www.w3schools.com/css/css_pseudo_classes.asp. PR: www/97043 Submitted by: Atsushi SUGAWARA
This commit is contained in:
parent
0609f02158
commit
3d58a1a76c
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=27786
2 changed files with 6 additions and 6 deletions
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* FreeBSD.org - Layout Styles
|
||||
*
|
||||
* $FreeBSD: www/en/layout/css/layout.css,v 1.7 2006/04/26 19:48:51 simon Exp $
|
||||
* $FreeBSD: www/en/layout/css/layout.css,v 1.8 2006/05/08 23:15:37 kuriyama Exp $
|
||||
*/
|
||||
|
||||
/* Container Definitions */
|
||||
|
@ -397,7 +397,7 @@
|
|||
font-weight: bold;
|
||||
}
|
||||
|
||||
.frontnewcontent a, .frontnewcontent a:link, .frontnewcontent a:visited, .frontnewcontent a:active, .frontnewcontent a:hover {
|
||||
.frontnewcontent a, .frontnewcontent a:link, .frontnewcontent a:visited, .frontnewcontent a:hover, .frontnewcontent a:active {
|
||||
color: #990000;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
@ -435,7 +435,7 @@
|
|||
font-weight: bold;
|
||||
}
|
||||
|
||||
.frontgetcontent a, .frontgetcontent a:link, .frontgetcontent a:visited, .frontgetcontent a:active, .frontgetcontent a:hover {
|
||||
.frontgetcontent a, .frontgetcontent a:link, .frontgetcontent a:visited, .frontgetcontent a:hover, .frontgetcontent a:active {
|
||||
color: #990000;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* FreeBSD.org - Text Styles
|
||||
*
|
||||
* $FreeBSD$
|
||||
* $FreeBSD: www/en/layout/css/text.css,v 1.3 2005/11/23 14:22:06 keramida Exp $
|
||||
*/
|
||||
|
||||
/* Heading Definitions */
|
||||
|
@ -99,13 +99,13 @@ h4 {
|
|||
|
||||
a:link { color:#990000; text-decoration: underline; }
|
||||
a:visited { color:#990000; text-decoration: underline; }
|
||||
a:active { color:#990000; text-decoration: underline; }
|
||||
a:hover { color:#000000; text-decoration: underline; }
|
||||
a:active { color:#990000; text-decoration: underline; }
|
||||
|
||||
#FOOTER a:link, #footer a:link { color:#666; text-decoration: underline; }
|
||||
#FOOTER a:visited, #footer a:visited { color:#666; text-decoration: underline; }
|
||||
#FOOTER a:active, #footer a:active { color:#666; text-decoration: underline; }
|
||||
#FOOTER a:hover, #footer a:hover { color:#000000; text-decoration: underline; }
|
||||
#FOOTER a:active, #footer a:active { color:#666; text-decoration: underline; }
|
||||
|
||||
#FRONTNEMSCONTAINER h2, #frontnemscontainer h2 {
|
||||
margin: 0;
|
||||
|
|
Loading…
Reference in a new issue