From 25b5badf90f3f06fd51770cb53cad6f9d879072b Mon Sep 17 00:00:00 2001 From: Victor Losada Hernandez Date: Tue, 21 Mar 2023 14:17:12 +0100 Subject: [PATCH] dropdown icons --- client/icons/Davek.svg | 1 + client/icons/Lokharic.svg | 1 + client/icons/Rellanic.svg | 1 + client/icons/customIcons.less | 9 +++++++++ themes/V3/5ePHB/snippets.js | 8 ++++---- 5 files changed, 16 insertions(+), 4 deletions(-) create mode 100644 client/icons/Davek.svg create mode 100644 client/icons/Lokharic.svg create mode 100644 client/icons/Rellanic.svg diff --git a/client/icons/Davek.svg b/client/icons/Davek.svg new file mode 100644 index 000000000..0f2324ce2 --- /dev/null +++ b/client/icons/Davek.svg @@ -0,0 +1 @@ +Davek \ No newline at end of file diff --git a/client/icons/Lokharic.svg b/client/icons/Lokharic.svg new file mode 100644 index 000000000..f066c074b --- /dev/null +++ b/client/icons/Lokharic.svg @@ -0,0 +1 @@ +Lokharic \ No newline at end of file diff --git a/client/icons/Rellanic.svg b/client/icons/Rellanic.svg new file mode 100644 index 000000000..d03447baa --- /dev/null +++ b/client/icons/Rellanic.svg @@ -0,0 +1 @@ +Rellanic \ No newline at end of file diff --git a/client/icons/customIcons.less b/client/icons/customIcons.less index 28cbcdf24..519823c1c 100644 --- a/client/icons/customIcons.less +++ b/client/icons/customIcons.less @@ -37,3 +37,12 @@ .book-front-cover { content: url('../icons/book-front-cover.svg'); } +.davek { + content: url('../icons/Davek.svg'); +} +.rellanic { + content: url('../icons/Rellanic.svg'); +} +.lokharic { + content: url('../icons/Lokharic.svg'); +} \ No newline at end of file diff --git a/themes/V3/5ePHB/snippets.js b/themes/V3/5ePHB/snippets.js index 05fbf73bc..6beacb7ac 100644 --- a/themes/V3/5ePHB/snippets.js +++ b/themes/V3/5ePHB/snippets.js @@ -171,23 +171,23 @@ module.exports = [ }, { name : 'Script Sample', - icon : 'fac script', + icon : 'fas fa-language', gen : scriptGen.dwarvish, experimental : true, subsnippets : [ { name : '5e Dwarvish', - icon : 'fac dwarvish', + icon : 'fac davek', gen : scriptGen.dwarvish, }, { name : '5e Elvish', - icon : 'fac elvish', + icon : 'fac rellanic', gen : scriptGen.elvish, }, { name : '5e Draconic', - icon : 'fac draconic', + icon : 'fac lokharic', gen : scriptGen.draconic, }, ]