diff options
author | Oliver Poignant <oliver@poignant.se> | 2017-01-08 17:15:58 +0100 |
---|---|---|
committer | Oliver Poignant <oliver@poignant.se> | 2017-01-08 17:15:58 +0100 |
commit | 465cb9263fb1ffc9ba2d4a912847322920180caa (patch) | |
tree | 59932075b5f6426088704abac7c53f8c476da2a4 /webui | |
parent | 324c3518d4b98da5bb660c62fa1503c47139c088 (diff) | |
download | Git-Auto-Deploy-master.zip Git-Auto-Deploy-master.tar.gz Git-Auto-Deploy-master.tar.bz2 |
RefactoringHEADorigin/masterorigin/HEADmaster
Diffstat (limited to 'webui')
-rw-r--r-- | webui/src/Components/WebSocketStatus.scss | 2 | ||||
-rw-r--r-- | webui/src/Event.js | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/webui/src/Components/WebSocketStatus.scss b/webui/src/Components/WebSocketStatus.scss index d287c72..8cb8997 100644 --- a/webui/src/Components/WebSocketStatus.scss +++ b/webui/src/Components/WebSocketStatus.scss @@ -2,7 +2,7 @@ .WebSocketStatus { - position: absolute; + position: fixed; bottom: 4rem; right: .3rem; z-index: 1010; diff --git a/webui/src/Event.js b/webui/src/Event.js index e5c8394..f5a2dd2 100644 --- a/webui/src/Event.js +++ b/webui/src/Event.js @@ -21,6 +21,9 @@ class Event { if(this.event.type === "WebhookAction") return "blue"; + if(this.event.type === "DeployEvent") + return "blue"; + return "blue"; // return "purple"; } |