Skip to content

Commit 46285fe

Browse files
CSS Changes
More CSS Changes.... Server overview page now looks more..... fluid Boxes have their correct color top colors back, When admin side was changed to dark theme all by the yellow was changed to a single color, this is reverted. Node overview page uses blue over gray box for total servers. Lightened the text color on the side bar Removed delete button for allocations that are assigned. Changes Node configuration box to not hurt eyes
1 parent 086abb2 commit 46285fe

File tree

3 files changed

+24
-16
lines changed

3 files changed

+24
-16
lines changed

public/themes/pterodactyl/css/pterodactyl.css

Lines changed: 23 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ body {
522522
}
523523

524524
.skin-blue .sidebar-menu>li.header {
525-
color: #444a5d;
525+
color: #797979;
526526
background: #0e111582;
527527
}
528528

@@ -603,22 +603,10 @@ body {
603603
border-bottom: 1px solid #1f2933;
604604
}
605605

606-
.box.box-success {
607-
border-top-color: #1f2933;
608-
}
609-
610-
.box.box-primary {
611-
border-top-color: #1f2933;
612-
}
613-
614606
.box.box-default {
615607
border-top-color: #1f2933;
616608
}
617609

618-
.box.box-danger {
619-
border-top-color: #1f2933;
620-
}
621-
622610
.box-footer {
623611
border-top: 1px solid #4d5b69;
624612
background-color: #3f4d5a;
@@ -823,3 +811,25 @@ fieldset[disabled] .form-control {
823811
.well-sm {
824812
padding: 9px;
825813
}
814+
815+
.small-box h3, .small-box p {
816+
color: #c3c3c3;
817+
}
818+
819+
.small-box-footer {
820+
color: #288afb;
821+
}
822+
823+
.small-box .icon {
824+
color: #cad1d8;
825+
}
826+
827+
.bg-gray {
828+
background-color: #33404d !important;
829+
}
830+
831+
pre {
832+
color: #cad1d8;
833+
background-color: #515f6cbb;
834+
border-color: #1f2933;
835+
}

resources/views/admin/nodes/view/allocation.blade.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,6 @@
8383
<td class="col-sm-1 middle">
8484
@if(is_null($allocation->server_id))
8585
<button data-action="deallocate" data-id="{{ $allocation->id }}" class="btn btn-sm btn-danger"><i class="fa fa-trash-o"></i></button>
86-
@else
87-
<button class="btn btn-sm disabled"><i class="fa fa-trash-o"></i></button>
8886
@endif
8987
</td>
9088
</tr>

resources/views/admin/nodes/view/index.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
</div>
133133
</div>
134134
<div class="col-sm-12">
135-
<div class="info-box bg-gray">
135+
<div class="info-box bg-blue">
136136
<span class="info-box-icon"><i class="ion ion-social-buffer-outline"></i></span>
137137
<div class="info-box-content" style="padding: 23px 10px 0;">
138138
<span class="info-box-text">Total Servers</span>

0 commit comments

Comments
 (0)