diff options
author | Case Duckworth | 2015-03-03 01:51:36 -0700 |
---|---|---|
committer | Case Duckworth | 2015-03-03 01:51:36 -0700 |
commit | 15fe609e749de5db4209482b1ada28f170c5543f (patch) | |
tree | 994f0d0a4584eed2bd72bb896cc0c125a95e5fcd | |
parent | Revert 2 previous commits (diff) | |
download | autocento-15fe609e749de5db4209482b1ada28f170c5543f.tar.gz autocento-15fe609e749de5db4209482b1ada28f170c5543f.zip |
Remove link underline for external links
-rw-r--r-- | css/common.css | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/css/common.css b/css/common.css index b9e32de..b30bb35 100644 --- a/css/common.css +++ b/css/common.css | |||
@@ -57,15 +57,15 @@ a:active { | |||
57 | text-decoration: underline; | 57 | text-decoration: underline; |
58 | } | 58 | } |
59 | /* External Links */ | 59 | /* External Links */ |
60 | a.external:link { | 60 | a[href^="http"]:link { |
61 | text-decoration: underline; | 61 | text-decoration: none; |
62 | } | 62 | } |
63 | a.external:visited { | 63 | a[href^="http"]:visited { |
64 | } | 64 | } |
65 | a.external:hover { | 65 | a[href^="http"]:hover { |
66 | text-decoration: underline; | 66 | text-decoration: underline; |
67 | } | 67 | } |
68 | a.external:active { | 68 | a[href^="http"]:active { |
69 | text-decoration: underline; | 69 | text-decoration: underline; |
70 | } | 70 | } |
71 | /* }}} */ | 71 | /* }}} */ |