Skip to content

Commit d59b58e

Browse files
committed
Updated server manager styling
1 parent eb2a109 commit d59b58e

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

node/content/css/servermanager.css

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
#AppList {margin-top: 50px; contain: content;}
2-
#ConsoleArea {margin-top: 100px; }
2+
#ConsoleArea {margin-top: 20px; }
3+
.app-details-container { margin-top: 20px; padding: 10px; border: #eee 2px solid;
4+
border-radius: 10px;
5+
background: -moz-linear-gradient(bottom, #465362 0%, #DEE5E5 50%); /* FF3.6-15 */
6+
background: -webkit-linear-gradient(bottom, #465362 0%,#DEE5E5 50%); /* Chrome10-25,Safari5.1-6 */
7+
background: linear-gradient(to top, #465362 0%,#DEE5E5 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
8+
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#DEE5E5', endColorstr='#465362',GradientType=0 ); /* IE6-9 */
9+
}
310
#ConsoleArea #Console {resize: vertical; background-color: black; color: #2e6d1b; min-height: 300px; }
411
/*#ExecuteButton, #RefreshButton { margin-top: 15px; }*/
512
#ConsoleArea label{margin-bottom: 15px; }
@@ -20,6 +27,8 @@ body {background-color: #DEE5E5 !important; color: #011936 !important; }
2027
.footer-bar { margin-top: 15px; padding-top: 15px; }
2128
.btn { margin-top: 15px; }
2229
.permission-button-container { padding-top: 10px; margin-top: 10px; padding-bottom: 10px;
30+
border: #eee 2px solid;
31+
border-bottom-width: 0px;
2332
background: -moz-linear-gradient(top, #465362 0%, #DEE5E5 50%); /* FF3.6-15 */
2433
background: -webkit-linear-gradient(top, #465362 0%,#DEE5E5 50%); /* Chrome10-25,Safari5.1-6 */
2534
background: linear-gradient(to bottom, #465362 0%,#DEE5E5 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
@@ -28,6 +37,10 @@ body {background-color: #DEE5E5 !important; color: #011936 !important; }
2837
.permission-button-container .col-xs-4 { border-right: #DEE5E5 solid 1px; padding: 0px; }
2938
.permission-button-container .col-xs-4:last-child { border-right: 0px; }
3039
.menu-body { padding-top: 15px; padding-bottom: 30px;
40+
border: #eee 2px solid;
41+
border-top-width: 0px;
42+
border-bottom-left-radius: 10px;
43+
border-bottom-right-radius: 10px;
3144
background: -moz-linear-gradient(bottom, #465362 0%, #DEE5E5 50%); /* FF3.6-15 */
3245
background: -webkit-linear-gradient(bottom, #465362 0%,#DEE5E5 50%); /* Chrome10-25,Safari5.1-6 */
3346
background: linear-gradient(to top, #465362 0%,#DEE5E5 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

node/views/servermanager.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
<div class="container container-fluid">
2020
<div class="row">
2121
<div class="col-xs-12 col-sm-4 col-lg-3">
22-
<% include partials/appdetails %>
2322
<% include partials/applist %>
2423
</div>
2524
<div class="col-xs-12 col-sm-8 col-lg-9">
25+
<% include partials/appdetails %>
2626
<div class="col-xs-12"><% include partials/appconsole %></div>
2727
<%if(admin){%>
2828
<div ng-switch="selectedConfigMenu" >

0 commit comments

Comments
 (0)