aboutsummaryrefslogtreecommitdiffstats
path: root/css
diff options
context:
space:
mode:
authorAlex Vitkov <alexvitkov98@gmail.com>2021-02-14 09:57:53 +0200
committerAlex Vitkov <alexvitkov98@gmail.com>2021-02-14 09:57:53 +0200
commit379d7db3628a46889ae52d69296e2a8a610d32b4 (patch)
treee0bbec4c8dd55d555314a68aaee40d50d4a65674 /css
parente42f26d37a4afee40b49aa7c1357695656acfd6c (diff)
downloadfileup-379d7db3628a46889ae52d69296e2a8a610d32b4.tar.gz
Close button for share window
Diffstat (limited to 'css')
-rw-r--r--css/style.css14
1 files changed, 13 insertions, 1 deletions
diff --git a/css/style.css b/css/style.css
index abce858..619c4d8 100644
--- a/css/style.css
+++ b/css/style.css
@@ -403,7 +403,11 @@ input[type=submit]:hover {
align-self: center;
}
-.pathentry:hover {
+.pathentry:last-child {
+ cursor: inherit;
+}
+
+.pathentry:not(:last-child):hover {
text-decoration: underline;
}
@@ -453,3 +457,11 @@ input[type=submit]:hover {
background: white;
background: rgba(255,255,255, 0.9);
}
+
+.window > h2 .close_button {
+ border-left: 1px solid #ccc;
+}
+
+.close_button:hover {
+ background: white;
+}