mirror of
https://github.com/node-red/node-red
synced 2024-11-21 23:48:30 +00:00
parent
343588b2a0
commit
f30ce1f9eb
@ -1,7 +1,8 @@
|
|||||||
#### xxx: unreleased
|
#### 0.14.2: Maintenance Release
|
||||||
|
|
||||||
Fixes
|
Fixes
|
||||||
|
|
||||||
|
- Cannot add new twitter credentials. Fixes #913
|
||||||
- Support array references in Debug property field
|
- Support array references in Debug property field
|
||||||
|
|
||||||
#### 0.14.1: Maintenance Release
|
#### 0.14.1: Maintenance Release
|
||||||
|
@ -39,8 +39,7 @@ RED.tray = (function() {
|
|||||||
if (options.buttons) {
|
if (options.buttons) {
|
||||||
for (var i=0;i<options.buttons.length;i++) {
|
for (var i=0;i<options.buttons.length;i++) {
|
||||||
var button = options.buttons[i];
|
var button = options.buttons[i];
|
||||||
|
var b = $('<button>').button().appendTo(buttonBar);
|
||||||
var b = $('<button>').appendTo(buttonBar);
|
|
||||||
if (button.id) {
|
if (button.id) {
|
||||||
b.attr('id',button.id);
|
b.attr('id',button.id);
|
||||||
}
|
}
|
||||||
|
@ -83,8 +83,12 @@
|
|||||||
border-color: $editor-button-background-primary;
|
border-color: $editor-button-background-primary;
|
||||||
color: $editor-button-color-primary;
|
color: $editor-button-color-primary;
|
||||||
background: $editor-button-background-primary;
|
background: $editor-button-background-primary;
|
||||||
|
&.disabled, &.ui-state-disabled {
|
||||||
&:not(.disabled):hover {
|
background: none;
|
||||||
|
color: $editor-button-color;
|
||||||
|
border-color: $form-input-border-color;
|
||||||
|
}
|
||||||
|
&:not(.disabled):not(.ui-button-disabled):hover {
|
||||||
border-color: $editor-button-background-primary-hover;
|
border-color: $editor-button-background-primary-hover;
|
||||||
background: $editor-button-background-primary-hover;
|
background: $editor-button-background-primary-hover;
|
||||||
color: $editor-button-color-primary !important;
|
color: $editor-button-color-primary !important;
|
||||||
@ -101,8 +105,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
&.leftButton {
|
&.leftButton {
|
||||||
float: left;
|
float: left;
|
||||||
margin-top: 1px;
|
margin-top: 1px;
|
||||||
@ -110,6 +112,9 @@
|
|||||||
&:not(.leftButton):not(:last-child) {
|
&:not(.leftButton):not(:last-child) {
|
||||||
margin-right: 16px;
|
margin-right: 16px;
|
||||||
}
|
}
|
||||||
|
&.ui-state-disabled {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user