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