Changed SUCCESS blockquote adoc option to return a block as AsciiDoctor.js currently doesn't support inline extensions on paragraph content

pull/7390/head
Brian Powell Jr 1 year ago
parent 155087ac6f
commit 378481e14f

@ -53,7 +53,7 @@
v-icon(color='blue') mdi-alpha-n-box-outline v-icon(color='blue') mdi-alpha-n-box-outline
v-list-item-title {{'Note Blockquote'}} v-list-item-title {{'Note Blockquote'}}
v-divider v-divider
v-list-item(@click='insertBeforeEachLine({ content: `SUCCESS: `})') v-list-item(@click='insertBeforeEachLine({ content: `[SUCCESS]\n`})')
v-list-item-action v-list-item-action
v-icon(color='success') mdi-alpha-s-box-outline v-icon(color='success') mdi-alpha-s-box-outline
v-list-item-title {{'Success Blockquote'}} v-list-item-title {{'Success Blockquote'}}

@ -445,6 +445,7 @@
} }
} }
} }
&.success { &.success {
td.icon { td.icon {
background-color: mc('green', '300'); background-color: mc('green', '300');
@ -463,6 +464,7 @@
} }
} }
} }
&.tip { &.tip {
td.icon { td.icon {
background-color: mc('green', '300'); background-color: mc('green', '300');
@ -481,6 +483,7 @@
} }
} }
} }
&.warning { &.warning {
background-color: transparent !important; background-color: transparent !important;
@ -501,6 +504,7 @@
} }
} }
} }
&.caution { &.caution {
td.icon { td.icon {
background-color: mc('purple', '300'); background-color: mc('purple', '300');
@ -519,6 +523,7 @@
} }
} }
} }
&.important { &.important {
td.icon { td.icon {
background-color: mc('red', '300'); background-color: mc('red', '300');

Loading…
Cancel
Save