Timo Tijhof | 51516cd | 2013-04-09 01:32:29 +0200 | [diff] [blame] | 1 | <!-- |
| 2 | Copyright 2013 OpenStack Foundation |
| 3 | Copyright 2013 Timo Tijhof |
| 4 | Copyright 2013 Wikimedia Foundation |
| 5 | |
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 7 | not use this file except in compliance with the License. You may obtain |
| 8 | a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, software |
| 13 | distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 14 | WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 15 | License for the specific language governing permissions and limitations |
| 16 | under the License. |
| 17 | --> |
| 18 | <!DOCTYPE html> |
| 19 | <html dir="ltr" lang="en"> |
| 20 | <head> |
| 21 | <title>Zuul Status</title> |
| 22 | <link rel="stylesheet" href="bootstrap/css/bootstrap.min.css"> |
| 23 | <link rel="stylesheet" href="bootstrap/css/bootstrap-responsive.min.css"> |
| 24 | <style> |
Joshua Hesketh | 5caf4f6 | 2014-04-01 12:52:43 +1100 | [diff] [blame^] | 25 | .zuul-change { |
| 26 | margin-bottom: 10px; |
| 27 | } |
| 28 | |
Joshua Hesketh | 4863b60 | 2014-03-21 14:19:06 +1100 | [diff] [blame] | 29 | .zuul-change-id { |
| 30 | float: right; |
| 31 | } |
Timo Tijhof | 51516cd | 2013-04-09 01:32:29 +0200 | [diff] [blame] | 32 | |
Joshua Hesketh | f1b06ca | 2014-03-21 17:01:12 +1100 | [diff] [blame] | 33 | .zuul-job-result { |
Joshua Hesketh | 6b1a218 | 2014-03-21 14:40:04 +1100 | [diff] [blame] | 34 | float: right; |
| 35 | width: 70px; |
| 36 | height: 15px; |
| 37 | margin: 0; |
| 38 | } |
| 39 | |
Joshua Hesketh | f1b06ca | 2014-03-21 17:01:12 +1100 | [diff] [blame] | 40 | .zuul-change-total-result { |
| 41 | height: 10px; |
| 42 | width: 100px; |
| 43 | margin: 5px 0 0 0; |
| 44 | } |
| 45 | |
Joshua Hesketh | 4863b60 | 2014-03-21 14:19:06 +1100 | [diff] [blame] | 46 | .zuul-spinner, |
| 47 | .zuul-spinner:hover { |
| 48 | opacity: 0; |
Joshua Hesketh | 876ca51 | 2014-03-21 18:44:22 +1100 | [diff] [blame] | 49 | transition: opacity 0.5s ease-out; |
Joshua Hesketh | 4863b60 | 2014-03-21 14:19:06 +1100 | [diff] [blame] | 50 | cursor: default; |
| 51 | pointer-events: none; |
| 52 | } |
Timo Tijhof | 51516cd | 2013-04-09 01:32:29 +0200 | [diff] [blame] | 53 | |
Joshua Hesketh | 4863b60 | 2014-03-21 14:19:06 +1100 | [diff] [blame] | 54 | .zuul-spinner-on, |
| 55 | .zuul-spinner-on:hover { |
| 56 | opacity: 1; |
Joshua Hesketh | 876ca51 | 2014-03-21 18:44:22 +1100 | [diff] [blame] | 57 | transition-duration: 0.2s; |
Joshua Hesketh | 4863b60 | 2014-03-21 14:19:06 +1100 | [diff] [blame] | 58 | cursor: progress; |
| 59 | } |
Joshua Hesketh | 6b1a218 | 2014-03-21 14:40:04 +1100 | [diff] [blame] | 60 | |
Joshua Hesketh | 5caf4f6 | 2014-04-01 12:52:43 +1100 | [diff] [blame^] | 61 | .zuul-change-cell { |
| 62 | padding-left: 5px; |
| 63 | } |
| 64 | |
Joshua Hesketh | 6b1a218 | 2014-03-21 14:40:04 +1100 | [diff] [blame] | 65 | .zuul-change-job { |
| 66 | padding: 5px 10px; |
| 67 | } |
| 68 | |
Timo Tijhof | 51516cd | 2013-04-09 01:32:29 +0200 | [diff] [blame] | 69 | </style> |
| 70 | </head> |
| 71 | <body> |
| 72 | <div class="container"> |
| 73 | <h1>Zuul Status</h1> |
Joshua Hesketh | e898716 | 2014-03-13 13:05:33 +1100 | [diff] [blame] | 74 | <p>Real-time status monitor of Zuul, the pipeline manager between Gerrit and Workers.</p> |
Timo Tijhof | 51516cd | 2013-04-09 01:32:29 +0200 | [diff] [blame] | 75 | |
| 76 | <div class="zuul-container" id="zuul-container"></div> |
| 77 | </div> |
| 78 | <script src="jquery.min.js"></script> |
| 79 | <script src="jquery-visibility.min.js"></script> |
| 80 | <script src="app.js"></script> |
| 81 | </body> |
| 82 | </html> |