restyling

This commit is contained in:
Roland Gruber 2022-01-10 19:19:12 +01:00
parent fa693acefe
commit 40059575a9
8 changed files with 28 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 551 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 965 B

8
lam/graphics/link.svg Normal file
View file

@ -0,0 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" version="1.1">
<defs>
<style id="current-color-scheme" type="text/css">
.ColorScheme-Text { color:#444444; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
</style>
</defs>
<path style="fill:currentColor" class="ColorScheme-Text" d="M 5,3 C 0,3 0,8 0,8 0,8 0,13 5,13 H 7 V 11 H 5 C 2,11 2,8 2,8 2,8 2,5 5,5 H 7 V 3 Z M 9,3 V 5 H 11 C 14,5 14,8 14,8 14,8 14,11 11,11 H 9 V 13 H 11 C 16,13 16,8 16,8 16,8 16,3 11,3 Z M 5,7 V 9 H 11 V 7 Z"/>
</svg>

After

Width:  |  Height:  |  Size: 648 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

11
lam/graphics/phone.svg Normal file
View file

@ -0,0 +1,11 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" version="1">
<rect style="opacity:0.2" width="20" height="30" x="6" y="2" rx="1.5" ry="1.5"/>
<rect style="fill:#8e8e8e" width="20" height="30" x="6" y="1" rx="1.5" ry="1.5"/>
<rect style="fill:#333333" width="18" height="22" x="7" y="4"/>
<rect style="fill:#333333" width="4" height="1" x="14" y="2" rx=".5" ry=".492"/>
<rect style="fill:#4d4d4d" width="4" height="3" x="14" y="27" rx="1" ry="1"/>
<path style="fill:#ffffff;opacity:0.2" d="M 7.5 1 C 6.669 1 6 1.669 6 2.5 L 6 3.5 C 6 2.669 6.669 2 7.5 2 L 24.5 2 C 25.331 2 26 2.669 26 3.5 L 26 2.5 C 26 1.669 25.331 1 24.5 1 L 7.5 1 z"/>
<rect style="fill:#4d4d4d" width="3" height="1" x="20" y="28" rx=".5" ry=".5"/>
<rect style="fill:#4d4d4d" width="3" height="1" x="9" y="28" rx=".5" ry=".5"/>
<circle style="fill:#333333" cx="19.5" cy="2.5" r=".5"/>
</svg>

After

Width:  |  Height:  |  Size: 885 B

8
lam/graphics/undo.svg Normal file
View file

@ -0,0 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<defs>
<style id="current-color-scheme" type="text/css">
.ColorScheme-Text { color:#444444; } .ColorScheme-Highlight { color:#4285f4; } .ColorScheme-NeutralText { color:#ff9800; } .ColorScheme-PositiveText { color:#4caf50; } .ColorScheme-NegativeText { color:#f44336; }
</style>
</defs>
<path style="fill:currentColor" class="ColorScheme-Text" d="M 7 2 L 2 5 L 7 8 L 7 6 L 10 6 C 11.6793 6 13 7.3207 13 9 C 13 10.6793 11.6793 12 10 12 L 5 12 L 5 14 L 10 14 C 12.7527 14 15 11.7527 15 9 C 15 6.2473 12.7527 4 10 4 L 7 4 L 7 2 z"/>
</svg>

After

Width:  |  Height:  |  Size: 631 B

View file

@ -260,7 +260,7 @@ class TreeView {
$icon = 'world-color.svg'; $icon = 'world-color.svg';
} }
elseif (in_array('alias', $objectClasses)) { elseif (in_array('alias', $objectClasses)) {
$icon = 'alias.png'; $icon = 'link.svg';
} }
elseif (in_array('document', $objectClasses)) { elseif (in_array('document', $objectClasses)) {
$icon = 'txt.svg'; $icon = 'txt.svg';