diff options
| author | Phil Crosby | 2014-07-29 18:45:42 -0700 |
|---|---|---|
| committer | Phil Crosby | 2014-07-29 18:45:42 -0700 |
| commit | 0803fee554f1edcece6da4a082c1d8cb9bd1cdcf (patch) | |
| tree | 69f9e2a642bf3248f476d88a4ac0c7b388198c81 | |
| parent | 921471902b95c52e8552999bfa49b26c11cc6307 (diff) | |
| parent | 0c3523da2972a58d01aa0530a9941e8f6b45cbee (diff) | |
| download | vimium-0803fee554f1edcece6da4a082c1d8cb9bd1cdcf.tar.bz2 | |
Merge pull request #1105 from natalieperna/master
Replace upgrade notification close x with ×
| -rw-r--r-- | content_scripts/vimium.css | 4 | ||||
| -rw-r--r-- | content_scripts/vimium_frontend.coffee | 2 | ||||
| -rw-r--r-- | pages/help_dialog.html | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/content_scripts/vimium.css b/content_scripts/vimium.css index acfc806c..a63fc3a5 100644 --- a/content_scripts/vimium.css +++ b/content_scripts/vimium.css @@ -175,14 +175,14 @@ div#vimiumHelpDialog div.advanced { display: none; } div#vimiumHelpDialog div.advanced td:nth-of-type(3) { color: #555; } div#vimiumHelpDialog a.closeButton { position:absolute; - right:10px; + right:7px; top:5px; font-family:"courier new"; font-weight:bold; color:#555; text-decoration:none; padding-left:10px; - font-size:16px; + font-size:20px; } div#vimiumHelpDialog a { text-decoration: underline; diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee index fdd008aa..e45c4dfe 100644 --- a/content_scripts/vimium_frontend.coffee +++ b/content_scripts/vimium_frontend.coffee @@ -930,7 +930,7 @@ HUD = HUD.upgradeNotificationElement().innerHTML = "Vimium has been updated to <a class='vimiumReset' href='https://chrome.google.com/extensions/detail/dbepggeogbaibhgnhhndojpepiihcmeb'> - #{version}</a>.<a class='vimiumReset close-button' href='#'>x</a>" + #{version}</a>.<a class='vimiumReset close-button' href='#'>×</a>" links = HUD.upgradeNotificationElement().getElementsByTagName("a") links[0].addEventListener("click", HUD.onUpdateLinkClicked, false) links[1].addEventListener "click", (event) -> diff --git a/pages/help_dialog.html b/pages/help_dialog.html index 2a69ea03..0884f2cd 100644 --- a/pages/help_dialog.html +++ b/pages/help_dialog.html @@ -7,7 +7,7 @@ page with the up-to-date key bindings when the dialog is shown. --> <div id="vimiumHelpDialog" class="vimiumReset"> <a class="vimiumReset optionsPage" href="#">Options</a> - <a class="vimiumReset closeButton" href="#">x</a> + <a class="vimiumReset closeButton" href="#">×</a> <div id="vimiumTitle" class="vimiumReset"><span class="vimiumReset" style="color:#2f508e">Vim</span>ium {{title}}</div> <div class="vimiumReset vimiumColumn"> <table class="vimiumReset"> |
