- Fix Explorer toolbar color

This commit is contained in:
Paulo Gustavo Veiga 2012-06-24 20:53:31 -03:00
parent ec41dafcf5
commit 9213dc6aa3
3 changed files with 3 additions and 1 deletions

View File

@ -475,7 +475,7 @@ mindplot.widget.Menu = new Class({
if ($(buttonId)) {
var tooltip = text;
if (shortcut) {
shortcut = Browser.Platform.mac ? shortcut.replace("meta+", "⌘") : shortcut.replace("meta+", "ctrl");
shortcut = Browser.Platform.mac ? shortcut.replace("meta+", "⌘") : shortcut.replace("meta+", "ctrl+");
tooltip = tooltip + " (" + shortcut + ")";
}
new mindplot.widget.KeyboardShortcutTooltip($(buttonId), tooltip);

View File

@ -17,6 +17,7 @@ div#mindplot {
width: 100%;
height:100%;
border: 0;
overflow: hidden;
}
div#small_error_icon {

View File

@ -1,6 +1,7 @@
div#toolbar {
width: 100%;
height: @header-toolbar-height;
background-color: rgb(229, 227, 209);
background-image: linear-gradient(bottom, rgb(229, 227, 209) 47%, rgb(252, 250, 237) 87%);
background-image: -o-linear-gradient(bottom, rgb(229, 227, 209) 47%, rgb(252, 250, 237) 87%);
background-image: -moz-linear-gradient(bottom, rgb(229, 227, 209) 47%, rgb(252, 250, 237) 87%);