mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
Added min-height to .js-wifi-stations, fixed indents
This commit is contained in:
parent
5858971762
commit
82d5b45cdd
88
dist/css/custom.css
vendored
88
dist/css/custom.css
vendored
@ -1,76 +1,76 @@
|
|||||||
.page-header {
|
.page-header {
|
||||||
margin: 20px 0 20px;
|
margin: 20px 0 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.page-header .logo {
|
.page-header .logo {
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-primary {
|
.panel-primary {
|
||||||
border-color: #c61931;
|
border-color: #c61931;
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-primary>.panel-heading {
|
.panel-primary>.panel-heading {
|
||||||
border-color: #d8224c;
|
border-color: #d8224c;
|
||||||
background-color: #d8224c;
|
background-color: #d8224c;
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel-footer {
|
.panel-footer {
|
||||||
background-color: #f2f1f0;
|
background-color: #f2f1f0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-primary.btn-outline {
|
.btn-primary.btn-outline {
|
||||||
color: #c61931;
|
color: #c61931;
|
||||||
border-color: #c61931;
|
border-color: #c61931;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-primary:hover {
|
.btn-primary:hover {
|
||||||
background-color: #c61931;
|
background-color: #c61931;
|
||||||
border-color: #c61931;
|
border-color: #c61931;
|
||||||
}
|
}
|
||||||
|
|
||||||
.info-item {
|
.info-item {
|
||||||
width: 140px;
|
width: 140px;
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.webconsole {
|
.webconsole {
|
||||||
width:100%;
|
width:100%;
|
||||||
height:100%;
|
height:100%;
|
||||||
border:1px solid;
|
border:1px solid;
|
||||||
}
|
}
|
||||||
|
|
||||||
#console {
|
#console {
|
||||||
height:500px;
|
height:500px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.systemtabcontent {
|
.systemtabcontent {
|
||||||
height:100%;
|
height:100%;
|
||||||
min-height:500px;
|
min-height:500px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.service-status-running,
|
.service-status-running,
|
||||||
.service-status-stopped {
|
.service-status-stopped {
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
color: #333;
|
color: #333;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
line-height: inherit;
|
line-height: inherit;
|
||||||
}
|
}
|
||||||
.service-status-running:before,
|
.service-status-running:before,
|
||||||
.service-status-stopped:before {
|
.service-status-stopped:before {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
width: 16px;
|
width: 16px;
|
||||||
content: "\2022";
|
content: "\2022";
|
||||||
font-size: 3.5em;
|
font-size: 3.5em;
|
||||||
color: green;
|
color: green;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
margin-right: 2px;
|
margin-right: 2px;
|
||||||
}
|
}
|
||||||
.service-status-stopped:before {
|
.service-status-stopped:before {
|
||||||
color: red;
|
color: red;
|
||||||
animation: flash 1s linear infinite;
|
animation: flash 1s linear infinite;
|
||||||
}
|
}
|
||||||
@keyframes flash {
|
@keyframes flash {
|
||||||
50% {
|
50% {
|
||||||
@ -79,24 +79,24 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.logoutput {
|
.logoutput {
|
||||||
width:100%;
|
width:100%;
|
||||||
height:300px;
|
height:300px;
|
||||||
}
|
}
|
||||||
|
|
||||||
pre.unstyled {
|
pre.unstyled {
|
||||||
border-width: 0;
|
border-width: 0;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dhcp-static-leases {
|
.dhcp-static-leases {
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dhcp-static-lease-row {
|
.dhcp-static-lease-row {
|
||||||
margin-top: 0.5em;
|
margin-top: 0.5em;
|
||||||
margin-bottom: 0.5em;
|
margin-bottom: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.loading-spinner {
|
.loading-spinner {
|
||||||
@ -104,3 +104,7 @@ pre.unstyled {
|
|||||||
min-height: 150px;
|
min-height: 150px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.js-wifi-stations .panel-body {
|
||||||
|
min-height: 256px;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user