mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
add specific classes for different types of autolink, allowing them to
be styled differently
This commit is contained in:
parent
9935523903
commit
ba9616170e
1 changed files with 14 additions and 6 deletions
|
@ -33,21 +33,29 @@ a:visited {
|
|||
|
||||
a.dimmed:link,
|
||||
a.dimmed:visited {
|
||||
color:#AAAAAA; /* hidden */
|
||||
color:#AAAAAA;
|
||||
}
|
||||
|
||||
a.autolink:link,
|
||||
a.autolink:visited {
|
||||
background-color:#DDDDDD; /* autolink */
|
||||
a.autolink:visited,
|
||||
a.glossary-autolink:link,
|
||||
a.glossary-autolink:visited,
|
||||
a.activity-autolink:link,
|
||||
a.activity-autolink:visited,
|
||||
a.resource-autolink:link,
|
||||
a.resource-autolink:visited {
|
||||
background-color:#DDDDDD;
|
||||
color:#000000;
|
||||
}
|
||||
|
||||
a.autolink:hover,
|
||||
a:hover,
|
||||
a.dimmed:hover {
|
||||
a:hover {
|
||||
color:#FF0000;
|
||||
}
|
||||
|
||||
a.glossary-autolink:hover {
|
||||
cursor: help;
|
||||
}
|
||||
|
||||
|
||||
/* general styles */
|
||||
body {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue