aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorGravatar Brendan Taylor <whateley@gmail.com>2011-03-06 09:38:09 -0700
committerGravatar Brendan Taylor <whateley@gmail.com>2011-03-06 09:38:09 -0700
commite4c7af276c9ad363f26d34a672508a7acf31dd79 (patch)
tree5c4f41de6f745a385965fa2c1c04a2091a9476a3 /examples
parenta0a11b1b1ad90a16641d0a87b0d43b1fabdabb08 (diff)
tidy up link hinting CSS, add !important rules
Diffstat (limited to 'examples')
-rw-r--r--examples/data/style.css30
1 files changed, 16 insertions, 14 deletions
diff --git a/examples/data/style.css b/examples/data/style.css
index 45bb56f..ff055d1 100644
--- a/examples/data/style.css
+++ b/examples/data/style.css
@@ -1,23 +1,25 @@
#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;
+ z-index: 1000 !important;
+
+ background-color: #aaff00 !important;
+ border: 2px solid #556600 !important;
+ margin: 0 !important;
+ padding: 1px !important;
+
+ color: black !important;
+ font-size: 9px !important;
+ line-height: 9px !important;
+ font-weight: bold !important;
+ font-variant: normal !important;
+ text-decoration: none !important;
+
-webkit-transform: translate(-5px,-5px);
+ /* opacity: 0.7; */
}
/* we can have different colours for different types of hints! */
#uzbl_link_hints.new-window > span {
- background-color: #ffff00;
+ background-color: #ffff00 !important;
}
/* vim:set et ts=4: */