ui: Fix up tab separator CSS to not apply to all tabs (#8792)

pull/8794/head
John Cowen 4 years ago committed by GitHub
parent d2103a61d8
commit b77712b911
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -22,12 +22,3 @@
display: inline-block;
padding: 16px 13px;
}
%tab-section section {
padding-bottom: 24px;
}
%tab-section section:not(:last-child) {
border-bottom: 1px solid $gray-200;
}
%tab-section section > h3 {
margin: 24px 0 12px 0;
}

@ -8,3 +8,10 @@ html[data-route^='dc.services.instance'] .app-view > header dl {
html[data-route^='dc.services.instance'] .app-view > header dt {
font-weight: $typo-weight-bold;
}
html[data-route^='dc.services.instance'] [role='tabpanel'] section:not(:last-child) {
padding-bottom: 24px;
border-bottom: 1px solid $gray-200;
}
html[data-route^='dc.services.instance'] [role='tabpanel'] section h3 {
margin: 24px 0 12px 0;
}

Loading…
Cancel
Save