X-Git-Url: https://jfr.im/git/irc/unrealircd/unrealircd-webpanel.git/blobdiff_plain/399c9625730f4b355e10567f4b3174d6266f08aa..6ae326cb8d203015fa158b04e5b3b584f86c3654:/css/unrealircd-admin.css diff --git a/css/unrealircd-admin.css b/css/unrealircd-admin.css index db85985..04e2c4d 100644 --- a/css/unrealircd-admin.css +++ b/css/unrealircd-admin.css @@ -63,20 +63,12 @@ footer { } -/* Style the links inside the navigation bar */ -.topnav a { - float: left; - color: #f2f2f2; - text-align: center; - padding: 14px 16px; - text-decoration: none; - font-size: 17px; -} body { padding-top: 45px; background-image: url("../img/background.jpg"); + background-attachment: fixed; display: flex; flex-direction: column; } @@ -253,7 +245,7 @@ body { /* Show version and 4-icons "footer" at bottom-left, * if screen height is sufficient. */ -@media only screen and (min-height: 650px) { +@media only screen and (min-height: 650px) and (min-width: 768px) { footer { float: left; width: 160px; @@ -265,3 +257,17 @@ body { height: calc(100% - 60px - 50px); } } + +/* Virtual link - hover effect (eg on Server Bans) */ +.virtuallink { + text-decoration: none; +} +.virtuallink:hover { + text-decoration: underline; + cursor: pointer; +} + +/* TD that may wrap - eg for Reason / Topic */ +.tdwrap { + white-space: normal !important; +}