Die Darstellung von Zitaten in Beiträgen der Woltlab Suite 3 ist optisch nicht so wirklich gelungen (meiner Meinung nach), daher habe ich eine Modifikation auf CSS-Basis erstellt.
Füge folgenden Codeblock der CSS-Definition des jeweiligen Stils hinzu:
Code
/* ================================================================ Quote Modification by Gino Zantarelli */
woltlab-quote {
background-color: transparent;
box-shadow: none;
border-radius: 0px;
padding: 10px 10px;
}
.quoteBox {
background-color: transparent;
box-shadow: none;
border-radius: 0px;
padding: 10px 10px 10px 0px;
}
.quoteBoxIcon {
float: left;
margin: 0px 10px 0px 0px;
}
.quoteBoxTitle {
color: $wcfContentText;
border-bottom: 2px solid;
padding-bottom: 1px;
margin-right: 0px;
margin-left: 80px;
margin-bottom: 10px;
}
span.quoteBoxTitle {
border-bottom: none;
margin-left: 0px;
}
.quoteBoxContent {
margin-left: 80px;
}
span.quoteBoxTitle {
border-bottom: none;
}
.quoteBoxIcon > .quoteBoxQuoteSymbol::before {
content: "\f10d";
position: relative;
font-family: FontAwesome;
font-size: 50px;
line-height: 50px;
height: 50px;
vertical-align: top;
color: $wcfContentText;
}
.message .quoteBox > .toggleButton, .message .quoteBox.collapsed > .toggleButton,
.message.messageSidebarOrientationLeft .quoteBox > .toggleButton, .message.messageSidebarOrientationLeft .quoteBox.collapsed > .toggleButton {
box-shadow: 0px 1px 0px $wcfContentText inset;
border-top: 10px solid $wcfContentBackground;
background-color: $wcfContentBackground;
margin-top: 10px;
margin-left: 76px;
}
.quoteBox > .toggleButton {
font-size: 10px;
font-style: normal;
text-transform: uppercase;
font-weight: 400;
letter-spacing: 1px;
margin-right: 6px;
}
.messageReduced .messageBody .quoteBox > .toggleButton, .quoteBox.collapsed > .toggleButton {
border-top: 10px solid $wcfContentBackground;
background-color: $wcfContentBackground;
}
Display More
Das sind die optischen Unterschiede, zuerst die Standardansicht der Zitate...
Vorher:
Nachher:
Und die Ansichten bei längeren Inhalt...
Vorher:
Passend zur Modifikation der Zitatboxen findet man hier die Modifikation der Codeboxen: WCS 3 - Codeboxen in Beiträgen / Modifikation (Anleitung)