aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/js
diff options
context:
space:
mode:
authorRaghu Nayyar <me@iraghu.com>2015-09-25 14:02:39 +0530
committerRaghu Nayyar <me@iraghu.com>2015-09-25 14:02:39 +0530
commitbf73665a35470432ae939a70eb91ecf9f8933240 (patch)
tree1c0b7d73ac298682e312179b7314e60bf5268218 /apps/files/js
parente7bc2a10e3ffd16cda8d15ff06dcbc870e34a627 (diff)
parent604f5783fd6f50c0bf5319927a02071143bfa3a3 (diff)
downloadnextcloud-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.js2
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>'