diff options
| author | Peter Parks | 2011-11-01 15:57:27 -0700 | 
|---|---|---|
| committer | Peter Parks | 2012-01-15 11:47:10 -0800 | 
| commit | d8342ce8bef66c882f197c64189dacc45d3b38c5 (patch) | |
| tree | 8c0eb0329ea3edb9f49f8a712088ba799e02aef8 | |
| parent | ae59d3fa7ec288832bd8a0e6b41428e66b5ab1e0 (diff) | |
| download | vimium-d8342ce8bef66c882f197c64189dacc45d3b38c5.tar.bz2 | |
Added additional css properties to span definition that could possibly be overwritten by websites.
| -rw-r--r-- | background_page.html | 12 | 
1 files changed, 11 insertions, 1 deletions
diff --git a/background_page.html b/background_page.html index 7b14f11b..c0332d7f 100644 --- a/background_page.html +++ b/background_page.html @@ -60,13 +60,23 @@        'left:-1px;' +        'white-space:nowrap;' +      '}' + -    'div .internalVimiumHintMarker span {' + +    '.internalVimiumHintMarker span {' +        'color: black;' + +      'text-decoration: none;' +        'font-weight: bold;' +        'font-size: 12px;' +        'font-style: normal;' + +      'letter-spacing: 0;' + +      'text-transform: none;' + +      'text-align: left;' + +      'text-indent: 0;' +        'line-height: 100%;' +        'font-family: "Helvetica Neue", "Helvetica", "Arial", "Sans";' + +      'padding: 0;' + +      'margin: 0;' + +      'float: none;' + +      'border: none;' + +      'background: none;' +      '}' +      '.internalVimiumHintMarker > .matchingCharacter {' +        'color:#C79F0B;' +  | 
