Fixed Group Headings in Content (#12702)
* 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 * Fixed Group Headings in Content 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:
@@ -6,16 +6,19 @@
|
||||
}
|
||||
|
||||
.umb-group-panel__header {
|
||||
padding: 12px 20px;
|
||||
font-weight: bold;
|
||||
font-size: 14px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
color: @grayDarker;
|
||||
border-bottom: 1px solid @gray-9;
|
||||
padding: 12px 20px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
color: @grayDarker;
|
||||
border-bottom: 1px solid @gray-9;
|
||||
}
|
||||
|
||||
.umb-group-panel__header h2 {
|
||||
font-size: @fontSizeMedium;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.umb-group-panel__content {
|
||||
padding: 20px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
ng-show="group.parentAlias === activeTabAlias || tabs.length === 0">
|
||||
|
||||
<div class="umb-group-panel__header">
|
||||
<div id="group-{{group.id}}">{{ group.label }}</div>
|
||||
<div id="group-{{group.id}}"><h2>{{ group.label }}</h2></div>
|
||||
</div>
|
||||
|
||||
<div class="umb-group-panel__content" data-element="tab-content-{{group.type === 'Group' ? group.parentAlias : group.alias}}">
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
ng-show="group.parentAlias === vm.activeTabAlias || vm.tabs.length === 0">
|
||||
|
||||
<div class="umb-group-panel__header">
|
||||
<div id="group-{{group.id}}">{{ group.label }}</div>
|
||||
<div id="group-{{group.id}}"><h2>{{ group.label }}</h2></div>
|
||||
</div>
|
||||
|
||||
<div class="umb-group-panel__content" data-element="tab-content-{{group.type === 'Group' ? group.parentAlias : group.alias}}">
|
||||
|
||||
Reference in New Issue
Block a user