diff options
| author | Jez Ng | 2012-08-20 00:45:01 -0700 |
|---|---|---|
| committer | Jez Ng | 2012-08-21 00:25:29 -0700 |
| commit | 3cbe7758d7ca4cfac70c931c4c3fa58c50841d90 (patch) | |
| tree | 99f7b46a18bccbc2f2c129d6e9d6cd7e1a475826 /vimium.css | |
| parent | 872e8391feda36642d36a4c0813bcb053d808fd3 (diff) | |
| download | vimium-3cbe7758d7ca4cfac70c931c4c3fa58c50841d90.tar.bz2 | |
Style input hints as number-less overlays.
Diffstat (limited to 'vimium.css')
| -rw-r--r-- | vimium.css | 27 |
1 files changed, 18 insertions, 9 deletions
@@ -74,15 +74,6 @@ div.internalVimiumHintMarker { box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.3); } -div.internalVimiumSelectedHintMarker { - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FF6666), color-stop(100%,#FF3333)) !important; - border: solid 1px #993333 !important; -} - -div.internalVimiumSelectedHintMarker span { - color: white !important; -} - div.internalVimiumHintMarker span { color: #302505; font-family: Helvetica, Arial, sans-serif; @@ -95,6 +86,24 @@ div.internalVimiumHintMarker > .matchingCharacter { color: #D4AC3A; } +/* Input hints CSS */ + +div.internalVimiumInputHint { + position: absolute; + display: block; + background-color: rgba(255, 247, 133, 0.3); + border: solid 1px #C38A22; +} + +div.internalVimiumSelectedInputHint { + background-color: rgba(255, 102, 102, 0.3); + border: solid 1px #993333 !important; +} + +div.internalVimiumSelectedInputHint span { + color: white !important; +} + /* Help Dialog CSS */ div#vimiumHelpDialog { |
