Remove counter-productive role="heading" and aria-level attributes
This commit is contained in:
parent
89705afa9d
commit
c19dd39fe3
4 changed files with 6 additions and 6 deletions
|
@ -1717,13 +1717,13 @@ aside .panel-body {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* wall items action dropdown menu */
|
/* wall items action dropdown menu */
|
||||||
.media [role="heading"] {
|
.media .contact-info {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Workaround for Firefox where the post heading covers the avatar, preventing hovercard interaction,
|
/* Workaround for Firefox where the post heading covers the avatar, preventing hovercard interaction,
|
||||||
48px is the width of the avatar image and should be adjusted accordingly if it ever changes. */
|
48px is the width of the avatar image and should be adjusted accordingly if it ever changes. */
|
||||||
.media .dropdown.pull-left + [role="heading"] {
|
.media .dropdown.pull-left + .contact-info {
|
||||||
margin-left: 48px;
|
margin-left: 48px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
|
|
||||||
{{* contact info header*}}
|
{{* contact info header*}}
|
||||||
<div role="heading" class="contact-info hidden-sm hidden-xs media-body"><!-- <= For computer -->
|
<div class="contact-info hidden-sm hidden-xs media-body"><!-- Desktop -->
|
||||||
<div class="preferences">
|
<div class="preferences">
|
||||||
{{if $item.network_icon != ""}}
|
{{if $item.network_icon != ""}}
|
||||||
<span class="wall-item-network"><i class="fa fa-{{$item.network_icon}}" title="{{$item.network_name}}" aria-hidden="true"></i></span>
|
<span class="wall-item-network"><i class="fa fa-{{$item.network_icon}}" title="{{$item.network_name}}" aria-hidden="true"></i></span>
|
||||||
|
@ -77,7 +77,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{* contact info header for smartphones *}}
|
{{* contact info header for smartphones *}}
|
||||||
<div role="heading" class="contact-info-xs hidden-lg hidden-md">
|
<div class="contact-info contact-info-xs hidden-lg hidden-md">
|
||||||
<div class="preferences">
|
<div class="preferences">
|
||||||
{{if $item.network_icon != ""}}
|
{{if $item.network_icon != ""}}
|
||||||
<span class="wall-item-network"><i class="fa fa-{{$item.network_icon}}" title="{{$item.network_name}}" aria-hidden="true"></i></span>
|
<span class="wall-item-network"><i class="fa fa-{{$item.network_icon}}" title="{{$item.network_name}}" aria-hidden="true"></i></span>
|
||||||
|
|
|
@ -132,7 +132,7 @@ as the value of $top_child_total (this is done at the end of this file)
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{* contact info header*}}
|
{{* contact info header*}}
|
||||||
<div role="heading" aria-level="{{$item.thread_level}}">
|
<div class="contact-info">
|
||||||
<div class="preferences">
|
<div class="preferences">
|
||||||
{{if $item.network_icon != ""}}
|
{{if $item.network_icon != ""}}
|
||||||
<span class="wall-item-network"><i class="fa fa-{{$item.network_icon}}" title="{{$item.network_name}}" aria-hidden="true"></i></span>
|
<span class="wall-item-network"><i class="fa fa-{{$item.network_icon}}" title="{{$item.network_name}}" aria-hidden="true"></i></span>
|
||||||
|
|
|
@ -52,7 +52,7 @@
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
<div role="heading" aria-level="{{$item.thread_level}}" class="wall-item-actions-author">
|
<div class="wall-item-actions-author">
|
||||||
<a href="{{$item.profile_url}}" target="redir" title="{{$item.linktitle}}" class="wall-item-name-link"><span class="wall-item-name{{$item.sparkle}}">{{$item.name}}</span></a>
|
<a href="{{$item.profile_url}}" target="redir" title="{{$item.linktitle}}" class="wall-item-name-link"><span class="wall-item-name{{$item.sparkle}}">{{$item.name}}</span></a>
|
||||||
{{if $item.owner_url}}{{$item.via}} <a href="{{$item.owner_url}}" target="redir" title="{{$item.olinktitle}}" class="wall-item-name-link"><span class="wall-item-name{{$item.osparkle}}" id="wall-item-ownername-{{$item.id}}">{{$item.owner_name}}</span></a>{{/if}}
|
{{if $item.owner_url}}{{$item.via}} <a href="{{$item.owner_url}}" target="redir" title="{{$item.olinktitle}}" class="wall-item-name-link"><span class="wall-item-name{{$item.osparkle}}" id="wall-item-ownername-{{$item.id}}">{{$item.owner_name}}</span></a>{{/if}}
|
||||||
<span class="wall-item-ago">
|
<span class="wall-item-ago">
|
||||||
|
|
Loading…
Reference in a new issue