diff options
author | Vincent Petry <vincent@nextcloud.com> | 2022-07-22 16:11:01 +0200 |
---|---|---|
committer | Vincent Petry <vincent@nextcloud.com> | 2022-07-26 10:19:19 +0200 |
commit | bb2557c38974bea38dcc48185723b33781412cbd (patch) | |
tree | c44ba38e9283120d290bb242f9ddf46231d8464d /apps/files_sharing/css/mobile.scss | |
parent | a9c23e1afbda3de62c3436b667bbb1053f426af5 (diff) | |
download | nextcloud-server-bb2557c38974bea38dcc48185723b33781412cbd.tar.gz nextcloud-server-bb2557c38974bea38dcc48185723b33781412cbd.zip |
Replace files app ids to classes
Replaced ids to classes for the following:
- #filestable -> .files-filestable
- #fileList -> .files-fileList
- #controls -> .files-controls
- #emptycontent -> .emptyfilelist.emptycontent
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to 'apps/files_sharing/css/mobile.scss')
-rw-r--r-- | apps/files_sharing/css/mobile.scss | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/files_sharing/css/mobile.scss b/apps/files_sharing/css/mobile.scss index 38a7a9cd711..d058ad2a30e 100644 --- a/apps/files_sharing/css/mobile.scss +++ b/apps/files_sharing/css/mobile.scss @@ -8,9 +8,9 @@ } /* hide size and date columns */ -table th#headerSize, +table th.column-size, table td.filesize, -table th#headerDate, +table th.column-mtime, table td.date { display: none; } @@ -32,11 +32,11 @@ table td.filename .nametext { } /* some padding for better clickability */ -#fileList a.action img { +.files-fileList a.action img { padding: 0 6px 0 12px; } /* hide text of the actions on mobile */ -#fileList a.action:not(.menuitem) span { +.files-fileList a.action:not(.menuitem) span { display: none; } @@ -56,7 +56,7 @@ table td.filename .nametext { padding: 0 20px; } -#emptycontent { +.emptycontent { margin-top: 10vh; } } |