1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Fix editableList sizing on safari

This commit is contained in:
Nick O'Leary 2016-09-30 10:46:13 +01:00
parent 7ed9e7cdd4
commit 2e87ebe800
3 changed files with 5 additions and 7 deletions

View File

@ -66,12 +66,7 @@
that.addItem({});
});
}
if (this.element.css("position") === "absolute") {
this.element.css("position","static");
this.topContainer.css("position","absolute");
this.uiContainer.css("position","absolute");
["top","left","bottom","right"].forEach(function(s) {
var v = that.element.css(s);
if (s!=="auto" && s!=="") {
@ -80,6 +75,10 @@
that.element.css(s,'auto');
}
})
this.element.css("position","static");
this.topContainer.css("position","absolute");
this.uiContainer.css("position","absolute");
}
this.uiContainer.addClass("red-ui-editableList-container");

View File

@ -601,7 +601,7 @@ RED.palette.editor = (function() {
initInstallTab();
})
packageList = $('<ol>',{id:"palette-module-list", style:"position: absolute;top: 78px;bottom: 0;left: 0;right: 0px;"}).appendTo(installTab).editableList({
packageList = $('<ol>',{style:"position: absolute;top: 78px;bottom: 0;left: 0;right: 0px;"}).appendTo(installTab).editableList({
addButton: false,
addItem: function(container,i,object) {
if (object.more) {

View File

@ -90,7 +90,6 @@
@include workspace-button;
color: $workspace-button-toggle-color !important;
background:$workspace-button-background-active;
transition: all 0.1s ease-in-out;
margin-bottom: 1px;
&.selected:not(.disabled) {
color: $workspace-button-toggle-color-selected !important;