feat: GSP 1.0 baseline – module versions, FAQ refresh, XML editor validation, Obsidian theme
Agent-Logs-Url: https://github.com/GameServerPanel/GSP/sessions/40ca313f-3f17-4f62-8f05-ba72540a8d30 Co-authored-by: iaretechnician <2749183+iaretechnician@users.noreply.github.com>
This commit is contained in:
parent
1b3b79447f
commit
d564476d1c
178 changed files with 3327 additions and 44 deletions
67
themes/Obsidian/modules/extras/extras.css
Normal file
67
themes/Obsidian/modules/extras/extras.css
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
.install {
|
||||
color: #3498db !important;
|
||||
}
|
||||
.remove {
|
||||
color: #e74c3c !important;
|
||||
}
|
||||
b[style="color:red;"] {
|
||||
color: #bdc3c7 !important;
|
||||
}
|
||||
.search {
|
||||
color: #e67e22 !important;
|
||||
}
|
||||
b[style="color:orange;"] {
|
||||
color: #f1c40f !important;
|
||||
}
|
||||
b[style="color:green;"] {
|
||||
color: #1abc9c !important;
|
||||
}
|
||||
.uninstall {
|
||||
color: #673AB7 !important;
|
||||
}
|
||||
|
||||
h2 {
|
||||
text-align: left !important;
|
||||
font-weight: 300 !important;;
|
||||
font-size: 35px;
|
||||
background-color: transparent;
|
||||
margin-left: 0%;
|
||||
}
|
||||
.main-content {
|
||||
background-color: transparent !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
h4 {
|
||||
background: #0F1A26 !important;
|
||||
}
|
||||
|
||||
.bloc {
|
||||
background-color: #162535 !important;
|
||||
width: 46%;
|
||||
margin: 0% !important;
|
||||
}
|
||||
div.dragbox:nth-child(3) {
|
||||
float: left;
|
||||
}
|
||||
div.dragbox:nth-child(4) {
|
||||
float: right;
|
||||
}
|
||||
button[name="update"] {
|
||||
margin-top: 20px;
|
||||
}
|
||||
#updateButton {
|
||||
width: 100%;
|
||||
float: left;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/*Responsive*/
|
||||
@media(max-width:1100px) {
|
||||
.bloc {
|
||||
width: 96%;
|
||||
position: relative;
|
||||
float: left !important;
|
||||
margin-bottom: 20px !important;
|
||||
}
|
||||
}
|
||||
7
themes/Obsidian/modules/extras/extras.js
Normal file
7
themes/Obsidian/modules/extras/extras.js
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
jQuery(function($){
|
||||
var admin_table = ".main-content";
|
||||
$(admin_table).find('td').contents().unwrap();//Removing all Td tags
|
||||
$(admin_table).find('tr').contents().unwrap();//Removing all Td tags
|
||||
$(admin_table).find('tbody').contents().unwrap();//Removing all Td tags
|
||||
$(admin_table).find('table').contents().unwrap();//Removing all Td tags
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue