Merge branch '34338-details-element' into 'master'
Add padding to details element in markdown Closes #34338 See merge request gitlab-org/gitlab-ce!32716
This commit is contained in:
commit
230b36ecf4
2 changed files with 17 additions and 0 deletions
|
@ -67,6 +67,18 @@
|
|||
max-height: calc(100vh - 100px);
|
||||
}
|
||||
|
||||
details {
|
||||
margin-bottom: $gl-padding;
|
||||
|
||||
summary {
|
||||
margin-bottom: $gl-padding;
|
||||
}
|
||||
|
||||
*:first-child:not(summary) {
|
||||
margin-top: $gl-padding;
|
||||
}
|
||||
}
|
||||
|
||||
// Single code lines should wrap
|
||||
code {
|
||||
font-family: $monospace-font;
|
||||
|
|
5
changelogs/unreleased/34338-details-element.yml
Normal file
5
changelogs/unreleased/34338-details-element.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Add some padding to details markdown element
|
||||
merge_request: 32716
|
||||
author:
|
||||
type: fixed
|
Loading…
Reference in a new issue