style: add pk-{information,attention,error} synonyms (#46794)

This commit is contained in:
Frédéric Péters 2020-09-19 11:43:56 +02:00
parent e72dc51a74
commit ef1ec881f3
1 changed files with 10 additions and 4 deletions

View File

@ -340,7 +340,10 @@ ul.messages li,
div.infonotice,
div.successnotice,
div.warningnotice,
div.errornotice {
div.errornotice,
div.pk-information,
div.pk-attention,
div.pk-error {
position: relative;
font-size: 110%;
background: white;
@ -368,19 +371,22 @@ div.errornotice {
border-image: linear-gradient(#27eb00, lighten(#27eb00, 10%)) 2;
}
&.info,
&.infonotice {
&.infonotice,
&.pk-info {
&:before { content: "\f05a"; } // info-circle
border-color: #0000b0;
border-image: linear-gradient(#4474f6, lighten(#4474f6, 10%)) 2;
}
&.warning,
&.warningnotice {
&.warningnotice,
&.pk-attention {
&:before { content: "\f06a"; } //exclamation-circle
border-color: #ffb000;
border-image: linear-gradient(#f47f13, lighten(#f47f13, 15%)) 2;
}
&.error,
&.errornotice {
&.errornotice,
&.pk-error {
&:before { content: "\f071"; } // exclamation-triangle
border-color: #f64474;
border-image: linear-gradient(#f64474, lighten(#f64474, 5%)) 2;