diff --git a/apps/files/js/detailsview.js b/apps/files/js/detailsview.js index e53922ebb69..a896e84fdc0 100644 --- a/apps/files/js/detailsview.js +++ b/apps/files/js/detailsview.js @@ -23,7 +23,7 @@ ' {{/if}}' + '
' + '
' + - ' '; + ' {{closeLabel}}'; /** * @class OCA.Files.DetailsView diff --git a/apps/files/templates/list.php b/apps/files/templates/list.php index f3b6759644c..46bd9351e39 100644 --- a/apps/files/templates/list.php +++ b/apps/files/templates/list.php @@ -4,7 +4,9 @@
- +
diff --git a/apps/files/templates/simplelist.php b/apps/files/templates/simplelist.php index c787f9eb8df..fdf882fa3fe 100644 --- a/apps/files/templates/simplelist.php +++ b/apps/files/templates/simplelist.php @@ -29,7 +29,7 @@ t( 'Modified' )); ?> t('Delete'))?> - <?php p($l->t('Delete'))?>" /> diff --git a/core/css/header.scss b/core/css/header.scss index e9edfe0bfb8..656440520a0 100644 --- a/core/css/header.scss +++ b/core/css/header.scss @@ -459,6 +459,7 @@ nav { li:hover a, + li a:focus, li a.active { opacity: 1; } diff --git a/core/js/contactsmenu.js b/core/js/contactsmenu.js index 6d57ae72e65..41de10abb47 100644 --- a/core/js/contactsmenu.js +++ b/core/js/contactsmenu.js @@ -26,6 +26,7 @@ 'use strict'; var MENU_TEMPLATE = '' + + '' + '' + '
' + '
'; @@ -51,7 +52,7 @@ var CONTACT_TEMPLATE = '' + '{{#if contact.avatar}}' + '' + + 'srcset="{{contact.avatar}}&size=32 1x, {{contact.avatar}}&size=64 2x, {{contact.avatar}}&size=128 4x" alt="">' + '{{else}}' + '
' + '{{/if}}' @@ -61,12 +62,12 @@ + '' + '{{#if contact.topAction}}' + '' - + ' ' + + ' {{contact.topAction.title}}' + '' + '{{/if}}' + '{{#if contact.hasTwoActions}}' + '' - + ' ' + + ' {{contact.secondAction.title}}' + '' + '{{/if}}' + '{{#if contact.hasManyActions}}' @@ -76,7 +77,7 @@ + ' {{#each contact.actions}}' + '
  • ' + ' ' - + ' ' + + ' ' + ' {{title}}' + ' ' + '
  • ' @@ -224,7 +225,7 @@ })); this.delegateEvents(); - // Show placeholder iff no avatar is available (avatar is rendered as img, not div) + // Show placeholder if no avatar is available (avatar is rendered as img, not div) this.$('div.avatar').imageplaceholder(this._model.get('fullName')); // Show tooltip for top action diff --git a/core/js/jquery.avatar.js b/core/js/jquery.avatar.js index a320496e250..54518c75cc7 100644 --- a/core/js/jquery.avatar.js +++ b/core/js/jquery.avatar.js @@ -126,9 +126,9 @@ } else { $div.show(); if (ie8fix === true) { - $div.html(''); + $div.html(''); } else { - $div.html(''); + $div.html(''); } } if(typeof callback === 'function') { diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 6b9db9389ba..5008392d2a3 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -33,29 +33,21 @@