diff options
| author | Peter Parks | 2011-11-02 14:10:54 -0700 |
|---|---|---|
| committer | Peter Parks | 2012-01-15 11:52:03 -0800 |
| commit | 44c36c6ab1c6111f25e535fabfd3b5c75fb4120e (patch) | |
| tree | 7fb0704fe904de804ddaba3617b083515ac2b202 /completionDialog.js | |
| parent | 7745b49e9e90f043f4e494f1fe024cbd5b833de5 (diff) | |
| download | vimium-44c36c6ab1c6111f25e535fabfd3b5c75fb4120e.tar.bz2 | |
Adjusted CSS for linkhints, help menu, text search, and bookmarks search UI elements. They should now be able to stand up to base element declarations created by a website.
Added comments to the linkhints css settings on the options page and set default properties that a user would change to make it clear where they should be modified.
Added a dropshadow to the linkhints to make them stand out better against similarly colored site backgrounds.
Diffstat (limited to 'completionDialog.js')
| -rw-r--r-- | completionDialog.js | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/completionDialog.js b/completionDialog.js index f264eb2a..7a01a10d 100644 --- a/completionDialog.js +++ b/completionDialog.js @@ -149,30 +149,36 @@ "color: black;" + "padding:10px;"+ "border-radius: 4px;" + - "font-family: Lucida Grande, Arial, Sans;" + "}"+ + ".vimium-completions {"+ - "width:400px;"+ + "width:400px;"+ "}"+ + ".vimium-completions .vimium-searchBar {"+ - "height: 15px;"+ - "border-bottom: 1px solid #b3b3b3;"+ + "height: 15px;"+ + "border-bottom: 1px solid #b3b3b3;"+ "}"+ + ".vimium-completions .vimium-searchResults {"+ "}"+ + ".vimium-completions .vimium-searchResults .vimium-selected{"+ - "background-color:#aaa;"+ - "border-radius: 4px;" + + "background-color:#aaa;"+ + "border-radius: 4px;" + "}"+ + ".vimium-completions div{"+ - "padding:4px;"+ + "padding:4px;"+ "}"+ + ".vimium-completions div strong{"+ - "color: black;" + - "font-weight:bold;"+ + "color: black;" + + "font-weight:bold;"+ "}"+ + ".vimium-completions .vimium-noResults{"+ - "color:#555;"+ + "color:#555;"+ "}"; window.CompletionDialog = CompletionDialog; |
