diff --git a/browser/components/RealtimeNotification.styl b/browser/components/RealtimeNotification.styl index 7eeebb37..a79a4998 100644 --- a/browser/components/RealtimeNotification.styl +++ b/browser/components/RealtimeNotification.styl @@ -1,11 +1,8 @@ .notification-area z-index 1000 font-size 12px - position absolute - bottom 20px - width 100% - float left - height 30px + position: relative + top: 12px background-color none .notification-link diff --git a/browser/main/Detail/TagSelect.js b/browser/main/Detail/TagSelect.js index 49616d16..3e1efb86 100644 --- a/browser/main/Detail/TagSelect.js +++ b/browser/main/Detail/TagSelect.js @@ -38,6 +38,10 @@ class TagSelect extends React.Component { } } + handleNewTagBlur (e) { + this.submitTag() + } + removeLastTag () { let { value } = this.props @@ -135,6 +139,7 @@ class TagSelect extends React.Component { placeholder='Add tag...' onChange={(e) => this.handleNewTagInputChange(e)} onKeyDown={(e) => this.handleNewTagInputKeyDown(e)} + onBlur={(e) => this.handleNewTagBlur(e)} /> )