aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/css
diff options
context:
space:
mode:
authorJohannes Zellner <johannes@cloudron.io>2017-02-05 08:44:55 -0800
committerJohannes Zellner <johannes@cloudron.io>2017-02-05 08:44:55 -0800
commit9716e5b65e0eb6ee663939b5f3c772aded52827b (patch)
tree2a6b6b973c68f62067e85b7458655c70e5c5e31d /frontend/css
parentfea6789c72b7ef5b69281d8866f4ae0475135d4a (diff)
downloadSurfer-9716e5b65e0eb6ee663939b5f3c772aded52827b.tar.gz
Surfer-9716e5b65e0eb6ee663939b5f3c772aded52827b.tar.zst
Surfer-9716e5b65e0eb6ee663939b5f3c772aded52827b.zip
Only show item action buttons on hover
Diffstat (limited to 'frontend/css')
-rw-r--r--frontend/css/style.css15
1 files changed, 14 insertions, 1 deletions
diff --git a/frontend/css/style.css b/frontend/css/style.css
index 05336ab..ff1dc84 100644
--- a/frontend/css/style.css
+++ b/frontend/css/style.css
@@ -63,4 +63,17 @@ footer {
63 63
64footer:hover { 64footer:hover {
65 opacity: 1; 65 opacity: 1;
66} \ No newline at end of file 66}
67
68th {
69 overflow: hidden;
70}
71
72.entry-toolbar {
73 opacity: 0;
74 transition: opacity .25s;
75}
76
77tr:hover .entry-toolbar {
78 opacity: 1;
79}