diff options
| author | Adam Lindberg | 2012-01-20 10:37:27 +0100 | 
|---|---|---|
| committer | Adam Lindberg | 2012-01-20 10:37:27 +0100 | 
| commit | bc363546d87e3d9376249846fbc290c63d4b26b1 (patch) | |
| tree | 3abae33a8307fdb7e811eaf1a4c7658a62ffd744 | |
| parent | 3d72775b3c5100a44e441eda89120b7de920af45 (diff) | |
| download | vimium-bc363546d87e3d9376249846fbc290c63d4b26b1.tar.bz2 | |
Re-style link hints
| -rw-r--r-- | background_page.html | 4 | ||||
| -rw-r--r-- | vimium.css | 19 | 
2 files changed, 16 insertions, 7 deletions
| diff --git a/background_page.html b/background_page.html index 814c0687..71208d12 100644 --- a/background_page.html +++ b/background_page.html @@ -31,9 +31,9 @@      filterLinkHints: false,      userDefinedLinkHintCss:        "#vimiumHintMarkerContainer .vimiumHintMarker \n/* linkhint boxes */ " + -      "{\nbackground-color:yellow;\nborder:1px solid #E3BE23;\n}\n\n" + +      "{\nborder: 1px solid #AA852F;\n}\n\n" +        "#vimiumHintMarkerContainer .vimiumHintMarker span \n/* linkhint text */ " + -      "{\ncolor: black;\nfont-weight: bold;\nfont-size: 12px;\n}\n\n" + +      "{\nfont-weight: bold;\n}\n\n" +        "#vimiumHintMarkerContainer .vimiumHintMarker > .matchingCharacter {\n\n}",      excludedUrls: "http*://mail.google.com/*\n" +                    "http*://www.google.com/reader/*\n", @@ -50,23 +50,32 @@ tr.vimiumReset {  }  /* Linkhints CSS */ +  div.internalVimiumHintMarker {    position: absolute; -  background-color: yellow; -  border: 1px solid #E3BE23;    display: block;    top: -1px;    left: -1px; -  padding: 0 1px; -  box-shadow: rgba(0, 0, 0, 0.3) 2px 2px; + +  font-size: 10px; +  padding: 2px 4px 3px 4px; +  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFF785), color-stop(100%,#FFC542)); +  border: solid 1px #C38A22; +  border-radius: 3px; +  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.3);  }  div.internalVimiumHintMarker span { +  color: #302505; +  font-family: Helvetica, Arial, sans-serif;    font-weight: bold; +  font-size: 10px; +  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);  }  div.internalVimiumHintMarker > .matchingCharacter { -  color: #C79F0B; +  color: white; +  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);  }  /* Help Dialog CSS */ | 
