Cannot add twitter credentials

Fixes #913
This commit is contained in:
Nick O'Leary 2016-06-20 14:25:11 +01:00
parent 343588b2a0
commit f30ce1f9eb
3 changed files with 12 additions and 7 deletions

View File

@ -1,7 +1,8 @@
#### xxx: unreleased
#### 0.14.2: Maintenance Release
Fixes
- Cannot add new twitter credentials. Fixes #913
- Support array references in Debug property field
#### 0.14.1: Maintenance Release

View File

@ -39,8 +39,7 @@ RED.tray = (function() {
if (options.buttons) {
for (var i=0;i<options.buttons.length;i++) {
var button = options.buttons[i];
var b = $('<button>').appendTo(buttonBar);
var b = $('<button>').button().appendTo(buttonBar);
if (button.id) {
b.attr('id',button.id);
}

View File

@ -83,8 +83,12 @@
border-color: $editor-button-background-primary;
color: $editor-button-color-primary;
background: $editor-button-background-primary;
&:not(.disabled):hover {
&.disabled, &.ui-state-disabled {
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;
background: $editor-button-background-primary-hover;
color: $editor-button-color-primary !important;
@ -101,8 +105,6 @@
}
&.leftButton {
float: left;
margin-top: 1px;
@ -110,6 +112,9 @@
&:not(.leftButton):not(:last-child) {
margin-right: 16px;
}
&.ui-state-disabled {
opacity: 1;
}
}
}