]> git.immae.eu Git - perso/Immae/Projets/Nodejs/Surfer.git/blobdiff - frontend/css/style.css
Make folder listing sortable
[perso/Immae/Projets/Nodejs/Surfer.git] / frontend / css / style.css
index 05336ab5d2e75e15f65ec95f2b88752dc2763850..98bf1b1693cafe4647d22c14dce064b01096181c 100644 (file)
@@ -39,10 +39,6 @@ pre {
     cursor: pointer;
 }
 
-th {
-    vertical-align: middle !important;
-}
-
 .main {
     margin-bottom: 40px;
 }
@@ -63,4 +59,26 @@ footer {
 
 footer:hover {
     opacity: 1;
-}
\ No newline at end of file
+}
+
+td {
+    vertical-align: middle !important;
+    overflow: hidden;
+}
+
+.entry-toolbar {
+    opacity: 0;
+    transition: opacity .25s;
+}
+
+tr:hover .entry-toolbar {
+    opacity: 1;
+}
+
+table.sortable th:not(.sorttable_sorted):not(.sorttable_sorted_reverse):not(.sorttable_nosort):after {
+    content: " \25B4\25BE"
+}
+
+th {
+    cursor: pointer;
+}