aboutsummaryrefslogtreecommitdiffstats
path: root/css
diff options
context:
space:
mode:
Diffstat (limited to 'css')
-rw-r--r--css/style.css26
1 files changed, 25 insertions, 1 deletions
diff --git a/css/style.css b/css/style.css
index f20b121..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,8 @@ input[type=submit]:hover {
}
.window {
+ overflow: hidden;
+ box-sizing: border-box;
margin: 0rem;
padding: 0;
box-shadow: 0 0.8rem 1.3rem rgba(0,0,0,0.2);
@@ -285,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;
}
@@ -318,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 {
@@ -338,6 +354,7 @@ input[type=submit]:hover {
}
.file {
+ box-sizing: border-box;
padding: 0.5rem;
cursor: pointer;
color: #333;
@@ -429,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);
+}