diff options
| author | Niklas Baumstark | 2012-01-21 03:51:17 +0100 | 
|---|---|---|
| committer | Niklas Baumstark | 2012-04-10 23:54:36 +0200 | 
| commit | 79b0340f40149bafd48d3d23200c3e613068a9dc (patch) | |
| tree | 3fee2a8cdd18c25e458b5e15303fd7c5ff7f31b3 /vimium.css | |
| parent | ef7084e915fb67d8cb52d29d1dfbb31ae185f666 (diff) | |
| download | vimium-79b0340f40149bafd48d3d23200c3e613068a9dc.tar.bz2 | |
allow fuzzy completion of HTML-decorated content and implement this for history and bookmarks
Diffstat (limited to 'vimium.css')
| -rw-r--r-- | vimium.css | 15 | 
1 files changed, 11 insertions, 4 deletions
@@ -321,18 +321,25 @@ body.vimiumFindMode ::selection {    padding: 7px !important;    margin: 0 -7px 0 -7px !important;    font-size: 18px !important; -  color: #aaa !important; +  color: #ddd !important;  } -#fuzzybox li strong { +#fuzzybox li .fuzzyMatch {    color: red !important;  } -#fuzzybox li em { +#fuzzybox li em, #fuzzybox li .title {    color: #444 !important;    font-weight: normal !important; +} +#fuzzybox li em {    font-style: italic !important;  } +#fuzzybox li em .fuzzyMatch, #fuzzybox li .title .fuzzyMatch { +  color: #888 !important; +  font-style: inherit !important; +  font-weight: bold !important; +}  #fuzzybox li.selected {    background: #222 !important; @@ -340,7 +347,7 @@ body.vimiumFindMode ::selection {    border-radius: 4px !important;    font-weight: normal !important;  } -#fuzzybox li.selected em { +#fuzzybox li.selected em, #fuzzybox li.selected .title {    color: #666 !important;  }  | 
