From eb9a39eb68274184d8aa2784b2a4e57e9690b981 Mon Sep 17 00:00:00 2001 From: Pierre Bondoerffer Date: Tue, 28 Feb 2017 23:15:47 +0100 Subject: [PATCH] Add hover on elements in drive and make grid slightly prettier --- www/drive/file.css | 5 +++++ www/drive/file.less | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/www/drive/file.css b/www/drive/file.css index 0013e063c..466637c0d 100644 --- a/www/drive/file.css +++ b/www/drive/file.css @@ -220,6 +220,9 @@ span.fa-folder-open { #content li:not(.header) *:not(input) { /*pointer-events: none;*/ } +#content li:not(.header):hover:not(.selected) { + background-color: #eee; +} #content li:not(.header):hover .name { /*text-decoration: underline;*/ } @@ -233,6 +236,8 @@ span.fa-folder-open { text-align: center; vertical-align: top; overflow: hidden; + padding-top: 10px; + padding-bottom: 5px; } #content div.grid li .name { width: 100%; diff --git a/www/drive/file.less b/www/drive/file.less index d3f49709a..c1cc1d34e 100644 --- a/www/drive/file.less +++ b/www/drive/file.less @@ -261,6 +261,9 @@ span { /*pointer-events: none;*/ } &:hover { + &:not(.selected) { + background-color: #eee; + } .name { /*text-decoration: underline;*/ } @@ -276,6 +279,8 @@ span { text-align: center; vertical-align: top; overflow: hidden; + padding-top: 10px; + padding-bottom: 5px; .name { width: 100%;