0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-08 20:23:39 +00:00

update v3 drop cap tweak to match new styling

and change v3 drop cap to use only `background` rather than `background-image` so that the tweak snippet can easily change between gradient and just a regular color.

and re-order table menu so that the regular table snippet is at top.
This commit is contained in:
Gazook89
2021-09-05 15:40:08 -05:00
parent cf5a1cee24
commit 3063337eb2
3 changed files with 43 additions and 44 deletions

View File

@@ -204,16 +204,6 @@ module.exports = [
icon : 'fas fa-table',
view : 'text',
snippets : [
{
name : 'Class Table',
icon : 'fas fa-table',
gen : ClassTableGen.full,
},
{
name : 'Half Class Table',
icon : 'fas fa-list-alt',
gen : ClassTableGen.half,
},
{
name : 'Table',
icon : 'fas fa-th-list',
@@ -275,6 +265,16 @@ module.exports = [
'</div>\n\n',
].join('\n');
},
},
{
name : 'Class Table',
icon : 'fas fa-table',
gen : ClassTableGen.full,
},
{
name : 'Half Class Table',
icon : 'fas fa-list-alt',
gen : ClassTableGen.half,
}
]
},