Load plugin from JSON description:
${self._view.pluginInput}
diff --git a/src/app/ui/draggableContent.js b/src/app/ui/draggableContent.js
index c341117843..0ad3379456 100644
--- a/src/app/ui/draggableContent.js
+++ b/src/app/ui/draggableContent.js
@@ -8,27 +8,28 @@ var css = csjs`
.containerDraggableModal {
position: absolute;
z-index: 1000;
- background-color: ${styles.appProperties.quaternary_BackgroundColor};
+ background-color: ${styles.appProperties.light_BackgroundColor};
text-align: center;
width: 500px;
height: 500px;
- border: 2px solid ${styles.appProperties.solidBorderBox_BorderColor};
+ border: 1px solid ${styles.appProperties.solidBorderBox_BorderColor};
}
.headerDraggableModal {
cursor: move;
z-index: 10;
color: ${styles.appProperties.mainText_Color};
- background-color: ${styles.appProperties.quaternary_BackgroundColor};
- border-bottom: 2px solid ${styles.appProperties.solidBorderBox_BorderColor};
+ background-color: ${styles.appProperties.primary_BackgroundColor};
+ border-bottom: 1px solid ${styles.appProperties.solidBorderBox_BorderColor};
text-overflow: ellipsis;
overflow-x: hidden;
}
.modalActions {
float: right;
+ color: ${styles.appProperties.solidBorderBox_BorderColor};
}
-
+
.modalAction {
padding-right: 1px;
padding-left: 1px;
@@ -41,6 +42,7 @@ module.exports =
class DraggableContent {
constructor (closeCb) {
this.closeCb = closeCb
+ this.isMaximised = false
}
render (title, url, content) {
@@ -52,7 +54,7 @@ module.exports =
{ this.minimize() }} class="fa fa-window-minimize ${css.modalAction}">
{ this.maximise() }} class="fa fa-window-maximize ${css.modalAction}">
- { this.close() }} class="fa fa-window-close ${css.modalAction}">
+ { this.close() }} class="fa fa-window-close-o ${css.modalAction}">