diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-03-18 11:50:08 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-03-18 11:50:08 +0100 |
commit | 285fc5ba96eba1c9046a3c05c39ed7708c13b897 (patch) | |
tree | 565bf3142e8d82f1bbba7696e815fe0d3fa03543 /apps/files/css/mobile.css | |
parent | 872006da035b92b17b0a0d5da781844080861531 (diff) | |
download | nextcloud-server-285fc5ba96eba1c9046a3c05c39ed7708c13b897.tar.gz nextcloud-server-285fc5ba96eba1c9046a3c05c39ed7708c13b897.zip |
mobile: change CSS order so rename and versions are hidden
Diffstat (limited to 'apps/files/css/mobile.css')
-rw-r--r-- | apps/files/css/mobile.css | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/apps/files/css/mobile.css b/apps/files/css/mobile.css index 5f1c08af58b..00c4630ea6c 100644 --- a/apps/files/css/mobile.css +++ b/apps/files/css/mobile.css @@ -18,12 +18,6 @@ table td.filename .nametext { max-width: 75% !important; } -/* do not show Rename or Versions on mobile */ -#fileList .action-rename, -#fileList .action-versions { - display: none !important; -} - /* always show actions on mobile, not only on hover */ #fileList a.action { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)" !important; @@ -31,6 +25,11 @@ table td.filename .nametext { opacity: .2 !important; display: inline !important; } +/* do not show Rename or Versions on mobile */ +#fileList .action.action-rename, +#fileList .action.action-versions { + display: none !important; +} /* some padding for better clickability */ #fileList a.action img { padding: 0 6px 0 12px; |