Add success notice style (#5242

* Add success notice style

* Move quote styling closer to notices
Improving parsing of notices when pasting from other tools
This commit is contained in:
Tom Moor
2023-04-23 13:34:40 -04:00
committed by GitHub
parent 7620d37009
commit 71b2cd1c46
7 changed files with 60 additions and 3 deletions

View File

@@ -651,9 +651,23 @@ h6 {
}
}
.notice-block.success {
background: ${transparentize(0.9, props.theme.noticeSuccessBackground)};
border-left: 4px solid ${props.theme.noticeSuccessBackground};
color: ${props.theme.noticeSuccessText};
.icon {
color: ${props.theme.noticeSuccessBackground};
}
a {
color: ${props.theme.noticeSuccessText};
}
}
blockquote {
margin: 0;
padding-left: 1.5em;
padding: 8px 10px 8px 1.5em;
font-style: italic;
overflow: hidden;
position: relative;