Fixed Missing H1 tag (#12695)

* Added secure to the UMB-XSRF-V cookie when global https is true.

* Issue 12551 search bug

Previous optimisation incorrectly filtered the index fields needed to return published results

* Update MemberRepository.cs (#12641)

Ensuring that MemberManager.ConfirmEmailAsync persists, same changes in pull request #12640 but for v9

* Initial Commit

Amended tree root to be h1 (previously was h5) and amended contextual modal header to be h2 (previously was h1)

Co-authored-by: Corey Philipp <CPhilipp@dewpoint.com>
Co-authored-by: Matthew Care <matty_care@hotmail.co.uk>
Co-authored-by: gilbertaoe <gilbertaoe@hotmail.com>
Co-authored-by: Nikolaj Geisle <70372949+Zeegaan@users.noreply.github.com>
Co-authored-by: Sebastiaan Janssen <sebastiaan@umbraco.com>
This commit is contained in:
Tiffany Prosser
2022-07-21 00:46:55 +01:00
committed by GitHub
parent 29e8fd786d
commit cecf24aa87
4 changed files with 24 additions and 24 deletions

View File

@@ -1,24 +1,24 @@
.umb-tree-root {
border: 2px solid transparent;
border: 2px solid transparent;
&-link {
display: flex;
align-items: center;
width: 100%;
padding-left: 20px;
color: @gray-2;
height: @editorHeaderHeight;
}
&-link {
display: flex;
align-items: center;
width: 100%;
padding-left: 20px;
color: @gray-2;
height: @editorHeaderHeight;
}
h5,
h6 {
margin: 0;
width: 100%;
display: flex;
}
h1 {
font-size: 18.75px;
font-weight: 600;
margin: 0;
width: 100%;
display: flex;
}
.umb-options {
align-self: center;
}
.umb-options {
align-self: center;
}
}

View File

@@ -16,10 +16,10 @@
white-space: nowrap
}
.umb-modalcolumn-header h1{
.umb-modalcolumn-header h2 {
margin: 0;
white-space: nowrap;
font-size: @fontSizeLarge;
font-size: @fontSizeMedium;
font-weight: 400;
}

View File

@@ -2,7 +2,7 @@
<li ng-if="!tree.root.containsGroups">
<div class="umb-tree-root" data-element="tree-root" ng-class="getNodeCssClass(tree.root)" ng-if="hideheader !== 'true'" on-right-click="altSelect(tree.root, $event)">
<h5>
<h1>
<a ng-href="#/{{section}}" ng-click="select(tree.root, $event)" class="umb-tree-root-link umb-outline" data-element="tree-root-link">
<umb-icon icon="icon-check"
class="umb-tree-icon"
@@ -11,7 +11,7 @@
</umb-icon>
{{tree.name}}
</a>
</h5>
</h1>
<umb-button-ellipsis element="tree-item-options"
action="options(tree.root, $event)"

View File

@@ -5,7 +5,7 @@
aria-labelledby="contextdialog-title"
aria-describedby="contextdialog-description">
<div class="umb-modalcolumn-header">
<h1 id="contextdialog-title">{{dialogTitle}}</h1>
<h2 id="contextdialog-title">{{dialogTitle}}</h2>
<p id="contextdialog-description" class="sr-only">
<localize key="visuallyHiddenTexts_contextDialogDescription" tokens="[dialogTitle,currentNode.name]">Perform action {{dialogTitle}} on the {{currentNode.name}} node</localize>
</p>