1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-09-22 04:15:54 -04:00

Feature: Format warning as such

This commit is contained in:
Philipp Schafft 2020-10-01 15:42:22 +00:00
parent c6bb70d99b
commit c3daf23180
2 changed files with 11 additions and 1 deletions

View File

@ -43,7 +43,7 @@
</form>
</xsl:when>
<xsl:otherwise>
<p>
<p class="warning">
<strong>No mounts!</strong>
There are no other mountpoints you could move the listeners to.
</p>

View File

@ -275,3 +275,13 @@ h1, h2, h3, h5 {
.error a:hover {
text-decoration: none;
}
.warning {
border: 1px solid #5C2949;
background-color: #FFFF99;
padding: .5em 2em;
}
.warning strong {
display: block;
}