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:link,
|
||||||
a.dimmed:visited {
|
a.dimmed:visited {
|
||||||
color:#AAAAAA; /* hidden */
|
color:#AAAAAA;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.autolink:link,
|
a.autolink:link,
|
||||||
a.autolink:visited {
|
a.autolink:visited,
|
||||||
background-color:#DDDDDD; /* autolink */
|
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;
|
color:#000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.autolink:hover,
|
a:hover {
|
||||||
a:hover,
|
|
||||||
a.dimmed:hover {
|
|
||||||
color:#FF0000;
|
color:#FF0000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a.glossary-autolink:hover {
|
||||||
|
cursor: help;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* general styles */
|
/* general styles */
|
||||||
body {
|
body {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue