From 2bd3557dc89263e50924a41d29e8568fe8d34468 Mon Sep 17 00:00:00 2001 From: Alex Vitkov Date: Sat, 13 Feb 2021 20:12:28 +0200 Subject: qutebrowser compliant dragging --- css/style.css | 2 ++ 1 file changed, 2 insertions(+) (limited to 'css') diff --git a/css/style.css b/css/style.css index f20b121..37e694c 100644 --- a/css/style.css +++ b/css/style.css @@ -267,6 +267,7 @@ input[type=submit]:hover { } .window { + box-sizing: border-box; margin: 0rem; padding: 0; box-shadow: 0 0.8rem 1.3rem rgba(0,0,0,0.2); @@ -338,6 +339,7 @@ input[type=submit]:hover { } .file { + box-sizing: border-box; padding: 0.5rem; cursor: pointer; color: #333; -- cgit v1.2.3 From 8ab814c784aada18fd996b344cce67068d898b5b Mon Sep 17 00:00:00 2001 From: Alex Vitkov Date: Sat, 13 Feb 2021 22:11:03 +0200 Subject: share form --- css/style.css | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) (limited to 'css') 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); +} -- cgit v1.2.3