In der Woltlab Suite 3 gibt es keine Iconsymbole mehr in den Hinweisfenstern, hiermit kann man diese wieder anzeigen lassen:
Code
/* ================================================================ Announcement Icon Modification by Gino Zantarelli */
.info, .error, .warning, .success {
position: relative;
padding-left: 52px;
border: none;
&::after {
font-family: FontAwesome;
font-size: 28px;
display: block;
height: 32px;
left: 12px;
margin-top: -19px;
position: absolute;
top: 50%;
width: 32px;
text-align: center;
color: inherit;
}
}
.info::after {
content: $fa-var-info;
}
.error::after {
content: $fa-var-ban;
}
.warning::after {
content: $fa-var-warning;
}
.success::after {
content: $fa-var-check;
}
.info.notice, .error.notice, .warning.notice, .success.notice {
padding-top: 20px;
padding-left: 52px;
&::after {
top: 35px;
}
}
.info.notice.noticeDismissible.active, .error.notice.noticeDismissible.active, .warning.notice.noticeDismissible.active, .success.notice.noticeDismissible.active {
padding-top: 20px;
padding-left: 52px;
&::after {
top: 35px;
}
}
.sidebar .info::after, .sidebar .error::after, .sidebar .warning::after, .sidebar .success::after {
top: 25px;
}
.pageFooterStickyNotice .error::after, .pageFooterStickyNotice .info::after, .pageFooterStickyNotice .success::after, .pageFooterStickyNotice .warning::after {
display: none;
}
#systemNotification > p.info::after, #systemNotification > p.error::after, #systemNotification > p.success::after, #systemNotification > p.warning::after {
display: none;
}
#systemNotification > p.info, #systemNotification > p.error, #systemNotification > p.success, #systemNotification > p.warning {
padding: 10px 20px;
}
.noticeDismissible > .jsDismissNoticeButton {
float: right;
margin-top: -10px;
margin-right: -10px;
}
.pageFooterStickyNotice .error, .pageFooterStickyNotice .info, .pageFooterStickyNotice .success, .pageFooterStickyNotice .warning {
border-top-width: 0px;
}
Display More
So sieht das ganze aus, vorher:
...und nach der Anpassung:
Der Lösungsvorschlag basiert auf folgenden Thema: Hinweise ohne Symbole?