Skip to content

Commit

Permalink
Merge pull request #34 from dlh/style-fix
Browse files Browse the repository at this point in the history
Fix for issue #32, “Link hints have incorrect style / are illegible”
  • Loading branch information
guyht committed Nov 24, 2013
2 parents 9135c7e + 721725e commit ef32802
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions vimari.safariextension/injectedcss.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,25 +38,24 @@
}

div.internalVimiumHintMarker {
position: absolute;
display: block;
position: absolute !important;
display: block !important;
top: -1px;
left: -1px;
white-space: nowrap;
overflow: hidden;
font-size: 11px;
padding: 1px 3px 0px 3px;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFF785), color-stop(100%,#FFC542));
border: 1px solid #E3BE23;
border-radius: 3px;
box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.3);
white-space: nowrap !important;
overflow: hidden !important;
font-size: 11px !important;
padding: 1px 3px 0px 3px !important;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFF785), color-stop(100%,#FFC542)) !important;
border: 1px solid #E3BE23 !important;
border-radius: 3px !important;
box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.3) !important;
}

div.internalVimiumHintMarker span {
color: #000000;
font-family: Helvetica, Arial, sans-serif;
font-weight: bold;
font-size: 12px;
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

Expand Down

0 comments on commit ef32802

Please sign in to comment.