Fixes, mods, updates
This commit is contained in:
parent
96b9de5df1
commit
64c3ccd48a
|
@ -1,14 +0,0 @@
|
||||||
body {
|
|
||||||
overflow: hidden; /* Used to prevent touch scroll down reloading page. Ref: https://stackoverflow.com/questions/29008194/disabling-androids-chrome-pull-down-to-refresh-feature */
|
|
||||||
-webkit-touch-callout: none; /* iOS Safari */
|
|
||||||
-webkit-user-select: none; /* Safari */
|
|
||||||
-khtml-user-select: none; /* Konqueror HTML */
|
|
||||||
-moz-user-select: none; /* Old versions of Firefox */
|
|
||||||
-ms-user-select: none; /* Internet Explorer/Edge */
|
|
||||||
user-select: none; /* Non-prefixed version, currently
|
|
||||||
supported by Chrome, Opera and Firefox */
|
|
||||||
}
|
|
||||||
|
|
||||||
ol, ul, li {
|
|
||||||
list-style: none;
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
body,
|
|
||||||
.container-fluid, .row, .col,
|
|
||||||
.error-styling, .dir-style, .movie-style, .file-style {
|
|
||||||
background-color: rgba(0,0,0,0.0);
|
|
||||||
}
|
|
|
@ -1,3 +1,27 @@
|
||||||
|
/* Elms */
|
||||||
|
ul, li {
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
touch-action: manipulation;
|
||||||
|
overflow: hidden; /* Used to prevent touch scroll down reloading page. Ref: https://stackoverflow.com/questions/29008194/disabling-androids-chrome-pull-down-to-refresh-feature */
|
||||||
|
-webkit-touch-callout: none; /* iOS Safari */
|
||||||
|
-webkit-user-select: none; /* Safari */
|
||||||
|
-khtml-user-select: none; /* Konqueror HTML */
|
||||||
|
-moz-user-select: none; /* Old versions of Firefox */
|
||||||
|
-ms-user-select: none; /* Internet Explorer/Edge */
|
||||||
|
user-select: none; /* Non-prefixed version, currently
|
||||||
|
supported by Chrome, Opera and Firefox */
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
width: 100% !important;
|
||||||
|
margin: 0 auto !important;
|
||||||
|
background-color: #00000000 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* IDs */
|
/* IDs */
|
||||||
#bg {
|
#bg {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
|
@ -19,118 +43,50 @@
|
||||||
z-index: -999;
|
z-index: -999;
|
||||||
}
|
}
|
||||||
|
|
||||||
#file-grid {
|
#canvas {
|
||||||
display: grid;
|
position: relative;
|
||||||
grid-template-columns: repeat(auto-fit, minmax(18em, 1fr));
|
width: 98%;
|
||||||
grid-column-gap: 1em;
|
min-height: 1000px;
|
||||||
grid-row-gap: 1em;
|
border: 2px solid #c3c3c3;
|
||||||
margin: 5em auto;
|
|
||||||
width: 85%;
|
|
||||||
padding: 2em;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#rightClickBtn {
|
||||||
|
border-style: dashed;
|
||||||
/* CLASSES */
|
border-width: 2px;
|
||||||
.scroller {
|
|
||||||
scrollbar-color: #00000084 #ffffff64;
|
|
||||||
scrollbar-width: thin;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dir-style, .video-style, .file-style {
|
|
||||||
display: block;
|
|
||||||
width: 100%;
|
|
||||||
height: auto;
|
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
padding-bottom: 0.5em;
|
font-size: 280%;
|
||||||
color: #ffffff;
|
|
||||||
text-align: center;
|
|
||||||
font-size: 1.2em;
|
|
||||||
background-color: rgba(0,0,0,0.64);
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-size: 42px 42px;
|
|
||||||
touch-action: manipulation;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.dir-style, .file-style {
|
#rightClickBtn:hover {
|
||||||
background-position: 32px center;
|
background-color: rgba(0, 232, 255, 0.5);
|
||||||
}
|
|
||||||
|
|
||||||
.image-style,
|
|
||||||
.video-style {
|
|
||||||
min-height: 6.5em;
|
|
||||||
width: auto;
|
|
||||||
overflow: hidden;
|
|
||||||
background-size: 100% 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card-popout-btn {
|
|
||||||
float: right;
|
|
||||||
z-index: 2;
|
|
||||||
width: 2em;
|
|
||||||
height: 2em;
|
|
||||||
text-align: center;
|
|
||||||
background-color: rgba(0,0,0, 0.85);
|
|
||||||
color: rgb(255,255,255);
|
|
||||||
border-style: solid;
|
|
||||||
border-color: rgb(255,255,255);
|
|
||||||
}
|
|
||||||
|
|
||||||
.close-btn:hover,
|
|
||||||
.card-popout-btn:hover,
|
|
||||||
.popout-btn:hover {
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.close-btn:hover,
|
#scrollToggle,
|
||||||
.card-popout-btn:hover,
|
#mouseHoldToggle,
|
||||||
.popout-btn:hover {
|
#sendKeysBtn {
|
||||||
background-color: rgba(255,255,255, 0.85);
|
display: inline-block;
|
||||||
color: #000000;
|
font-size: 280%;
|
||||||
border-color: #000000;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@media only screen and (min-width : 800px) {
|
||||||
.dir-style:hover, .image-style:hover, .video-style:hover, .file-style:hover {
|
#sendKeysField {
|
||||||
background-color: rgba(0, 141, 166, 0.56);
|
font-size: 300% !important;
|
||||||
cursor: pointer;
|
}
|
||||||
box-shadow: 0px 0px 15px rgb(114,184,199);
|
|
||||||
border-radius: 0.5em;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.dir-style:focus, .image-style:focus, .video-style:focus, .file-style:focus {
|
@media only screen and (min-width : 800px) {
|
||||||
background-color: rgba(0, 139, 35, 0.76);
|
body {
|
||||||
cursor: pointer;
|
width: 800px;
|
||||||
box-shadow: 0px 0px 25px rgb(114, 199, 120);
|
margin: 0 auto;
|
||||||
border-radius: 0.5em;
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.dir-title, .file-title, .video-title {
|
/* Classes */
|
||||||
white-space: nowrap;
|
/* Other message text colors */
|
||||||
text-overflow: ellipsis;
|
.errorTxt { color: rgb(170, 18, 18); }
|
||||||
text-align: center;
|
.warningTxt { color: rgb(255, 168, 0); }
|
||||||
overflow: hidden;
|
.successTxt { color: rgb(136, 204, 39); }
|
||||||
border-style: none;
|
|
||||||
font-size: 75%;
|
|
||||||
user-select: none;
|
|
||||||
-moz-user-select: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dir-title, .file-title {
|
|
||||||
width: auto;
|
|
||||||
background-color: #00000000;
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.video-title {
|
|
||||||
width: 100%;
|
|
||||||
margin-top: 5.5em;
|
|
||||||
background-color: rgba(0, 0, 0, 0.64);
|
|
||||||
color: rgb(255, 255, 255);
|
|
||||||
text-align: center;
|
|
||||||
border-top: 1px solid rgb(255, 255, 255);
|
|
||||||
border-bottom: 1px solid rgb(255, 255, 255);
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
.modal-content {
|
|
||||||
background-color: #32383e74;
|
|
||||||
border-color: #f8940674;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sticky-top,
|
|
||||||
.card {
|
|
||||||
background-color: rgba(50, 56, 62, 0.84);
|
|
||||||
}
|
|
||||||
|
|
||||||
.label-as-badge {
|
|
||||||
border-radius: 1em;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
Loading…
Reference in New Issue