Added option to switch off auto refresh

This commit is contained in:
trashbo4t
2018-05-20 08:27:22 -04:00
parent 4d9d24b8b1
commit 98c00b5edb
17 changed files with 1413 additions and 658 deletions

View File

@@ -454,18 +454,17 @@ td {
color: black;
}
.table>thead>tr>th {
vertical-align: bottom;
vertical-align: middle;
border-bottom: 2px solid #0066ff;
}
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
padding: 8px;
line-height: 1.42857143;
vertical-align: top;
vertical-align: middle;
border-top: 1px solid #0066ff;
}
.modal-content {
position: relative;
background-color: black;
-webkit-background-clip: padding-box;
background-clip: padding-box;
@@ -473,6 +472,51 @@ td {
border: 1px solid rgba(0,0,0,.2);
border-radius: 6px;
outline: 0;
-webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
box-shadow: 0 3px 9px rgba(0,0,0,.5);
}
.switch {
position: relative;
display: inline-block;
width: 46px;
height: 20px;
}
.switch input {display:none;}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 12px;
width: 12px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
input:checked + .slider {
background-color: #0066ff;
}
input:focus + .slider {
box-shadow: 0 0 1px #0066ff;
}
input:checked + .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}