init commit
This commit is contained in:
162
libs/phantombot/web/panel/css/main.css
Normal file
162
libs/phantombot/web/panel/css/main.css
Normal file
@@ -0,0 +1,162 @@
|
||||
/* CSS that always load even with a dark/light theme. */
|
||||
|
||||
.loader {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
z-index: 1;
|
||||
margin: -75px 0 0 -75px;
|
||||
border: 16px solid #f2f2f2;
|
||||
border-radius: 50%;
|
||||
border-top: 16px solid #6441A4;
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
-webkit-animation: spin 2s linear infinite;
|
||||
animation: spin 2s linear infinite;
|
||||
}
|
||||
|
||||
.load-ajax {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.load-ajax-text {
|
||||
margin-top: -40px;
|
||||
}
|
||||
|
||||
.spinner,
|
||||
.spinner:after {
|
||||
border-radius: 50%;
|
||||
width: 5em;
|
||||
height: 5em;
|
||||
}
|
||||
|
||||
.spinner {
|
||||
margin: 60px auto;
|
||||
font-size: 10px;
|
||||
position: relative;
|
||||
text-indent: -9999em;
|
||||
border-top: 1.1em solid rgba(100,65,165, 0.2);
|
||||
border-right: 1.1em solid rgba(100,65,165, 0.2);
|
||||
border-bottom: 1.1em solid rgba(100,65,165, 0.2);
|
||||
border-left: 1.1em solid #6441a5;
|
||||
-webkit-transform: translateZ(0);
|
||||
-ms-transform: translateZ(0);
|
||||
transform: translateZ(0);
|
||||
-webkit-animation: load8 1.1s infinite linear;
|
||||
animation: load8 1.1s infinite linear;
|
||||
}
|
||||
|
||||
@-webkit-keyframes load8 {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(360deg);
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes load8 {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(360deg);
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
.resize-drag {
|
||||
background-color: #29e;
|
||||
color: white;
|
||||
font-size: 20px;
|
||||
font-family: sans-serif;
|
||||
border-radius: 8px;
|
||||
padding: 20px;
|
||||
margin: 30px 20px;
|
||||
touch-action: none;
|
||||
|
||||
width: 120px;
|
||||
|
||||
/* This makes things *much* easier */
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.resize-container {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
height: 240px;
|
||||
}
|
||||
|
||||
#stream-game {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.easy-autocomplete,
|
||||
.easy-autocomplete input {
|
||||
width: 100% !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
.easy-autocomplete-container ul {
|
||||
max-height: 130px;
|
||||
border-bottom-color: #000;
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
@-webkit-keyframes spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
/* width */
|
||||
::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
}
|
||||
|
||||
/* Track */
|
||||
::-webkit-scrollbar-track {
|
||||
background: #f1f1f1;
|
||||
}
|
||||
|
||||
/* Handle */
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: #888;
|
||||
}
|
||||
|
||||
/* Handle on hover */
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
background: #555;
|
||||
}
|
||||
|
||||
select {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* Auto cut long text */
|
||||
.auto-cut {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
/* Remove bold on sidebar label */
|
||||
.control-sidebar-subheading > label:not([class]) {
|
||||
font-weight: unset;
|
||||
}
|
||||
1
libs/phantombot/web/panel/css/main.min.css
vendored
Normal file
1
libs/phantombot/web/panel/css/main.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
@-webkit-keyframes load8{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes load8{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(360deg)}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(360deg)}}.loader{position:absolute;left:50%;top:50%;z-index:1;margin:-75px 0 0 -75px;border:16px solid #f2f2f2;border-radius:50%;border-top:16px solid #6441a4;width:120px;height:120px;-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite}.load-ajax{text-align:center}.load-ajax-text{margin-top:-40px}.spinner,.spinner:after{border-radius:50%;width:5em;height:5em}.spinner{margin:60px auto;font-size:10px;position:relative;text-indent:-9999em;border-top:1.1em solid rgba(100,65,165,.2);border-right:1.1em solid rgba(100,65,165,.2);border-bottom:1.1em solid rgba(100,65,165,.2);border-left:1.1em solid #6441a5;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:load8 1.1s infinite linear;animation:load8 1.1s infinite linear}.resize-drag{background-color:#29e;color:#fff;font-size:20px;font-family:sans-serif;border-radius:8px;padding:20px;margin:30px 20px;touch-action:none;width:120px;box-sizing:border-box}.resize-container{display:inline-block;width:100%;height:240px}#stream-game{border-radius:0}.easy-autocomplete,.easy-autocomplete input{width:100%!important;box-shadow:none!important}.easy-autocomplete-container ul{max-height:130px;border-bottom-color:#000;overflow-y:scroll;overflow-x:hidden}::-webkit-scrollbar{width:10px}::-webkit-scrollbar-track{background:#f1f1f1}::-webkit-scrollbar-thumb{background:#888}::-webkit-scrollbar-thumb:hover{background:#555}select{cursor:pointer}.auto-cut{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.control-sidebar-subheading>label:not([class]){font-weight:unset}
|
||||
285
libs/phantombot/web/panel/css/style.css
Normal file
285
libs/phantombot/web/panel/css/style.css
Normal file
@@ -0,0 +1,285 @@
|
||||
textarea {
|
||||
resize: vertical;
|
||||
max-height: 300px;
|
||||
min-height: 50px;
|
||||
}
|
||||
|
||||
a:hover,
|
||||
a:active,
|
||||
a:focus {
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
label {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.pretty.p-icon .state .icon:before {
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
/* Fix large icon on dashboard number panels */
|
||||
.small-box .icon-override {
|
||||
font-size: 85px !important;
|
||||
}
|
||||
|
||||
.small-box:hover .icon-override {
|
||||
font-size: 90px !important;
|
||||
}
|
||||
|
||||
.content-wrapper {
|
||||
background-color: #f1f1f1;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Switch */
|
||||
|
||||
.switch {
|
||||
top: 7px;
|
||||
margin-right: 5px;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 30px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
.switch input {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.slider {
|
||||
border-radius: 24px;
|
||||
position: absolute;
|
||||
cursor: pointer;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-color: #ccc;
|
||||
-webkit-transition: .4s;
|
||||
transition: .4s;
|
||||
}
|
||||
|
||||
.slider:before {
|
||||
border-radius: 40%;
|
||||
position: absolute;
|
||||
content: "";
|
||||
height: 8px;
|
||||
width: 8px;
|
||||
left: 4px;
|
||||
bottom: 4px;
|
||||
background-color: white;
|
||||
-webkit-transition: .4s;
|
||||
transition: .4s;
|
||||
}
|
||||
|
||||
input:checked+.slider {
|
||||
background-color: #6441a5;
|
||||
}
|
||||
|
||||
input:focus+.slider {
|
||||
box-shadow: 0 0 1px #2196F3;
|
||||
}
|
||||
|
||||
input:checked+.slider:before {
|
||||
-webkit-transform: translateX(26px);
|
||||
-ms-transform: translateX(26px);
|
||||
transform: translateX(13px);
|
||||
}
|
||||
|
||||
|
||||
/* Event log */
|
||||
|
||||
.event-log {
|
||||
height: 150px;
|
||||
overflow: auto;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
ul.recent-events {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
ul.recent-events li {
|
||||
list-style: none;
|
||||
margin-bottom: 5px;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
ul.recent-events li p {
|
||||
font-size: 14px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
ul.recent-events li p span {
|
||||
margin-right: 3px;
|
||||
}
|
||||
|
||||
span.event-date {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
|
||||
/* Datatables */
|
||||
|
||||
.default-table {
|
||||
width: 46px;
|
||||
min-width: 46px;
|
||||
}
|
||||
|
||||
.default-table-large {
|
||||
width: 47px;
|
||||
min-width: 47px;
|
||||
}
|
||||
|
||||
.datatables_filter,
|
||||
.dataTables_filter {
|
||||
float: left;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.pagination>.active>a {
|
||||
background-color: #6441a5;
|
||||
border-color: #4b3671;
|
||||
}
|
||||
|
||||
.pagination>.active>a:focus,
|
||||
.pagination>.active>a:hover,
|
||||
.pagination>.active>span,
|
||||
.pagination>.active>span:focus,
|
||||
.pagination>.active>span:hover {
|
||||
background-color: #6441a5;
|
||||
border-color: #4b3671;
|
||||
}
|
||||
|
||||
.dataTable th,
|
||||
.dataTable td {
|
||||
max-width: 25px;
|
||||
overflow: hidden !important;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap !important;
|
||||
}
|
||||
|
||||
/* disabled class */
|
||||
.off {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Buttons */
|
||||
|
||||
.btn:hover,
|
||||
.btn-box-tool:hover {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
li.disabled {
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
a.disabled {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.panel,
|
||||
.panel-default,
|
||||
.panel-group {
|
||||
border-radius: 0 !important;
|
||||
}
|
||||
|
||||
/* Sweetalert */
|
||||
.swal-modal {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.swal-button--cancel,
|
||||
.swal-button--cancel:focus,
|
||||
.swal-button--cancel:active {
|
||||
background-color: #f4f4f4;
|
||||
color: #444;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.swal-button--cancel:hover {
|
||||
background-color: #e7e7e7;
|
||||
color: #444;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.swal-button--danger,
|
||||
.swal-button--danger:focus,
|
||||
.swal-button--danger:active {
|
||||
background-color: #dd4b39 !important;
|
||||
border: 1px solid #d73925 !important;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.swal-button--danger:hover {
|
||||
background-color: #d73925 !important;
|
||||
border: 1px solid #d73925 !important;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.swal-button--confirm,
|
||||
.swal-button--confirm:focus,
|
||||
.swal-button--confirm:active {
|
||||
background-color: #6441a5;
|
||||
text-decoration: none;
|
||||
border: 1px solid #2f098c;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.swal-button--confirm:hover {
|
||||
background-color: #6b49ab;
|
||||
text-decoration: none;
|
||||
border: 1px solid #2f098c;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.swal-button {
|
||||
height: 34px;
|
||||
padding: 6px 12px;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
text-align: center;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.swal-button:focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
/* Tooltips */
|
||||
.tooltip-inner {
|
||||
background-color: #2e2e2e;
|
||||
color: #eee;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.tooltip.top .tooltip-arrow {
|
||||
border-top-color: #2e2e2e;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.tooltip.right .tooltip-arrow {
|
||||
border-right-color: #2e2e2e;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.tooltip.bottom .tooltip-arrow {
|
||||
border-bottom-color: #2e2e2e;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.tooltip.left .tooltip-arrow {
|
||||
border-left-color: #2e2e2e;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
#toast-container>div {
|
||||
border-radius: 0;
|
||||
}
|
||||
351
libs/phantombot/web/panel/css/style.dark.css
Normal file
351
libs/phantombot/web/panel/css/style.dark.css
Normal file
@@ -0,0 +1,351 @@
|
||||
textarea {
|
||||
resize: vertical;
|
||||
max-height: 300px;
|
||||
min-height: 50px;
|
||||
}
|
||||
|
||||
a:hover,
|
||||
a:active,
|
||||
a:focus {
|
||||
color: #734eb9;
|
||||
}
|
||||
|
||||
label {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.easy-autocomplete-container ul {
|
||||
background-color: #1b1b1b !important;
|
||||
}
|
||||
|
||||
.easy-autocomplete-container ul li, .easy-autocomplete-container ul .eac-category {
|
||||
border-color: #1b1b1b !important;
|
||||
}
|
||||
|
||||
.easy-autocomplete-container ul li.selected {
|
||||
background: none repeat scroll 0 0 #383737;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* Fix large icon on dashboard number panels */
|
||||
.small-box .icon-override {
|
||||
font-size: 85px !important;
|
||||
}
|
||||
|
||||
.small-box:hover .icon-override {
|
||||
font-size: 90px !important;
|
||||
}
|
||||
|
||||
.content-wrapper {
|
||||
background-color: #1b1b1b;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Switch */
|
||||
|
||||
.switch {
|
||||
top: 7px;
|
||||
margin-right: 5px;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 30px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
.switch input {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.slider {
|
||||
border-radius: 24px;
|
||||
position: absolute;
|
||||
cursor: pointer;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-color: #424242;
|
||||
-webkit-transition: .4s;
|
||||
transition: .4s;
|
||||
}
|
||||
|
||||
.slider:before {
|
||||
border-radius: 40%;
|
||||
position: absolute;
|
||||
content: "";
|
||||
height: 8px;
|
||||
width: 8px;
|
||||
left: 4px;
|
||||
bottom: 4px;
|
||||
background-color: #1f1f1f;
|
||||
-webkit-transition: .4s;
|
||||
transition: .4s;
|
||||
}
|
||||
|
||||
input:checked+.slider {
|
||||
background-color: #6441a5;
|
||||
}
|
||||
|
||||
input:focus+.slider {
|
||||
box-shadow: 0 0 1px #2196F3;
|
||||
}
|
||||
|
||||
input:checked+.slider:before {
|
||||
-webkit-transform: translateX(26px);
|
||||
-ms-transform: translateX(26px);
|
||||
transform: translateX(13px);
|
||||
}
|
||||
|
||||
|
||||
/* Event log */
|
||||
|
||||
.event-log {
|
||||
height: 150px;
|
||||
overflow: auto;
|
||||
position: relative;
|
||||
background-color: #212121;
|
||||
}
|
||||
|
||||
ul.recent-events {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
ul.recent-events li {
|
||||
list-style: none;
|
||||
margin-bottom: 5px;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
ul.recent-events li p {
|
||||
font-size: 14px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
ul.recent-events li p span {
|
||||
margin-right: 3px;
|
||||
}
|
||||
|
||||
span.event-date {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
|
||||
/* Datatables */
|
||||
|
||||
.default-table {
|
||||
width: 46px;
|
||||
min-width: 46px;
|
||||
}
|
||||
|
||||
.default-table-large {
|
||||
width: 47px;
|
||||
min-width: 47px;
|
||||
}
|
||||
|
||||
.datatables_filter,
|
||||
.dataTables_filter {
|
||||
float: left;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.pagination>.active>a {
|
||||
background-color: #6441a5;
|
||||
border-color: #4b3671;
|
||||
}
|
||||
|
||||
.pagination>.active>a:focus,
|
||||
.pagination>.active>a:hover,
|
||||
.pagination>.active>span,
|
||||
.pagination>.active>span:focus,
|
||||
.pagination>.active>span:hover {
|
||||
background-color: #6441a5;
|
||||
border-color: #4b3671;
|
||||
}
|
||||
|
||||
.dataTable th,
|
||||
.dataTable td {
|
||||
max-width: 25px;
|
||||
overflow: hidden !important;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap !important;
|
||||
}
|
||||
|
||||
.table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
|
||||
background-color: #171717 !important;
|
||||
}
|
||||
|
||||
/* disabled class */
|
||||
.off {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Buttons */
|
||||
|
||||
.btn:hover,
|
||||
.btn-box-tool:hover {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
li.disabled {
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
a.disabled {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.panel,
|
||||
.panel-default,
|
||||
.panel-group {
|
||||
border-radius: 0 !important;
|
||||
background-color: #1b1b1b;
|
||||
border-color: #424242;
|
||||
}
|
||||
|
||||
.panel-default>.panel-heading {
|
||||
color: #ccc;
|
||||
background-color: #1b1b1b;
|
||||
border-color: #424242;
|
||||
}
|
||||
|
||||
.panel-default>.panel-heading+.panel-collapse>.panel-body {
|
||||
border-top-color: #424242;
|
||||
}
|
||||
|
||||
/* Tooltips */
|
||||
.tooltip-inner {
|
||||
background-color: #4a4848;
|
||||
color: #eee;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.tooltip.top .tooltip-arrow {
|
||||
border-top-color: #4a4848;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.tooltip.right .tooltip-arrow {
|
||||
border-right-color: #4a4848;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.tooltip.bottom .tooltip-arrow {
|
||||
border-bottom-color: #4a4848;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.tooltip.left .tooltip-arrow {
|
||||
border-left-color: #4a4848;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
#toast-container>div {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
/* Modals */
|
||||
.modal-header .close {
|
||||
color: #ccc !important;
|
||||
}
|
||||
|
||||
/* Sweetalert */
|
||||
.swal-modal {
|
||||
border-radius: 0;
|
||||
background-color: #1a1a1a;
|
||||
}
|
||||
|
||||
.swal-title,
|
||||
.swal-text {
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
.swal-icon--success:after {
|
||||
background-color: #1a1a1a;
|
||||
}
|
||||
|
||||
.swal-icon--success:before {
|
||||
background-color: #1a1a1a;
|
||||
left: -25px;
|
||||
}
|
||||
|
||||
.swal-icon--success__hide-corners {
|
||||
background-color: #1a1a1a;
|
||||
}
|
||||
|
||||
.swal-button--cancel,
|
||||
.swal-button--cancel:focus,
|
||||
.swal-button--cancel:active {
|
||||
background-color: #313131;
|
||||
color: #fff;
|
||||
border: 1px solid #272727;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.swal-button--cancel:hover {
|
||||
background-color: #272727;
|
||||
color: #fff;
|
||||
border: 1px solid #1f1f1f;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.swal-button--danger,
|
||||
.swal-button--danger:focus,
|
||||
.swal-button--danger:active {
|
||||
background-color: #dd4b39 !important;
|
||||
border: 1px solid #d73925 !important;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.swal-button--danger:hover {
|
||||
background-color: #d73925 !important;
|
||||
border: 1px solid #d73925 !important;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.swal-button--confirm,
|
||||
.swal-button--confirm:focus,
|
||||
.swal-button--confirm:active {
|
||||
background-color: #6441a5;
|
||||
text-decoration: none;
|
||||
border: 1px solid #2f098c;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.swal-button--confirm:hover {
|
||||
background-color: #6b49ab;
|
||||
text-decoration: none;
|
||||
border: 1px solid #2f098c;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.swal-button {
|
||||
height: 34px;
|
||||
padding: 6px 12px;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
text-align: center;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.swal-button:focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.input-group,
|
||||
.input-group-addon {
|
||||
border-color: #313131 !important;
|
||||
background-color: #2e2e2e !important;
|
||||
color: #ccc !important;
|
||||
}
|
||||
|
||||
.table-custom>thead>tr>th,
|
||||
.table-custom>tbody>tr>th,
|
||||
.table-custom>tfoot>tr>th,
|
||||
.table-custom>thead>tr>td,
|
||||
.table-custom>tbody>tr>td,
|
||||
.table-custom>tfoot>tr>td {
|
||||
border-top: 1px solid #424242 !important;
|
||||
}
|
||||
1
libs/phantombot/web/panel/css/style.dark.min.css
vendored
Normal file
1
libs/phantombot/web/panel/css/style.dark.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
textarea{resize:vertical;max-height:300px;min-height:50px}a:active,a:focus,a:hover{color:#734eb9}lable{font-weight:700}.easy-autocomplete-container ul{background-color:#1b1b1b!important}.easy-autocomplete-container ul .eac-category,.easy-autocomplete-container ul li{border-color:#1b1b1b!important}.easy-autocomplete-container ul li.selected{background:#383737;cursor:pointer}.small-box .icon-override{font-size:85px!important}.small-box:hover .icon-override{font-size:90px!important}.content-wrapper{background-color:#1b1b1b}.wrapper{overflow:hidden}.switch{top:7px;margin-right:5px;position:relative;display:inline-block;width:30px;height:16px}.off,.switch input{display:none}.slider{border-radius:24px;position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#424242;-webkit-transition:.4s;transition:.4s}.slider:before{border-radius:40%;position:absolute;content:"";height:8px;width:8px;left:4px;bottom:4px;background-color:#1f1f1f;-webkit-transition:.4s;transition:.4s}input:checked+.slider{background-color:#6441a5}input:focus+.slider{box-shadow:0 0 1px #2196F3}.swal-button,.swal-button:focus{box-shadow:none}input:checked+.slider:before{-webkit-transform:translateX(26px);-ms-transform:translateX(26px);transform:translateX(13px)}.event-log{height:150px;overflow:auto;position:relative;background-color:#212121}ul.recent-events{padding:0}ul.recent-events li{list-style:none;margin-bottom:5px;line-height:20px}ul.recent-events li p{font-size:14px;margin-bottom:0}ul.recent-events li p span{margin-right:3px}span.event-date{color:#999}.default-table{width:46px;min-width:46px}.default-table-large{width:47px;min-width:47px}.dataTables_filter,.datatables_filter{float:left;text-align:left}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{background-color:#6441a5;border-color:#4b3671}.dataTable td,.dataTable th{max-width:25px;overflow:hidden!important;text-overflow:ellipsis;white-space:nowrap!important}.table-hover tbody tr:hover td,.table-hover tbody tr:hover th{background-color:#171717!important}.btn-box-tool:hover, .btn:hover{background-color:transparent!important}li.disabled{cursor:not-allowed}a.disabled{pointer-events:none}.panel,.panel-default,.panel-group{border-radius:0!important;background-color:#1b1b1b;border-color:#424242}.panel-default>.panel-heading{color:#ccc;background-color:#1b1b1b;border-color:#424242}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#424242}.tooltip-inner{background-color:#4a4848;color:#eee;border-radius:0}.swal-icon--success:after,.swal-icon--success__hide-corners,.swal-modal{background-color:#1a1a1a}.tooltip.top .tooltip-arrow{border-top-color:#4a4848;border-radius:0}.tooltip.right .tooltip-arrow{border-right-color:#4a4848;border-radius:0}.tooltip.bottom .tooltip-arrow{border-bottom-color:#4a4848;border-radius:0}.tooltip.left .tooltip-arrow{border-left-color:#4a4848;border-radius:0}#toast-container>div{border-radius:0}.modal-header .close{color:#ccc!important}.swal-modal{border-radius:0}.swal-text,.swal-title{color:#ccc}.swal-icon--success:before{background-color:#1a1a1a;left:-25px}.swal-button--cancel,.swal-button--cancel:active,.swal-button--cancel:focus{background-color:#313131;color:#fff;border:1px solid #272727;border-radius:0}.swal-button--cancel:hover{background-color:#272727;color:#fff;border:1px solid #1f1f1f;border-radius:0}.swal-button--danger,.swal-button--danger:active,.swal-button--danger:focus{background-color:#dd4b39!important;border:1px solid #d73925!important;border-radius:0}.swal-button--danger:hover{background-color:#d73925!important;border:1px solid #d73925!important;border-radius:0}.swal-button--confirm,.swal-button--confirm:active,.swal-button--confirm:focus{background-color:#6441a5;text-decoration:none;border:1px solid #2f098c;border-radius:0}.swal-button--confirm:hover{background-color:#6b49ab;text-decoration:none;border:1px solid #2f098c;border-radius:0}.swal-button{height:34px;padding:6px 12px;font-size:14px;font-weight:400;text-align:center}.input-group,.input-group-addon{border-color:#313131!important;background-color:#2e2e2e!important;color:#ccc!important}.table-custom>tbody>tr>td,.table-custom>tbody>tr>th,.table-custom>tfoot>tr>td,.table-custom>tfoot>tr>th,.table-custom>thead>tr>td,.table-custom>thead>tr>th{border-top:1px solid #424242!important}
|
||||
1
libs/phantombot/web/panel/css/style.min.css
vendored
Normal file
1
libs/phantombot/web/panel/css/style.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
textarea{resize:vertical;max-height:300px;min-height:50px}a:active,a:focus,a:hover{color:#333}lable{font-weight:700}.pretty.p-icon .state .icon:before{color:#fff!important}.small-box .icon-override{font-size:85px!important}.small-box:hover .icon-override{font-size:90px!important}.content-wrapper{background-color:#f1f1f1}.wrapper{overflow:hidden}.switch{top:7px;margin-right:5px;position:relative;display:inline-block;width:30px;height:16px}.off,.switch input{display:none}.slider{border-radius:24px;position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;-webkit-transition:.4s;transition:.4s}.slider:before{border-radius:40%;position:absolute;content:"";height:8px;width:8px;left:4px;bottom:4px;background-color:#fff;-webkit-transition:.4s;transition:.4s}input:checked+.slider{background-color:#6441a5}input:focus+.slider{box-shadow:0 0 1px #2196F3}.swal-button,.swal-button:focus{box-shadow:none}input:checked+.slider:before{-webkit-transform:translateX(26px);-ms-transform:translateX(26px);transform:translateX(13px)}.event-log{height:150px;overflow:auto;position:relative}ul.recent-events{padding:0}ul.recent-events li{list-style:none;margin-bottom:5px;line-height:20px}ul.recent-events li p{font-size:14px;margin-bottom:0}ul.recent-events li p span{margin-right:3px}span.event-date{color:#999}.default-table{width:46px;min-width:46px}.default-table-large{width:47px;min-width:47px}.dataTables_filter,.datatables_filter{float:left;text-align:left}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{background-color:#6441a5;border-color:#4b3671}.dataTable td,.dataTable th{max-width:25px;overflow:hidden!important;text-overflow:ellipsis;white-space:nowrap!important}.btn-box-tool:hover, .btn:hover{background-color:transparent!important}li.disabled{cursor:not-allowed}a.disabled{pointer-events:none}.panel,.panel-default,.panel-group{border-radius:0!important}.swal-modal{border-radius:0}.swal-button--cancel,.swal-button--cancel:active,.swal-button--cancel:focus{background-color:#f4f4f4;color:#444;border:1px solid #ddd;border-radius:0}.swal-button--cancel:hover{background-color:#e7e7e7;color:#444;border:1px solid #ddd;border-radius:0}.swal-button--danger,.swal-button--danger:active,.swal-button--danger:focus{background-color:#dd4b39!important;border:1px solid #d73925!important;border-radius:0}.swal-button--danger:hover{background-color:#d73925!important;border:1px solid #d73925!important;border-radius:0}.swal-button--confirm,.swal-button--confirm:active,.swal-button--confirm:focus{background-color:#6441a5;text-decoration:none;border:1px solid #2f098c;border-radius:0}.swal-button--confirm:hover{background-color:#6b49ab;text-decoration:none;border:1px solid #2f098c;border-radius:0}.swal-button{height:34px;padding:6px 12px;font-size:14px;font-weight:400;text-align:center}.tooltip-inner{background-color:#2e2e2e;color:#eee;border-radius:0}.tooltip.top .tooltip-arrow{border-top-color:#2e2e2e;border-radius:0}.tooltip.right .tooltip-arrow{border-right-color:#2e2e2e;border-radius:0}.tooltip.bottom .tooltip-arrow{border-bottom-color:#2e2e2e;border-radius:0}.tooltip.left .tooltip-arrow{border-left-color:#2e2e2e;border-radius:0}#toast-container>div{border-radius:0}
|
||||
Reference in New Issue
Block a user