diff options
author | Alex Vitkov <alexvitkov98@gmail.com> | 2021-02-13 22:11:03 +0200 |
---|---|---|
committer | Alex Vitkov <alexvitkov98@gmail.com> | 2021-02-13 22:11:03 +0200 |
commit | 8ab814c784aada18fd996b344cce67068d898b5b (patch) | |
tree | b1ba55b5c34906dd8adf9a82cb9c42fef0534674 /css/style.css | |
parent | 2bd3557dc89263e50924a41d29e8568fe8d34468 (diff) | |
download | fileup-8ab814c784aada18fd996b344cce67068d898b5b.tar.gz |
share form
Diffstat (limited to 'css/style.css')
-rw-r--r-- | css/style.css | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/css/style.css b/css/style.css index 37e694c..407cc5f 100644 --- a/css/style.css +++ b/css/style.css @@ -10,6 +10,12 @@ body { overflow: hidden; } +.noselect { + user-select: none; + -webkit-user-select: none; + -ms-user-select: none; +} + #page { display: flex; flex: 1 0 0; @@ -267,6 +273,7 @@ input[type=submit]:hover { } .window { + overflow: hidden; box-sizing: border-box; margin: 0rem; padding: 0; @@ -286,8 +293,12 @@ input[type=submit]:hover { flex-direction: column; } +.window.focus { + border-color: black; +} + .foldercontents, .filecontents { - background: rgba(250, 250, 250, .8); + background: rgba(250, 250, 250, .9); flex: 1 0 0; } @@ -319,6 +330,10 @@ input[type=submit]:hover { border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; cursor: grab; + + user-select: none; + -webkit-user-select: none; + -ms-user-select: none; } .window h3 { @@ -431,3 +446,10 @@ input[type=submit]:hover { background-image: url("/img/backdrop.jpg"); background-size: cover; } + +.share_dialog_contents { + display: flex; + flex-direction: column; + background: white; + background: rgba(255,255,255, 0.9); +} |