]> git.ktnx.net Git - lsl.git/blobdiff - public/css/style.css
pop a "Check all" / "Clear all" button when multiple items are checked/cleared in...
[lsl.git] / public / css / style.css
index 4b1a73c0d751d6a76cf0b37f886d7ba651714e52..7ed1eef1778a010a3dae1aa876011e8a56397e61 100644 (file)
@@ -63,6 +63,7 @@ background-color: white;
 border: 3px solid #aaa;
 border-top: none;
 padding: 1em;
+box-sizing: border-box;
 }
 
 #sidebar {
@@ -280,3 +281,19 @@ ul#list-items {
     width: 100%;
     box-sizing: border-box;
 }
+#item-multi-action {
+    display: block;
+    position: fixed;
+    top: -3em;
+    opacity: 0;
+    transition: .5s cubic-bezier(0.0, 0.0, 0.0, 1.0);
+    background: white;
+    box-shadow: 0 0 1em 1ex white;
+}
+#item-multi-action.in-view {
+    top: 4em;
+    opacity: 1;
+}
+#item-multi-action button { display: none; }
+#item-multi-action.checking button#btn-check-all { display: block; }
+#item-multi-action.clearing button#btn-clear-all { display: block; }