diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-11-18 18:53:45 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-12-15 12:10:54 +0100 |
commit | a5bb66f4a723bce5c5fbe919a48cd5133204ef62 (patch) | |
tree | b2e067bde8aaa1de6973adc7760fafb1e37e9084 /apps/files/css | |
parent | c6be491a89a4eebe15bcb20f6e0b01f23a093761 (diff) | |
download | nextcloud-server-a5bb66f4a723bce5c5fbe919a48cd5133204ef62.tar.gz nextcloud-server-a5bb66f4a723bce5c5fbe919a48cd5133204ef62.zip |
Added favorites feature to the files app
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/files.css | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index d8336847e00..03496f4ffb7 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -286,6 +286,9 @@ table td.filename .nametext { max-width: 800px; height: 100%; } +#fileList.has-favorites td.filename a.name { + left: 50px; +} table td.filename .nametext .innernametext { text-overflow: ellipsis; @@ -417,6 +420,18 @@ table td.filename .uploadtext { height: 50px; } +#fileList tr td.filename .favorite { + display: inline-block; + float: left; +} +#fileList tr td.filename .action-favorite { + display: block; + float: left; + width: 30px; + line-height: 100%; + text-align: center; +} + #uploadsize-message,#delete-confirm { display:none; } /* File actions */ @@ -442,7 +457,7 @@ table td.filename .uploadtext { padding: 17px 14px; } -#fileList .action.action-share-notification span, #fileList a { +#fileList .action.action-share-notification span, #fileList a.name { cursor: default !important; } |