summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-05-23 02:12:34 +0100
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-05-23 02:12:34 +0100
commitfef9a28734a29b115328cd63e9f16911871c60b5 (patch)
treeaff4b76995337bbe06cda1e82b87d29dd47dc63a
parentf190a7adb4befd3a533e9c2bbe4911324e9ebba0 (diff)
add an icon for symbolic links
-rw-r--r--.gitignore1
-rw-r--r--Makefile1
-rw-r--r--style.css2
3 files changed, 4 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 40cf349..3f38742 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,6 +3,7 @@
dir.png
file.png
iso.png
+link.png
parent.png
pkg.png
repo.png
diff --git a/Makefile b/Makefile
index 8527528..24d7c46 100644
--- a/Makefile
+++ b/Makefile
@@ -15,6 +15,7 @@ default: PHONY all
+link.png = /usr/share/icons/oxygen/base/16x16/emblems/emblem-symbolic-link.png
dir.png = /usr/share/icons/oxygen/base/16x16/mimetypes/inode-directory.png
file.png = /usr/share/icons/oxygen/base/16x16/mimetypes/unknown.png
iso.png = /usr/share/icons/oxygen/base/16x16/devices/media-optical.png
diff --git a/style.css b/style.css
index 7308dde..3d6a70c 100644
--- a/style.css
+++ b/style.css
@@ -38,6 +38,8 @@ td a:before {
tr.hidden { /*opacity: 0.5;*/ display: none; }
+tr.link a:before { content: url("link.png"); }
+
tr.dir a:after { content: "/"; }
tr.dir a:before { content: url("dir.png"); }
tr.dir.parent a:before { content: url("parent.png"); }