mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-21 15:10:22 +00:00
Moved to /app, standardize directory structure
This commit is contained in:
parent
c26cb40a80
commit
f681326240
4 changed files with 0 additions and 703 deletions
110
dist/css/custom.css
vendored
110
dist/css/custom.css
vendored
|
@ -1,110 +0,0 @@
|
|||
.page-header {
|
||||
margin: 20px 0 20px;
|
||||
}
|
||||
|
||||
.page-header .logo {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.panel-primary {
|
||||
border-color: #c61931;
|
||||
}
|
||||
|
||||
.panel-primary>.panel-heading {
|
||||
border-color: #d8224c;
|
||||
background-color: #d8224c;
|
||||
}
|
||||
|
||||
.panel-footer {
|
||||
background-color: #f2f1f0;
|
||||
}
|
||||
|
||||
.btn-primary.btn-outline {
|
||||
color: #c61931;
|
||||
border-color: #c61931;
|
||||
}
|
||||
|
||||
.btn-primary:hover {
|
||||
background-color: #c61931;
|
||||
border-color: #c61931;
|
||||
}
|
||||
|
||||
.info-item {
|
||||
width: 140px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.webconsole {
|
||||
width:100%;
|
||||
height:100%;
|
||||
border:1px solid;
|
||||
}
|
||||
|
||||
#console {
|
||||
height:500px;
|
||||
}
|
||||
|
||||
.systemtabcontent {
|
||||
height:100%;
|
||||
min-height:500px;
|
||||
}
|
||||
|
||||
.service-status-running,
|
||||
.service-status-stopped {
|
||||
background-color: #fff;
|
||||
color: #333;
|
||||
text-transform: uppercase;
|
||||
line-height: inherit;
|
||||
}
|
||||
.service-status-running:before,
|
||||
.service-status-stopped:before {
|
||||
display: inline-block;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
content: "\2022";
|
||||
font-size: 3.5em;
|
||||
color: green;
|
||||
line-height: 16px;
|
||||
vertical-align: bottom;
|
||||
margin-right: 2px;
|
||||
}
|
||||
.service-status-stopped:before {
|
||||
color: red;
|
||||
animation: flash 1s linear infinite;
|
||||
}
|
||||
@keyframes flash {
|
||||
50% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.logoutput {
|
||||
width:100%;
|
||||
height:300px;
|
||||
}
|
||||
|
||||
pre.unstyled {
|
||||
border-width: 0;
|
||||
background-color: transparent;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.dhcp-static-leases {
|
||||
margin-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.dhcp-static-lease-row {
|
||||
margin-top: 0.5em;
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
|
||||
.loading-spinner {
|
||||
background: url("../../img/loading-spinner.gif") no-repeat scroll center center transparent;
|
||||
min-height: 150px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.js-wifi-stations .panel-body {
|
||||
min-height: 256px;
|
||||
}
|
112
dist/css/hackernews.css
vendored
112
dist/css/hackernews.css
vendored
|
@ -1,112 +0,0 @@
|
|||
html * {
|
||||
font-family: Verdana, Geneva, sans-serif;
|
||||
font-size: 10pt;
|
||||
color: #828282;
|
||||
}
|
||||
|
||||
.nav>li>a {
|
||||
font-size: 12pt;
|
||||
}
|
||||
|
||||
a:focus, a:hover {
|
||||
color: #666;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.panel {
|
||||
border-radius: 1px;
|
||||
}
|
||||
|
||||
.panel-primary {
|
||||
border-color: #ff6600;
|
||||
}
|
||||
|
||||
.panel-primary>.panel-heading {
|
||||
border-color: #ff6600;
|
||||
background-color: #ff6600;
|
||||
color: #000;
|
||||
font-size: 14pt;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.panel-heading {
|
||||
border-top-left-radius: 1px;
|
||||
border-top-right-radius: 1px;
|
||||
}
|
||||
|
||||
.panel-primary>.panel-heading .fa {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.page-header {
|
||||
font-size: 26pt;
|
||||
margin: 10px 0 20px;
|
||||
}
|
||||
|
||||
#wrapper,#page-wrapper,.panel-body,.nav>li>a,.navbar-default {
|
||||
background-color: #f6f6ef;
|
||||
}
|
||||
|
||||
.panel-footer {
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
.btn-primary.btn-outline {
|
||||
color: #c61931;
|
||||
border-color: #c61931;
|
||||
}
|
||||
|
||||
.btn-primary:hover {
|
||||
background-color: #c61931;
|
||||
border-color: #c61931;
|
||||
}
|
||||
|
||||
.progress {
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
.info-item {
|
||||
width: 140px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.logoutput {
|
||||
width: 100%;
|
||||
height: 300px;
|
||||
}
|
||||
|
||||
.service-status-running,
|
||||
.service-status-stopped {
|
||||
background-color: #fff;
|
||||
color: #333;
|
||||
text-transform: uppercase;
|
||||
line-height: inherit;
|
||||
}
|
||||
.service-status-running:before,
|
||||
.service-status-stopped:before {
|
||||
display: inline-block;
|
||||
height: 18px;
|
||||
width: 16px;
|
||||
content: "\2022";
|
||||
font-size: 1.5em;
|
||||
color: green;
|
||||
line-height: 16px;
|
||||
vertical-align: bottom;
|
||||
margin-right: 2px;
|
||||
}
|
||||
.service-status-stopped:before {
|
||||
color: red;
|
||||
animation: flash 1s linear infinite;
|
||||
}
|
||||
@keyframes flash {
|
||||
50% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
301
dist/css/terminal.css
vendored
301
dist/css/terminal.css
vendored
|
@ -1,301 +0,0 @@
|
|||
html * {
|
||||
font-family: Courier New, Andale Mono, monospace;
|
||||
font-size: 10pt;
|
||||
color: #33ff00;
|
||||
}
|
||||
|
||||
#page-wrapper {
|
||||
padding: 0 20px;
|
||||
border-left: 1px solid #33ff00;
|
||||
}
|
||||
|
||||
.nav>li>a {
|
||||
font-size: 10pt;
|
||||
}
|
||||
|
||||
.nav>li>a:focus, .nav>li>a:hover {
|
||||
background-color: #000;
|
||||
}
|
||||
|
||||
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover, .input-group-addon {
|
||||
color: #33ff00;
|
||||
cursor: default;
|
||||
background-color: #000;
|
||||
border: 1px solid #33ff00;
|
||||
border-bottom-color: #33ff00;
|
||||
}
|
||||
|
||||
.nav-tabs>li>a,.nav-tabs>li>a:hover {
|
||||
border: 1px solid #33ff00;
|
||||
}
|
||||
|
||||
.nav-tabs {
|
||||
border-bottom: 1px solid #33ff00;
|
||||
}
|
||||
|
||||
.navbar-default {
|
||||
border-color: #33ff00;
|
||||
}
|
||||
|
||||
.navbar-default .navbar-brand, .navbar-default .navbar-brand:hover {
|
||||
color: #33ff00;
|
||||
}
|
||||
|
||||
.navbar-default .navbar-toggle {
|
||||
border-color: #33ff00;
|
||||
}
|
||||
|
||||
.navbar-default .navbar-toggle .icon-bar {
|
||||
background-color: #33ff00;
|
||||
}
|
||||
|
||||
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
|
||||
background-color: #000;
|
||||
}
|
||||
|
||||
.logo {
|
||||
visibility: collapse;
|
||||
width: 0px;
|
||||
}
|
||||
|
||||
a:focus, a:hover {
|
||||
color: #33ff00;
|
||||
}
|
||||
|
||||
.panel-primary {
|
||||
border-color: #33ff00;
|
||||
}
|
||||
|
||||
.panel-primary>.panel-heading, .panel-default>.panel-heading {
|
||||
border-color: #33ff00;
|
||||
background-color: #33ff00;
|
||||
color: #000;
|
||||
font-size: 12pt;
|
||||
}
|
||||
|
||||
.panel-primary>.panel-heading .fa {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.panel {
|
||||
margin-bottom: 20px;
|
||||
border: 1px solid #33ff00;
|
||||
border-radius: 0px;
|
||||
background-color: #000;
|
||||
}
|
||||
|
||||
hr {
|
||||
border-top: 1px solid #33ff00;
|
||||
}
|
||||
|
||||
.page-header {
|
||||
font-size: 24pt;
|
||||
margin: 10px 0 20px;
|
||||
border-bottom: 1px solid #33ff00;
|
||||
}
|
||||
|
||||
#wrapper,#page-wrapper,.panel-body,.nav>li>a,.navbar-default {
|
||||
background-color: #000;
|
||||
}
|
||||
|
||||
.panel-footer {
|
||||
background-color: #000;
|
||||
border-top: 1px solid #33ff00;
|
||||
}
|
||||
|
||||
.panel-primary>.panel-heading::before, .navbar-default::before {
|
||||
content: " ";
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
|
||||
z-index: 2;
|
||||
background-size: 100% 2px, 3px 100%;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.sidebar ul li a.active,.sidebar ul li a.hover {
|
||||
background-color: #000;
|
||||
}
|
||||
|
||||
.sidebar ul li {
|
||||
border-bottom: 1px solid #33ff00;
|
||||
}
|
||||
|
||||
.btn-default.active, .btn-default.active:focus, .btn-default.active:hover {
|
||||
color: #33ff00;
|
||||
background-color: #000;
|
||||
}
|
||||
|
||||
|
||||
.btn-primary.btn-outline,.btn-warning,.btn-default,.btn-danger {
|
||||
color: #33ff00;
|
||||
border-color: #33ff00;
|
||||
}
|
||||
|
||||
.btn-primary:hover,.btn-primary:focus,.btn-warning:hover,.btn-warning:focus,.btn-primary:active,.btn-default:hover,.btn-danger:hover,.btn-default:active,.btn-default:focus {
|
||||
color: #33ff00;
|
||||
background-color: #000;
|
||||
border-color: #33ff00;
|
||||
}
|
||||
|
||||
.btn-primary.btn-outline:hover,.btn-success, .btn-success.btn-outline:hover, .btn-info.btn-outline:hover, .btn-warning.btn-outline:hover, .btn-danger.btn-outline:hover {
|
||||
color: #33ff00;
|
||||
}
|
||||
|
||||
label.btn.btn-primary {
|
||||
color: #33ff00;
|
||||
}
|
||||
|
||||
label.btn.btn-primary.active, label.btn.btn-warning.active {
|
||||
background-color: #33ff00;
|
||||
border-color: #33ff00;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.label-warning {
|
||||
background-color: #33ff00;
|
||||
}
|
||||
|
||||
span.label.label-warning {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.btn.btn-primary {
|
||||
border-color: #33ff00;
|
||||
}
|
||||
|
||||
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
|
||||
background-color: #000;
|
||||
border-top: 1px solid #000;
|
||||
}
|
||||
|
||||
.table>thead>tr>th {
|
||||
vertical-align: bottom;
|
||||
border-bottom: 1px solid #33ff00;
|
||||
}
|
||||
|
||||
.btn-info, .btn-info:hover, .btn-info[disabled], .btn-danger.disabled, .btn-danger.disabled.active, .btn-danger.disabled.focus, .btn-danger.disabled:active, .btn-danger.disabled:focus, .btn-danger.disabled:hover, .btn-danger[disabled], .btn-danger[disabled].active, .btn-danger[disabled].focus, .btn-danger[disabled]:active, .btn-danger[disabled]:focus, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger.active, fieldset[disabled] .btn-danger.focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger:hover, .btn-info:hover {
|
||||
background-color: #000;
|
||||
border-color: #33ff00;
|
||||
color: #33ff00;
|
||||
}
|
||||
|
||||
.btn {
|
||||
background-color: #000;
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
.alert {
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
.alert-success,.alert-warning,.alert-info,.alert-dismissable,.alert-danger {
|
||||
color: #33ff00;
|
||||
background-color: #000;
|
||||
border-color: #33ff00;
|
||||
border: 1px dashed;
|
||||
}
|
||||
|
||||
.close {
|
||||
font-size: 18px;
|
||||
font-weight: normal;
|
||||
text-shadow: 0 0px 0 #000;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.form-control, .form-control:focus {
|
||||
color: #33ff00;
|
||||
background-color: #000;
|
||||
border: 1px solid #33ff00;
|
||||
border-radius: 0px;
|
||||
transition: unset;
|
||||
}
|
||||
|
||||
input[type="text"]{
|
||||
color: #33ff00 !important
|
||||
}
|
||||
|
||||
.form-control::-webkit-input-placeholder { color: #33ff00; }
|
||||
.form-control:-moz-placeholder { color: #33ff00; }
|
||||
.form-control::-moz-placeholder { color: #33ff00; }
|
||||
.form-control:-ms-input-placeholder { color: #33ff00; }
|
||||
.form-control::-ms-input-placeholder { color: #33ff00; }
|
||||
|
||||
.progress {
|
||||
background-color: #000;
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.progress-bar.progress-bar-info.progress-bar-striped.active {
|
||||
background-color: #33ff00;
|
||||
}
|
||||
|
||||
.info-item {
|
||||
width: 140px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.logoutput {
|
||||
width: 100%;
|
||||
height: 300px;
|
||||
background-color: #000;
|
||||
border-color: #33ff00;
|
||||
}
|
||||
|
||||
.webconsole {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-color: #33ff00;
|
||||
border-bottom: 1px solid;
|
||||
border-left: 1px solid;
|
||||
border-top: 0px;
|
||||
border-right: 1px solid;
|
||||
}
|
||||
|
||||
#console {
|
||||
height: 500px;
|
||||
}
|
||||
|
||||
.systemtabcontent {
|
||||
height: 100%;
|
||||
min-height: 500px;
|
||||
}
|
||||
|
||||
tspan, rect {
|
||||
fill: #33ff00;
|
||||
}
|
||||
|
||||
.morris-hover.morris-default-style {
|
||||
background: none;
|
||||
border-radius: 0px;
|
||||
border-color: #33ff00;
|
||||
border: dashed 1px #33ff00;
|
||||
}
|
||||
|
||||
.morris-hover-point {
|
||||
color: #33ff00 !important;
|
||||
}
|
||||
|
||||
path {
|
||||
stroke: #33ff00;
|
||||
}
|
||||
|
||||
span.service-status-running {
|
||||
color: #000;
|
||||
font-size: 10pt;
|
||||
text-transform: uppercase;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
pre {
|
||||
background-color: #000;
|
||||
border: #000;
|
||||
}
|
180
dist/css/timeline.css
vendored
180
dist/css/timeline.css
vendored
|
@ -1,180 +0,0 @@
|
|||
.timeline {
|
||||
position: relative;
|
||||
padding: 20px 0 20px;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.timeline:before {
|
||||
content: " ";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 50%;
|
||||
width: 3px;
|
||||
margin-left: -1.5px;
|
||||
background-color: #eeeeee;
|
||||
}
|
||||
|
||||
.timeline > li {
|
||||
position: relative;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.timeline > li:before,
|
||||
.timeline > li:after {
|
||||
content: " ";
|
||||
display: table;
|
||||
}
|
||||
|
||||
.timeline > li:after {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.timeline > li:before,
|
||||
.timeline > li:after {
|
||||
content: " ";
|
||||
display: table;
|
||||
}
|
||||
|
||||
.timeline > li:after {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.timeline > li > .timeline-panel {
|
||||
float: left;
|
||||
position: relative;
|
||||
width: 46%;
|
||||
padding: 20px;
|
||||
border: 1px solid #d4d4d4;
|
||||
border-radius: 2px;
|
||||
-webkit-box-shadow: 0 1px 6px rgba(0,0,0,0.175);
|
||||
box-shadow: 0 1px 6px rgba(0,0,0,0.175);
|
||||
}
|
||||
|
||||
.timeline > li > .timeline-panel:before {
|
||||
content: " ";
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
top: 26px;
|
||||
right: -15px;
|
||||
border-top: 15px solid transparent;
|
||||
border-right: 0 solid #ccc;
|
||||
border-bottom: 15px solid transparent;
|
||||
border-left: 15px solid #ccc;
|
||||
}
|
||||
|
||||
.timeline > li > .timeline-panel:after {
|
||||
content: " ";
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
top: 27px;
|
||||
right: -14px;
|
||||
border-top: 14px solid transparent;
|
||||
border-right: 0 solid #fff;
|
||||
border-bottom: 14px solid transparent;
|
||||
border-left: 14px solid #fff;
|
||||
}
|
||||
|
||||
.timeline > li > .timeline-badge {
|
||||
z-index: 100;
|
||||
position: absolute;
|
||||
top: 16px;
|
||||
left: 50%;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
margin-left: -25px;
|
||||
border-radius: 50% 50% 50% 50%;
|
||||
text-align: center;
|
||||
font-size: 1.4em;
|
||||
line-height: 50px;
|
||||
color: #fff;
|
||||
background-color: #999999;
|
||||
}
|
||||
|
||||
.timeline > li.timeline-inverted > .timeline-panel {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.timeline > li.timeline-inverted > .timeline-panel:before {
|
||||
right: auto;
|
||||
left: -15px;
|
||||
border-right-width: 15px;
|
||||
border-left-width: 0;
|
||||
}
|
||||
|
||||
.timeline > li.timeline-inverted > .timeline-panel:after {
|
||||
right: auto;
|
||||
left: -14px;
|
||||
border-right-width: 14px;
|
||||
border-left-width: 0;
|
||||
}
|
||||
|
||||
.timeline-badge.primary {
|
||||
background-color: #2e6da4 !important;
|
||||
}
|
||||
|
||||
.timeline-badge.success {
|
||||
background-color: #3f903f !important;
|
||||
}
|
||||
|
||||
.timeline-badge.warning {
|
||||
background-color: #f0ad4e !important;
|
||||
}
|
||||
|
||||
.timeline-badge.danger {
|
||||
background-color: #d9534f !important;
|
||||
}
|
||||
|
||||
.timeline-badge.info {
|
||||
background-color: #5bc0de !important;
|
||||
}
|
||||
|
||||
.timeline-title {
|
||||
margin-top: 0;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.timeline-body > p,
|
||||
.timeline-body > ul {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.timeline-body > p + p {
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
@media(max-width:767px) {
|
||||
ul.timeline:before {
|
||||
left: 40px;
|
||||
}
|
||||
|
||||
ul.timeline > li > .timeline-panel {
|
||||
width: calc(100% - 90px);
|
||||
width: -moz-calc(100% - 90px);
|
||||
width: -webkit-calc(100% - 90px);
|
||||
}
|
||||
|
||||
ul.timeline > li > .timeline-badge {
|
||||
top: 16px;
|
||||
left: 15px;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
ul.timeline > li > .timeline-panel {
|
||||
float: right;
|
||||
}
|
||||
|
||||
ul.timeline > li > .timeline-panel:before {
|
||||
right: auto;
|
||||
left: -15px;
|
||||
border-right-width: 15px;
|
||||
border-left-width: 0;
|
||||
}
|
||||
|
||||
ul.timeline > li > .timeline-panel:after {
|
||||
right: auto;
|
||||
left: -14px;
|
||||
border-right-width: 14px;
|
||||
border-left-width: 0;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue