contao / website

Issue tracker for contao.org
2 stars 0 forks source link

Customize CSS #139

Closed netzarbeiter closed 3 years ago

netzarbeiter commented 3 years ago

Can you please replace the following Code:

.ce_text a[href^="http:"], 
.ce_text a[href^="https:"], 
.ce_text a[href^="ftp:"], 
.ce_text a[href^="irc:"], 
.ce_text a[href^="mumble:"] {
    background: url(../../files/icons/icon-external-link.svg) center left no-repeat;
    padding-left: 20px;
}

with:

.ce_markdown a[href^="http:"], 
.ce_markdown a[href^="https:"], 
.ce_markdown a[href^="ftp:"], 
.ce_markdown a[href^="irc:"], 
.ce_markdown a[href^="mumble:"],
.ce_text a[href^="http:"], 
.ce_text a[href^="https:"], 
.ce_text a[href^="ftp:"], 
.ce_text a[href^="irc:"], 
.ce_text a[href^="mumble:"] {
    background: url(../../files/icons/icon-external-link.svg) center left no-repeat;
    padding-left: 20px;
}
.ce_markdown a[href^="https://contao.org"] {
     background-image: none;
     padding-left: 0;
}