Bug 3.1* Doppelter Eintrag colours.css
Verfasst: 07.07.2014 09:39
Mit Build 1611 wurden mit Ticket PHPBB3-12735
Build 1610
Build 1611 => https://github.com/phpbb/phpbb/pull/261 ... 961c95L299
Der Parameter
Welcher soll der richtige sein? Mit oder ohne border.
:link, :visited, :active
Links aus der colours.css entfernt. Dabei entstand ein doppelter Eintrag.Build 1610
Code: Alles auswählen
/* Post body links */
.postlink {
color: #368AD2;
border-bottom-color: #368AD2;
}
.postlink:visited {
color: #5D8FBD;
border-bottom-color: #5D8FBD;
}
.postlink:active {
color: #368AD2;
}
.postlink:hover {
background-color: #D0E4F6;
color: #0D4473;
}
Code: Alles auswählen
/* Post body links */
.postlink {
color: #368AD2;
border-bottom-color: #368AD2;
}
.postlink:visited {
color: #5D8FBD;
border-bottom-color: #5D8FBD;
}
.postlink {
color: #368AD2;
}
.postlink:hover {
background-color: #D0E4F6;
color: #0D4473;
}
.postlink
ist 2x vorhanden
Code: Alles auswählen
.postlink {
color: #368AD2;
border-bottom-color: #368AD2;
}
Code: Alles auswählen
.postlink {
color: #368AD2;
}