diff options
author | Hendrik Leppelsack <hendrik@leppelsack.de> | 2015-09-24 14:12:54 +0200 |
---|---|---|
committer | Hendrik Leppelsack <hendrik@leppelsack.de> | 2015-09-25 00:51:39 +0200 |
commit | 28d3c1cc0b03d02dd3be5516c1c59ac6842fc904 (patch) | |
tree | 840e7f59cb46c84062187e69254b73b91f352fe5 /apps/files/templates | |
parent | ec005fc5d0185d81a17646c5b131ed918ffd515c (diff) | |
download | nextcloud-server-28d3c1cc0b03d02dd3be5516c1c59ac6842fc904.tar.gz nextcloud-server-28d3c1cc0b03d02dd3be5516c1c59ac6842fc904.zip |
fix filelist checkboxes
Diffstat (limited to 'apps/files/templates')
-rw-r--r-- | apps/files/templates/fileexists.html | 4 | ||||
-rw-r--r-- | apps/files/templates/list.php | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/files/templates/fileexists.html b/apps/files/templates/fileexists.html index c783f9a05c7..459b3d22c18 100644 --- a/apps/files/templates/fileexists.html +++ b/apps/files/templates/fileexists.html @@ -10,7 +10,7 @@ <div class="template"> <div class="filename"></div> <div class="replacement"> - <input type="checkbox" class="u-left"/> + <input type="checkbox" class="checkbox u-left"/> <label> <span class="svg icon"></span> <div class="mtime"></div> @@ -18,7 +18,7 @@ </label> </div> <div class="original"> - <input type="checkbox" class="u-left" /> + <input type="checkbox" class="checkbox u-left" /> <label> <span class="svg icon"></span> <div class="mtime"></div> diff --git a/apps/files/templates/list.php b/apps/files/templates/list.php index 15af1970dc3..bbbce8473de 100644 --- a/apps/files/templates/list.php +++ b/apps/files/templates/list.php @@ -56,7 +56,7 @@ <tr> <th id='headerName' class="hidden column-name"> <div id="headerName-container"> - <input type="checkbox" id="select_all_files" class="select-all"/> + <input type="checkbox" id="select_all_files" class="select-all checkbox"/> <label for="select_all_files"> <span class="hidden-visually"><?php p($l->t('Select all'))?></span> </label> |