diff options
author | Doug Kearns <dougkearns@gmail.com> | 2007-10-19 15:20:55 +0000 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2007-10-19 15:20:55 +0000 |
commit | 2929c39484fab86920b14f0a1a2ad68f0a92da43 (patch) | |
tree | d3c22a2af4f677c9fb1955b1d5867b5c4139586c /skin | |
parent | 232cd05f4accd493c8d71635e561f2ce4e590795 (diff) | |
download | pentadactyl-2929c39484fab86920b14f0a1a2ad68f0a92da43.tar.gz |
merge hyperlinked MOW URLs feature
Diffstat (limited to 'skin')
-rw-r--r-- | skin/vimperator.css | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/skin/vimperator.css b/skin/vimperator.css index 884e12b5..c4812b2d 100644 --- a/skin/vimperator.css +++ b/skin/vimperator.css @@ -4,7 +4,7 @@ #vimperator-bufferwindow, #vimperator-completion, #vimperator-previewwindow { -moz-user-focus: ignore; - overflow: -moz-scrollbars-none; + overflow: -moz-scrollbars-none !important; /* does not seem to work fully */ border-width: 0px !important; -moz-appearance: none !important; /* prevent an ugly 3D border */ } @@ -112,11 +112,21 @@ background-color: #FF6060 !important; /* light red */ color: black !important; } +.hl-URL { + background-color: white; + color: green; + text-decoration: none; +} +a.hl-URL:hover { + text-decoration: underline; +} /* MOW */ #vimperator-multiline-output { overflow: hidden; + background-color: white; + color: black; } #vimperator-multiline-output-content { @@ -139,4 +149,8 @@ padding: 0px 2px; } +#vimperator-multiline-output-content a { + cursor: pointer; +} + /* vim: set fdm=marker sw=4 ts=4 et: */ |