]> git.eshelyaron.com Git - emacs.git/commitdiff
Add dot SVG icons
authorYuan Fu <casouri@gmail.com>
Fri, 15 Sep 2023 07:28:31 +0000 (00:28 -0700)
committerYuan Fu <casouri@gmail.com>
Fri, 15 Sep 2023 07:44:23 +0000 (00:44 -0700)
The advantage of SVG dots over Unicode dots is that their size is
fixed.  With Unicode dots, the size varies with the font.

Dot icons can be useful for status indicator: green dot for online,
red dot for offline, etc.

* etc/images/symbols/dot_large_16.pbm:
* etc/images/symbols/dot_large_16.svg:
* etc/images/symbols/dot_medium_16.pbm:
* etc/images/symbols/dot_medium_16.svg:
* etc/images/symbols/dot_small_16.pbm:
* etc/images/symbols/dot_small_16.svg: New file.

etc/images/symbols/dot_large_16.pbm [new file with mode: 0644]
etc/images/symbols/dot_large_16.svg [new file with mode: 0644]
etc/images/symbols/dot_medium_16.pbm [new file with mode: 0644]
etc/images/symbols/dot_medium_16.svg [new file with mode: 0644]
etc/images/symbols/dot_small_16.pbm [new file with mode: 0644]
etc/images/symbols/dot_small_16.svg [new file with mode: 0644]

diff --git a/etc/images/symbols/dot_large_16.pbm b/etc/images/symbols/dot_large_16.pbm
new file mode 100644 (file)
index 0000000..03154ad
Binary files /dev/null and b/etc/images/symbols/dot_large_16.pbm differ
diff --git a/etc/images/symbols/dot_large_16.svg b/etc/images/symbols/dot_large_16.svg
new file mode 100644 (file)
index 0000000..dcc8eee
--- /dev/null
@@ -0,0 +1,3 @@
+<svg width="16" height="16" viewBox="0 0 16 16"  xmlns="http://www.w3.org/2000/svg">
+<circle cx="8" cy="8" r="6" />
+</svg>
diff --git a/etc/images/symbols/dot_medium_16.pbm b/etc/images/symbols/dot_medium_16.pbm
new file mode 100644 (file)
index 0000000..d5af22f
Binary files /dev/null and b/etc/images/symbols/dot_medium_16.pbm differ
diff --git a/etc/images/symbols/dot_medium_16.svg b/etc/images/symbols/dot_medium_16.svg
new file mode 100644 (file)
index 0000000..18250ef
--- /dev/null
@@ -0,0 +1,3 @@
+<svg width="16" height="16" viewBox="0 0 16 16"  xmlns="http://www.w3.org/2000/svg">
+<circle cx="8" cy="8" r="4" />
+</svg>
diff --git a/etc/images/symbols/dot_small_16.pbm b/etc/images/symbols/dot_small_16.pbm
new file mode 100644 (file)
index 0000000..6feef99
Binary files /dev/null and b/etc/images/symbols/dot_small_16.pbm differ
diff --git a/etc/images/symbols/dot_small_16.svg b/etc/images/symbols/dot_small_16.svg
new file mode 100644 (file)
index 0000000..1d6a279
--- /dev/null
@@ -0,0 +1,3 @@
+<svg width="16" height="16" viewBox="0 0 16 16"  xmlns="http://www.w3.org/2000/svg">
+<circle cx="8" cy="8" r="2" />
+</svg>