mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-11 01:33:24 +01:00
css bug fixing
This commit is contained in:
parent
412518f264
commit
ac27edae21
@ -28,7 +28,7 @@ mindplot.widget.IconPanel = new Class({
|
|||||||
},
|
},
|
||||||
|
|
||||||
buildPanel:function () {
|
buildPanel:function () {
|
||||||
var content = $('<div class="toolbarPanel" id="IconsPanel"></div>').css({width: 253, height: 230});
|
var content = $('<div class="toolbarPanel" id="IconsPanel"></div>').css({width: 245, height: 230});
|
||||||
content.on('click', function (event) {
|
content.on('click', function (event) {
|
||||||
event.stopPropagation()
|
event.stopPropagation()
|
||||||
});
|
});
|
||||||
|
@ -46,7 +46,8 @@ mindplot.widget.ToolbarPaneItem = new Class({
|
|||||||
return me._updateSelectedItem();
|
return me._updateSelectedItem();
|
||||||
},
|
},
|
||||||
className: 'toolbarPaneTip',
|
className: 'toolbarPaneTip',
|
||||||
trigger: 'manual'
|
trigger: 'manual',
|
||||||
|
template: '<div class="popover popoverGray" role="tooltip"><div class="arrow arrowGray"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
|
||||||
});
|
});
|
||||||
|
|
||||||
this._tip.addEvent('hide', function() {
|
this._tip.addEvent('hide', function() {
|
||||||
|
@ -153,6 +153,15 @@ div.shareModalDialog {
|
|||||||
|
|
||||||
.popoverBlack.bottom .arrow:after{
|
.popoverBlack.bottom .arrow:after{
|
||||||
border-bottom-color: black;
|
border-bottom-color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
.popoverGray {
|
||||||
|
background: #e4e2d2;
|
||||||
|
box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
|
||||||
|
border: 3px double #bebebe;
|
||||||
|
}
|
||||||
|
|
||||||
|
.popoverGray.bottom .arrow:after{
|
||||||
|
border-bottom-color: #e4e2d2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user