diff options
author | Raghu Nayyar <me@iraghu.com> | 2015-09-25 14:02:39 +0530 |
---|---|---|
committer | Raghu Nayyar <me@iraghu.com> | 2015-09-25 14:02:39 +0530 |
commit | bf73665a35470432ae939a70eb91ecf9f8933240 (patch) | |
tree | 1c0b7d73ac298682e312179b7314e60bf5268218 /apps/files/js | |
parent | e7bc2a10e3ffd16cda8d15ff06dcbc870e34a627 (diff) | |
parent | 604f5783fd6f50c0bf5319927a02071143bfa3a3 (diff) | |
download | nextcloud-server-bf73665a35470432ae939a70eb91ecf9f8933240.tar.gz nextcloud-server-bf73665a35470432ae939a70eb91ecf9f8933240.zip |
Merge pull request #19329 from owncloud/checkbox-class
Add .checkbox class for new checkbox style
Diffstat (limited to 'apps/files/js')
-rw-r--r-- | apps/files/js/filelist.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 4b1b38d783c..ad3dce19778 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -925,7 +925,7 @@ if (this._allowSelection) { td.append( '<input id="select-' + this.id + '-' + fileData.id + - '" type="checkbox" class="selectCheckBox"/><label for="select-' + this.id + '-' + fileData.id + '">' + + '" type="checkbox" class="selectCheckBox checkbox"/><label for="select-' + this.id + '-' + fileData.id + '">' + '<div class="thumbnail" style="background-image:url(' + icon + '); background-size: 32px;"></div>' + '<span class="hidden-visually">' + t('files', 'Select') + '</span>' + '</label>' |