summaryrefslogtreecommitdiffstats
path: root/apps/files/css
diff options
context:
space:
mode:
authorBugsbane <user581@xymail.info>2016-07-11 04:54:04 -0400
committerMorris Jobke <hey@morrisjobke.de>2016-07-11 10:54:04 +0200
commit92f7722b4398ec37a3b1a51a10e0325b547885a7 (patch)
treef416f6d1ea380aaa2717a798b69dbc469a4927c8 /apps/files/css
parent3e941f6ba1a1971a790985f8d1a4ba012e0cbe80 (diff)
downloadnextcloud-server-92f7722b4398ec37a3b1a51a10e0325b547885a7.tar.gz
nextcloud-server-92f7722b4398ec37a3b1a51a10e0325b547885a7.zip
Add new "Recent files" icon to files app (#356)
* Added new "nav-icon-recent" CSS class Added the class "nav-icon-recent" to display the new "recent files" file list view to be added by @icewind1991 in PR https://github.com/nextcloud/server/pull/292 It's now placed after nav-icon-files which was where @jancborchardt was suggesting iirc. * Add new "Recent files" clock icon Add the new icon for "Recent files" file list view in the files app by @icewind1991, as discussed in PR https://github.com/nextcloud/server/pull/292 Icon is already compressed/cleaned by scour rather than svgo as svgo seems to corrupt it. * Alter colour of "Recent" icon from grey to black Change colour of the "recently used files" icon from grey to black, to match other icons in the files app. * Replace recent icon with black, optimized version Just updates the colour of the icon for "Recent files" from a grey version, to a black optimised version.
Diffstat (limited to 'apps/files/css')
-rw-r--r--apps/files/css/files.css3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css
index ebb44f3070c..1f8aa10bdb3 100644
--- a/apps/files/css/files.css
+++ b/apps/files/css/files.css
@@ -89,6 +89,9 @@
.nav-icon-files {
background-image: url('../img/folder.svg');
}
+.nav-icon-recent {
+ background-image: url('../img/recent.svg');
+}
.nav-icon-favorites {
background-image: url('../img/star.svg');
}