Merge pull request 'art(create): placeholder tree-node icons for Silo viewer nodes' (#273) from feat/silo-tree-icons into main
Some checks failed
Build and Test / build (push) Has been cancelled
Reviewed-on: #273
@@ -33,6 +33,14 @@ install(
|
|||||||
Mod/Create
|
Mod/Create
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Install Silo tree-node icons
|
||||||
|
install(
|
||||||
|
DIRECTORY
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}/resources/icons/
|
||||||
|
DESTINATION
|
||||||
|
Mod/Create/resources/icons
|
||||||
|
)
|
||||||
|
|
||||||
# Install ztools addon
|
# Install ztools addon
|
||||||
install(
|
install(
|
||||||
DIRECTORY
|
DIRECTORY
|
||||||
|
|||||||
8
src/Mod/Create/resources/icons/silo-approvals.svg
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#cba6f7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
|
<!-- Padlock body -->
|
||||||
|
<rect x="5" y="11" width="14" height="10" rx="2" fill="#313244" stroke="#cba6f7"/>
|
||||||
|
<!-- Padlock shackle -->
|
||||||
|
<path d="M8 11V7a4 4 0 0 1 8 0v4" fill="none" stroke="#89dceb"/>
|
||||||
|
<!-- Keyhole -->
|
||||||
|
<circle cx="12" cy="16" r="1.5" fill="#89dceb" stroke="none"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 448 B |
12
src/Mod/Create/resources/icons/silo-dependencies.svg
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#cba6f7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
|
<!-- Outer box -->
|
||||||
|
<rect x="3" y="3" width="18" height="18" rx="2" fill="#313244"/>
|
||||||
|
<!-- List lines (BOM rows) -->
|
||||||
|
<line x1="8" y1="8" x2="18" y2="8" stroke="#89dceb" stroke-width="1.5"/>
|
||||||
|
<line x1="8" y1="12" x2="18" y2="12" stroke="#89dceb" stroke-width="1.5"/>
|
||||||
|
<line x1="8" y1="16" x2="18" y2="16" stroke="#89dceb" stroke-width="1.5"/>
|
||||||
|
<!-- Hierarchy dots -->
|
||||||
|
<circle cx="6" cy="8" r="1" fill="#cba6f7"/>
|
||||||
|
<circle cx="6" cy="12" r="1" fill="#cba6f7"/>
|
||||||
|
<circle cx="6" cy="16" r="1" fill="#cba6f7"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 680 B |
8
src/Mod/Create/resources/icons/silo-group.svg
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#cba6f7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
|
<!-- Folder open icon -->
|
||||||
|
<path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z" fill="#313244"/>
|
||||||
|
<path d="M2 10h20" stroke="#6c7086"/>
|
||||||
|
<!-- Search magnifier -->
|
||||||
|
<circle cx="17" cy="15" r="3" fill="#1e1e2e" stroke="#a6e3a1" stroke-width="1.5"/>
|
||||||
|
<line x1="19.5" y1="17.5" x2="22" y2="20" stroke="#a6e3a1" stroke-width="1.5"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 529 B |
8
src/Mod/Create/resources/icons/silo-history.svg
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#cba6f7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
|
<!-- Counter-clockwise arrow -->
|
||||||
|
<polyline points="1 4 1 10 7 10" stroke="#f38ba8"/>
|
||||||
|
<path d="M3.51 15a9 9 0 1 0 2.13-9.36L1 10" stroke="#cba6f7"/>
|
||||||
|
<!-- Clock hands -->
|
||||||
|
<line x1="12" y1="7" x2="12" y2="12" stroke="#89dceb" stroke-width="1.5"/>
|
||||||
|
<line x1="12" y1="12" x2="15" y2="14" stroke="#89dceb" stroke-width="1.5"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 493 B |
7
src/Mod/Create/resources/icons/silo-job.svg
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#cba6f7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
|
<!-- Cloud -->
|
||||||
|
<path d="M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z" fill="#313244"/>
|
||||||
|
<!-- Upload arrow -->
|
||||||
|
<path d="M12 18v-5m0 0l-2 2m2-2l2 2" stroke="#a6e3a1" stroke-width="2"/>
|
||||||
|
<line x1="12" y1="13" x2="12" y2="9" stroke="#a6e3a1" stroke-width="2"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 427 B |
8
src/Mod/Create/resources/icons/silo-jobs-group.svg
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#cba6f7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
|
<!-- Folder open icon -->
|
||||||
|
<path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z" fill="#313244"/>
|
||||||
|
<path d="M2 10h20" stroke="#6c7086"/>
|
||||||
|
<!-- Search magnifier -->
|
||||||
|
<circle cx="17" cy="15" r="3" fill="#1e1e2e" stroke="#a6e3a1" stroke-width="1.5"/>
|
||||||
|
<line x1="19.5" y1="17.5" x2="22" y2="20" stroke="#a6e3a1" stroke-width="1.5"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 529 B |
8
src/Mod/Create/resources/icons/silo-macro.svg
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#cba6f7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
|
<!-- Document with plus -->
|
||||||
|
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" fill="#313244"/>
|
||||||
|
<polyline points="14 2 14 8 20 8" fill="#45475a" stroke="#cba6f7"/>
|
||||||
|
<!-- Plus sign -->
|
||||||
|
<line x1="12" y1="11" x2="12" y2="17" stroke="#a6e3a1" stroke-width="2"/>
|
||||||
|
<line x1="9" y1="14" x2="15" y2="14" stroke="#a6e3a1" stroke-width="2"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 521 B |
8
src/Mod/Create/resources/icons/silo-macros-group.svg
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#cba6f7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
|
<!-- Folder open icon -->
|
||||||
|
<path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z" fill="#313244"/>
|
||||||
|
<path d="M2 10h20" stroke="#6c7086"/>
|
||||||
|
<!-- Search magnifier -->
|
||||||
|
<circle cx="17" cy="15" r="3" fill="#1e1e2e" stroke="#a6e3a1" stroke-width="1.5"/>
|
||||||
|
<line x1="19.5" y1="17.5" x2="22" y2="20" stroke="#a6e3a1" stroke-width="1.5"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 529 B |
6
src/Mod/Create/resources/icons/silo-manifest.svg
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#cba6f7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
|
<!-- Info circle -->
|
||||||
|
<circle cx="12" cy="12" r="10" fill="#313244"/>
|
||||||
|
<line x1="12" y1="16" x2="12" y2="12" stroke="#89dceb" stroke-width="2"/>
|
||||||
|
<circle cx="12" cy="8" r="0.5" fill="#89dceb" stroke="#89dceb"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 377 B |
6
src/Mod/Create/resources/icons/silo-metadata.svg
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#cba6f7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
|
<!-- Tag shape -->
|
||||||
|
<path d="M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z" fill="#313244"/>
|
||||||
|
<!-- Tag hole -->
|
||||||
|
<circle cx="7" cy="7" r="1.5" fill="#cba6f7" stroke="none"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 373 B |