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-list-item-title {{'Note Blockquote'}}
v-divider
v-list-item(@click='insertBeforeEachLine({ content: `SUCCESS: `})')
v-list-item(@click='insertBeforeEachLine({ content: `[SUCCESS]\n`})')
v-list-item-action
v-icon(color='success') mdi-alpha-s-box-outline
v-list-item-title {{'Success Blockquote'}}

@ -445,14 +445,15 @@
}
}
}
&.success {
td.icon {
background-color: mc('green', '300');
color: mc('green', '50');
&::before {
content: "\F0E1E";
}
td.icon {
background-color: mc('green', '300');
color: mc('green', '50');
&::before {
content: "\F0E1E";
}
}
td.content {
color: darken(mc('green', '900'), 10%);
background-color: mc('green', '50');
@ -463,6 +464,7 @@
}
}
}
&.tip {
td.icon {
background-color: mc('green', '300');
@ -481,6 +483,7 @@
}
}
}
&.warning {
background-color: transparent !important;
@ -501,6 +504,7 @@
}
}
}
&.caution {
td.icon {
background-color: mc('purple', '300');
@ -519,6 +523,7 @@
}
}
}
&.important {
td.icon {
background-color: mc('red', '300');

Loading…
Cancel
Save