Issue #2054055 by seanr: Bartik inappropriately styles all links in the footer, rather than links inside blocks in the footer, breaking contextual links in the process.
parent
390d04eef7
commit
c465f9667f
|
@ -91,9 +91,7 @@
|
||||||
}
|
}
|
||||||
.contextual-region .contextual .contextual-links a {
|
.contextual-region .contextual .contextual-links a {
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
/* This is an unfortunately necessary use of !important to prevent white
|
color: #333;
|
||||||
* links on a white background or some similar illegible combination. */
|
|
||||||
color: #333 !important;
|
|
||||||
display: block;
|
display: block;
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
font-size: small;
|
font-size: small;
|
||||||
|
|
|
@ -953,17 +953,17 @@ ul.links {
|
||||||
|
|
||||||
/* ------------------ Footer ------------------ */
|
/* ------------------ Footer ------------------ */
|
||||||
|
|
||||||
#footer-wrapper {
|
#footer-wrapper .block .content {
|
||||||
color: #c0c0c0;
|
color: #c0c0c0;
|
||||||
color: rgba(255, 255, 255, 0.65);
|
color: rgba(255, 255, 255, 0.65);
|
||||||
font-size: 0.857em;
|
font-size: 0.857em;
|
||||||
}
|
}
|
||||||
#footer-wrapper a {
|
#footer-wrapper .block .content a {
|
||||||
color: #fcfcfc;
|
color: #fcfcfc;
|
||||||
color: rgba(255, 255, 255, 0.8);
|
color: rgba(255, 255, 255, 0.8);
|
||||||
}
|
}
|
||||||
#footer-wrapper a:hover,
|
#footer-wrapper .block .content a:hover,
|
||||||
#footer-wrapper a:focus {
|
#footer-wrapper .block .content a:focus {
|
||||||
color: #fefefe;
|
color: #fefefe;
|
||||||
color: rgba(255, 255, 255, 0.95);
|
color: rgba(255, 255, 255, 0.95);
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
|
|
Loading…
Reference in New Issue