Skip to content

Commit 0cb4811

Browse files
author
CI bot
committed
Merge remote-tracking branch 'remotes/dev/master'
2 parents ba0a841 + a94e678 commit 0cb4811

File tree

26 files changed

+64
-45
lines changed

26 files changed

+64
-45
lines changed

src/Oro/Bundle/DashboardBundle/Resources/views/Dashboard/tabbedWidget.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
{% set tabTabId = 'tab-'|uniqid %}
1212
{% set tabContentId = 'tab-content-'|uniqid %}
1313
{% for tab in tabs %}
14-
<li class="nav-item tab">
14+
<li class="nav-item tab" role="presentation">
1515
<a id="{{ (loop.index == 0) ? tabTabId : tabTabId ~ loop.index }}"
1616
href="#{{ tabContentId }}"
1717
role="tab"

src/Oro/Bundle/DataGridBundle/Resources/public/default/scss/components/datagrid-header-cell.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
color: $datagrid-header-cell-link-color;
5757
position: $datagrid-header-cell-link-position;
5858
opacity: $datagrid-header-cell-link-opacity;
59-
text-transform: uppercase;
59+
text-transform: $datagrid-header-cell-link-text-transform;
6060
}
6161

6262
&__link {

src/Oro/Bundle/DataGridBundle/Resources/public/default/scss/variables/datagrid-header-cell-config.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ $datagrid-header-cell-link-font-size: 12px !default;
1515
$datagrid-header-cell-link-font-weight: font-weight('semi-bold') !default;
1616
$datagrid-header-cell-link-line-height: 1 !default;
1717
$datagrid-header-cell-link-color: get-color('text', 'secondary') !default;
18-
$datagrid-header-cell-link-opacity: .8 !default;
18+
$datagrid-header-cell-link-opacity: null !default;
19+
$datagrid-header-cell-link-text-transform: uppercase !default;
1920
$datagrid-header-cell-link-position: relative !default;
2021
$datagrid-header-cell-link-hover-color: get-color('neutral', 'dark') !default;
2122
$datagrid-header-cell-link-hover-text-decoration: none !default;

src/Oro/Bundle/DataGridBundle/Resources/public/js/datagrid/cell/boolean-cell.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ define(function(require) {
4646
this.delegateEvents();
4747
}
4848

49+
this.$el.find('[type="checkbox"]').attr('aria-label', __('oro.datagrid.action.select_row'));
50+
4951
return this;
5052
},
5153

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<input type="checkbox" class="select-row-cell-input" data-role="select-row-cell"<% if (checked) { %> checked="checked"<% } %>>
1+
<input type="checkbox" class="select-row-cell-input" data-role="select-row-cell"<% if (checked) { %> checked="checked"<% } %> aria-label="<%- _.__('oro.datagrid.action.select_row') %>">

src/Oro/Bundle/EmailBundle/Resources/views/Form/fields.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@
351351
uniqid - is unique identifier
352352
#}
353353
{% macro renderTabNavItem(form, isActive = false, uniqid = null) %}
354-
<li class="nav-item">
354+
<li class="nav-item" role="presentation">
355355
<a href="#"
356356
class="nav-link {% if isActive %}active{% endif %}"
357357
data-role="change-localization"

src/Oro/Bundle/EmailBundle/Resources/views/macros.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<div class="emailtemplate-variables oro-tabs tabbable">
88
<div class="oro-tabs__head">
99
<ul class="nav nav-tabs" role="tablist">
10-
<li class="nav-item" >
10+
<li class="nav-item" role="presentation">
1111
<a id="{{ systemTab }}"
1212
href="#{{system }}"
1313
class="nav-link active"

src/Oro/Bundle/EmailBundle/Tests/Behat/behat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ oro_behat_extension:
187187
Ellipsis button:
188188
selector:
189189
type: xpath
190-
locator: '//div[@class="emailtemplate-translatation oro-tabs tabbable"]//a[@role="button"]'
190+
locator: '//div[@class="emailtemplate-translatation oro-tabs tabbable"]//a[@data-toggle="dropdown"]'
191191

192192
Email Page Contexts:
193193
selector: 'div.activity-context-activity'

src/Oro/Bundle/FormBundle/Resources/config/oro/app.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ oro_form:
2929
- src
3030
- width
3131
- allow
32+
- title
3233
table:
3334
attributes:
3435
- cellspacing

src/Oro/Bundle/FormBundle/Resources/public/default/scss/components/checkbox.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
display: $checkbox-display;
1515
// To prevent shrink or grow checkbox if it's in flex container context
1616
flex: $checkbox-flex;
17-
outline: $checkbox-outline;
1817

1918
&::before {
2019
content: $checkbox-icon-content;
@@ -99,7 +98,6 @@
9998
display: $checkbox-display;
10099
// To prevent shrink or grow checkbox if it's in flex container context
101100
flex: $checkbox-flex;
102-
outline: $checkbox-outline;
103101

104102
&::before {
105103
content: $checkbox-radio-icon-content;

0 commit comments

Comments
 (0)