Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Accessibility fixes for header and global elements #10310

Merged
merged 12 commits into from
Jul 24, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/files/js/filelist.js
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@
this.updateSelectionSummary();
} else {
// clicked directly on the name
if (!this._detailsView || $(event.target).is('.nametext') || $(event.target).closest('.nametext').length) {
if (!this._detailsView || $(event.target).is('.nametext, .name') || $(event.target).closest('.nametext').length) {
var filename = $tr.attr('data-file');
var renaming = $tr.data('renaming');
if (!renaming) {
Expand Down
9 changes: 8 additions & 1 deletion apps/files/js/newfilemenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
var TEMPLATE_MENU =
'<ul>' +
'<li>' +
'<label for="file_upload_start" class="menuitem" data-action="upload" title="{{uploadMaxHumanFilesize}}"><span class="svg icon icon-upload"></span><span class="displayname">{{uploadLabel}}</span></label>' +
'<label for="file_upload_start" class="menuitem" data-action="upload" title="{{uploadMaxHumanFilesize}}" tabindex="0"><span class="svg icon icon-upload"></span><span class="displayname">{{uploadLabel}}</span></label>' +
'</li>' +
'{{#each items}}' +
'<li>' +
Expand Down Expand Up @@ -235,6 +235,13 @@
items: this._menuItems
}));
OC.Util.scaleFixForIE8(this.$('.svg'));

// Trigger upload action also with keyboard navigation on enter
this.$el.find('[for="file_upload_start"]').on('keyup', function(event) {
if (event.key === " " || event.key === "Enter") {
$('#file_upload_start').trigger('click');
}
});
},

/**
Expand Down
22 changes: 11 additions & 11 deletions apps/files/tests/js/filelistSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2429,22 +2429,22 @@ describe('OCA.Files.FileList tests', function() {
);
fileList.fileActions.setDefault('text/plain', 'Test');
var $tr = fileList.findFileEl('One.txt');
$tr.find('td.filename>a.name').click();
$tr.find('td.filesize').click();
expect(actionStub.calledOnce).toEqual(true);
expect(updateDetailsViewStub.notCalled).toEqual(true);
updateDetailsViewStub.restore();
});
it('highlights current file when clicked and updates sidebar', function() {
fileList.fileActions.setDefault('text/plain', 'Test');
var $tr = fileList.findFileEl('One.txt');
$tr.find('td.filename>a.name').click();
$tr.find('td.filesize').click();
expect($tr.hasClass('highlighted')).toEqual(true);

expect(fileList._detailsView.getFileInfo().id).toEqual(1);
});
it('keeps the last highlighted file when clicking outside', function() {
var $tr = fileList.findFileEl('One.txt');
$tr.find('td.filename>a.name').click();
$tr.find('td.filesize').click();

fileList.$el.find('tfoot').click();

Expand All @@ -2455,12 +2455,12 @@ describe('OCA.Files.FileList tests', function() {
var $tr = fileList.findFileEl('One.txt');

// select
$tr.find('td.filename>a.name').click();
$tr.find('td.filesize').click();
$tr.find('input:checkbox').click();
expect($tr.hasClass('highlighted')).toEqual(false);

// deselect
$tr.find('td.filename>a.name').click();
$tr.find('td.filesize').click();
$tr.find('input:checkbox').click();
expect($tr.hasClass('highlighted')).toEqual(false);

Expand All @@ -2470,12 +2470,12 @@ describe('OCA.Files.FileList tests', function() {
var $tr = fileList.findFileEl('One.txt');

// select
$tr.find('td.filename>a.name').click();
$tr.find('td.filesize').click();
fileList.$el.find('.select-all.checkbox').click();
expect($tr.hasClass('highlighted')).toEqual(false);

// deselect
$tr.find('td.filename>a.name').click();
$tr.find('td.filesize').click();
fileList.$el.find('.select-all.checkbox').click();
expect($tr.hasClass('highlighted')).toEqual(false);

Expand All @@ -2484,7 +2484,7 @@ describe('OCA.Files.FileList tests', function() {
it('closes sidebar whenever the currently highlighted file was removed from the list', function() {
jQuery.fx.off = true;
var $tr = fileList.findFileEl('One.txt');
$tr.find('td.filename>a.name').click();
$tr.find('td.filesize').click();
expect($tr.hasClass('highlighted')).toEqual(true);

expect(fileList._detailsView.getFileInfo().id).toEqual(1);
Expand All @@ -2496,7 +2496,7 @@ describe('OCA.Files.FileList tests', function() {
});
it('returns the currently selected model instance when calling getModelForFile', function() {
var $tr = fileList.findFileEl('One.txt');
$tr.find('td.filename>a.name').click();
$tr.find('td.filesize').click();

var model1 = fileList.getModelForFile('One.txt');
var model2 = fileList.getModelForFile('One.txt');
Expand All @@ -2511,7 +2511,7 @@ describe('OCA.Files.FileList tests', function() {
it('closes the sidebar when switching folders', function() {
jQuery.fx.off = true;
var $tr = fileList.findFileEl('One.txt');
$tr.find('td.filename>a.name').click();
$tr.find('td.filesize').click();

expect($('#app-sidebar').hasClass('disappear')).toEqual(false);
fileList.changeDirectory('/another');
Expand Down Expand Up @@ -2560,7 +2560,7 @@ describe('OCA.Files.FileList tests', function() {
// not set.
fileList.fileActions.currentFile = null;
var $tr = fileList.findFileEl('One.txt');
$tr.find('td.filename a.name').click();
$tr.find('td.filesize').click();
expect(detailsActionStub.calledOnce).toEqual(true);
expect(detailsActionStub.getCall(0).args[0]).toEqual('One.txt');
var context = detailsActionStub.getCall(0).args[1];
Expand Down
11 changes: 4 additions & 7 deletions core/css/header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -348,17 +348,13 @@ nav[role='navigation'] {
opacity: 1; /* override icon opacity */
padding-right: 12px;

img {
opacity: .7;
margin-bottom: -2px;
}
&:hover,
&:focus,
&:active {
color: var(--color-primary-text);

img, #expandDisplayName {
opacity: 1;
opacity: .57 !important;
}
}

Expand Down Expand Up @@ -490,7 +486,8 @@ nav[role='navigation'] {
}

li:hover span,
li:focus span {
li:focus span,
li a:focus span {
display: inline-block;
}

Expand Down Expand Up @@ -570,7 +567,7 @@ nav[role='navigation'] {
padding: 11px;
position: absolute;
overflow: hidden;
z-index: 1000;
z-index: 9999;
top: -999px;
left: 3px;
/* Force primary color, otherwise too light focused color */
Expand Down
9 changes: 8 additions & 1 deletion core/css/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,12 @@ span.ui-icon {
background-size: 16px 16px;
padding: 14px;
cursor: pointer;
opacity: .6;

&:hover,
&:focus,
&:active {
opacity: 1 !important;
}
}
}

Expand Down Expand Up @@ -1098,6 +1103,8 @@ div.crumb {
}
}
&:hover, &:focus, a:focus, &:active {
opacity: 1;

> a,
> span {
opacity: .7;
Expand Down
31 changes: 28 additions & 3 deletions core/js/js.js
Original file line number Diff line number Diff line change
Expand Up @@ -684,10 +684,15 @@ var OCP = {},
registerMenu: function($toggle, $menuEl, toggle, headerMenu) {
var self = this;
$menuEl.addClass('menu');
$toggle.on('click.menu', function(event) {
$toggle.on('click.menu keyup.menu', function(event) {
// prevent the link event (append anchor to URL)
event.preventDefault();

// allow enter key as a trigger
if (event.key && event.key !== "Enter") {
return;
}

if ($menuEl.is(OC._currentMenu)) {
self.hideMenus();
return;
Expand Down Expand Up @@ -1422,7 +1427,14 @@ function initCore() {
OC.registerMenu($('#expand'), $('#expanddiv'), false, true);

// toggle for menus
//$(document).on('mouseup.closemenus keyup', function(event) {
$(document).on('mouseup.closemenus', function(event) {

// allow enter as a trigger
// if (event.key && event.key !== "Enter") {
// return;
// }

var $el = $(event.target);
if ($el.closest('.menu').length || $el.closest('.menutoggle').length) {
// don't close when clicking on the menu directly or a menu toggle
Expand Down Expand Up @@ -1617,14 +1629,27 @@ function initCore() {
maxPosition: 250,
minDragDistance: 100
});
$('#app-content').prepend('<div id="app-navigation-toggle" class="icon-menu" style="display:none;"></div>');
$('#app-navigation-toggle').click(function(){

$('#app-content').prepend('<div id="app-navigation-toggle" class="icon-menu" style="display:none;" tabindex="0"></div>');

var toggleSnapperOnButton = function(){
if(snapper.state().state == 'left'){
snapper.close();
} else {
snapper.open('left');
}
};

$('#app-navigation-toggle').click(function(){
toggleSnapperOnButton();
});

$('#app-navigation-toggle').keypress(function(e) {
if(e.which == 13) {
toggleSnapperOnButton();
}
});

// close sidebar when switching navigation entry
var $appNavigation = $('#app-navigation');
$appNavigation.delegate('a, :button', 'click', function(event) {
Expand Down