init commit
This commit is contained in:
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;
|
||||
}
|
||||
Reference in New Issue
Block a user