mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-14 10:47:57 +01:00
- Fix Explorer toolbar color
This commit is contained in:
parent
ec41dafcf5
commit
9213dc6aa3
@ -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);
|
||||
|
@ -17,6 +17,7 @@ div#mindplot {
|
||||
width: 100%;
|
||||
height:100%;
|
||||
border: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
div#small_error_icon {
|
||||
|
@ -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%);
|
||||
|
Loading…
Reference in New Issue
Block a user