aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/data/style.css
diff options
context:
space:
mode:
authorGravatar Brendan Taylor <whateley@gmail.com>2011-03-06 03:06:26 -0700
committerGravatar Brendan Taylor <whateley@gmail.com>2011-03-06 03:06:26 -0700
commitbece24e3824d11c08fad9c6338f446ee29d4913f (patch)
tree3320ba9d63b7c7a43160539eebd1ab0ac1cd8224 /examples/data/style.css
parent941b92e60d4f636e16ab0d3bd0814073b27a0642 (diff)
do link hint styling in user stylesheet.
Diffstat (limited to 'examples/data/style.css')
-rw-r--r--examples/data/style.css38
1 files changed, 18 insertions, 20 deletions
diff --git a/examples/data/style.css b/examples/data/style.css
index f9b111e..45bb56f 100644
--- a/examples/data/style.css
+++ b/examples/data/style.css
@@ -1,25 +1,23 @@
-.uzbl_highlight { background-color: yellow;}
-.uzbl_h_first { background-color: lightgreen;}
-
-.uzbl_follow { border-style: dotted;
- border-width: thin;
+#uzbl_link_hints > span {
+ background-color: #aaff00;
+ color: black;
+ border: 2px solid #556600;
+ font-family: Verdana;
+ font-size: 9px;
+ font-weight: bold;
+ font-variant: normal;
+ line-height: 9px;
+ margin: 0px;
+ width: auto; /* fix broken rendering on w3schools.com */
+ padding: 1px;
+ z-index: 1000;
+ text-decoration: none;
+ -webkit-transform: translate(-5px,-5px);
}
-#uzbl_hint > div {
- display: inline;
- border: 2px solid #4a6600;
- background-color: #b9ff00;
- color: black;
- font-size: 9px;
- font-weight: bold;
- line-height: 9px;
- margin: 0px;
- padding: 0px;
- position: absolute;
- z-index: 1000;
- -webkit-border-radius: 6px;
- text-decoration: none;
- -wekit-transform: scale(1) rotate(0deg) translate(-6px,-5px);
+/* we can have different colours for different types of hints! */
+#uzbl_link_hints.new-window > span {
+ background-color: #ffff00;
}
/* vim:set et ts=4: */