diff options
author | bptato <nincsnevem662@gmail.com> | 2023-01-02 23:47:55 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2023-01-02 23:47:55 +0100 |
commit | 1a9acf7046565ac281834a5cf2c1d590da159e86 (patch) | |
tree | 91bd57c02234fa0e427069ed3ca168e221f5ab26 /res | |
parent | a13955ef170b64f27fc83e67b30b83bb56624a19 (diff) | |
download | chawan-1a9acf7046565ac281834a5cf2c1d590da159e86.tar.gz |
ua.css: only highlight a[href]
Diffstat (limited to 'res')
-rw-r--r-- | res/ua.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/res/ua.css b/res/ua.css index 3a31fb9a..99134909 100644 --- a/res/ua.css +++ b/res/ua.css @@ -192,11 +192,11 @@ p { margin-bottom: 1em; } -a { +a[href] { color: yellow; } -a:hover { +a[href]:hover { text-decoration: underline; } |