added new indicator whether services/system has been configured (on new installations); show alternative configuration possibility via config-services.php script

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2018-12-10 20:34:43 +01:00
parent d381528c06
commit 4988600881
10 changed files with 103 additions and 21 deletions

View File

@@ -662,13 +662,13 @@ input[type="button"], input[type="submit"], input[type="reset"], input[type="fil
margin: 0 1px;
}
input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover
input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover, .btnlink:hover
{
color: #333;
background-color: #dcdcdc;
}
input[type="button"]:active, input[type="submit"]:active, input[type="reset"]:active
input[type="button"]:active, input[type="submit"]:active, input[type="reset"]:active, .btnlink:active
{
-webkit-box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.25);
-moz-box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.25);
@@ -676,17 +676,17 @@ input[type="button"]:active, input[type="submit"]:active, input[type="reset"]:ac
color: #fff !important;
}
input[type="submit"], input[class="yesbutton"] {
input[type="submit"], input[class="yesbutton"], .btnlink {
color: #fff;
background-color: #35aa47;
}
input[type="submit"]:hover, input[class="yesbutton"]:hover {
input[type="submit"]:hover, input[class="yesbutton"]:hover, .btnlink:hover {
color: #fff;
background-color: #1d943b;
}
input[class="submit"]:active, input[class="yesbutton"]:active {
input[class="submit"]:active, input[class="yesbutton"]:active, .btnlink:active {
background-color: #35aa47;
}
@@ -1725,3 +1725,14 @@ td.size-50 {
.label[class*="span"][class*="arrow"] {
min-height: 0
}
.liwarn {
background-color: #ff3333;
margin-top: -6px;
}
.liwarn a {
font-weight: 700;
padding: 5px 10px;
color: #ffe !important;
}