Neuerdings funktioniert dieser Code nicht mehr:
CSS
/* Button - Zitieren - Hintergrundfarbe */
.buttonGroup > li:last-child .button[data-tooltip="Zitieren"],
.messageFooterButtons > li:last-child .button[data-tooltip="Zitieren"],gold
.messageFooterButtonsExtra > li:last-child .button[data-tooltip="Zitieren"] {
background: lightblue !important; }
Deshalb habe ich mal selbst versucht einen neuen Ansatz zu finden, wobei es um diese Button geht:
Für diese Button habe ich jetzt folgenden Code erstellt:
CSS
/* Button - Inhalt melden - Hintergrundfarbe */
.buttonGroup > li:last-child .button[data-tooltip="Inhalt melden"],
.messageFooterButtons > li:last-child .button[data-tooltip="Inhalt melden"],
.messageFooterButtonsExtra > li:last-child .button[data-tooltip="Inhalt melden"] {
margin-right: -10px !important;
background: orange !important; }
.buttonGroup > li:last-child .button[data-tooltip="Inhalt melden"]:hover,
.messageFooterButtons > li:last-child .button[data-tooltip="Inhalt melden"]:hover,
.messageFooterButtonsExtra > li:last-child .button[data-tooltip="Inhalt melden"]:hover {
margin-right: -10px !important;
background: greenyellow !important; }
/* Button - Zitieren - Hintergrundfarbe */
.icon.icon16.fa-quote-left{
padding-bottom: 23px !important;
padding-top: 9px !important;
padding-left: 11px !important;
padding-right: 22px !important;
background: gold !important; }
.icon.icon16.fa-quote-left:hover{
background: greenyellow !important; }
/* Button - Bearbeiten - Farbe */
.jsMessageEditButton{
margin-top: 8px !important;
margin-bottom: 8px !important;
background: wheat !important; }
.jsMessageEditButton:hover{
background: greenyellow !important; }
/* Button - Stern (als hilfsreichste Antwort markieren) - Hintergrundfarbe */
.icon.icon16.fa-star{
padding-bottom: 23px !important;
padding-top: 9px !important;
padding-left: 11px !important;
padding-right: 22px !important;
background: lightblue !important; }
.icon.icon16.fa-star:hover{
background: greenyellow !important; }
Alles anzeigen
Kann das so verwendet werden, oder hat wer bessere Vorschläge?