diff --git a/app/frontend/static/assets/css/partial/crafty-filemanager.css b/app/frontend/static/assets/css/partial/crafty-filemanager.css
index cb29f73d..387e188f 100644
--- a/app/frontend/static/assets/css/partial/crafty-filemanager.css
+++ b/app/frontend/static/assets/css/partial/crafty-filemanager.css
@@ -2,36 +2,39 @@
.overlay {
display: none;
flex-direction: column;
- background-color: #9f9daf;
+ background-color: var(--base-bg);
border-radius: 10px;
box-shadow: 0 10px 20px rgb(64 64 64 / 5%);
padding: 10px 0;
z-index: 10000;
overflow: scroll;
+
+ /* IE and Edge */
+ -ms-overflow-style: none;
+ /* Firefox */
+ scrollbar-width: none;
}
.overlay::-webkit-scrollbar {
display: none;
}
-/* Hide scrollbar for IE, Edge and Firefox */
-.overlay {
- -ms-overflow-style: none;
- /* IE and Edge */
- scrollbar-width: none;
- /* Firefox */
-}
-
/* Position the content inside the overlay */
.overlay-content {
display: flex;
flex-direction: column;
- background-color: #9f9daf;
+ background-color: var(--base-bg);
border-radius: 10px;
box-shadow: 0 10px 20px rgb(64 64 64 / 5%);
padding: 10px 0;
}
+.overlay-title {
+ color: var(--info);
+ text-align: center;
+ padding: 3px;
+}
+
/* The navigation links inside the overlay */
.overlay a {
font: inherit;
@@ -42,7 +45,7 @@
align-items: center;
position: relative;
text-decoration: unset;
- color: #000;
+ color: var(--black);
font-weight: 500;
transition: 0.5s linear;
-webkit-transition: 0.5s linear;
@@ -54,14 +57,14 @@
/* When you mouse over the navigation links, change their color */
.overlay a:hover,
.overlay a:focus {
- background: grey;
- color: #4b00ff;
+ background: var(--ram-bg);
+ color: var(--info);
}
/* Position the close button (top right corner) */
.overlay .closebtn .closebtn:hover {
- background-color: red;
- color: red;
+ background-color: var(--red);
+ color: var(--red);
z-index: 10000;
}
@@ -124,7 +127,7 @@
html,
body,
-body > .container-scroller {
+body>.container-scroller {
overflow: initial;
}
@@ -132,3 +135,9 @@ body > .container-scroller {
top: 63px;
position: sticky;
}
+
+span.separator {
+ width: 90%;
+ border-bottom: 2px solid var(--black);
+ margin: 0 auto;
+}
\ No newline at end of file
diff --git a/app/frontend/static/assets/css/themes/default.css b/app/frontend/static/assets/css/themes/default.css
index 682ed889..2dc073c1 100644
--- a/app/frontend/static/assets/css/themes/default.css
+++ b/app/frontend/static/assets/css/themes/default.css
@@ -11,6 +11,7 @@ root,
--deep-bg: #1C1E2F;
--dropdown-bg: #222437;
/*END THEME VARIATION*/
+ --black: black;
--blue: #00aeef;
--indigo: #6610f2;
--purple: #ab8ce4;
diff --git a/app/frontend/templates/panel/server_files.html b/app/frontend/templates/panel/server_files.html
index 21ed59fc..d3792734 100644
--- a/app/frontend/templates/panel/server_files.html
+++ b/app/frontend/templates/panel/server_files.html
@@ -11,9 +11,7 @@ end %} {% block content %}
{{ translate('serverDetails', 'serverDetails', data['lang']) }} - {{
data['server_stats']['server_id']['server_name'] }}
- UUID: {{ data['server_stats']['server_id']['server_id'] }}
+ UUID: {{ data['server_stats']['server_id']['server_id'] }}
@@ -38,113 +36,31 @@ end %} {% block content %}
-