1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-08 05:54:12 +01:00

merge hyperlinked MOW URLs feature

This commit is contained in:
Doug Kearns
2007-10-19 15:20:55 +00:00
parent 232cd05f4a
commit 2929c39484
4 changed files with 62 additions and 29 deletions

View File

@@ -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: */