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 | 4863b60 | 2014-03-21 14:19:06 +1100 | [diff] [blame] | 25 | .zuul-change-id { |
| 26 | float: right; |
| 27 | } |
Timo Tijhof | 51516cd | 2013-04-09 01:32:29 +0200 | [diff] [blame] | 28 | |
Joshua Hesketh | f1b06ca | 2014-03-21 17:01:12 +1100 | [diff] [blame] | 29 | .zuul-job-result { |
Joshua Hesketh | 6b1a218 | 2014-03-21 14:40:04 +1100 | [diff] [blame] | 30 | float: right; |
| 31 | width: 70px; |
| 32 | height: 15px; |
| 33 | margin: 0; |
| 34 | } |
| 35 | |
Joshua Hesketh | f1b06ca | 2014-03-21 17:01:12 +1100 | [diff] [blame] | 36 | .zuul-change-total-result { |
| 37 | height: 10px; |
| 38 | width: 100px; |
| 39 | margin: 5px 0 0 0; |
| 40 | } |
| 41 | |
Joshua Hesketh | 4863b60 | 2014-03-21 14:19:06 +1100 | [diff] [blame] | 42 | .zuul-spinner, |
| 43 | .zuul-spinner:hover { |
| 44 | opacity: 0; |
Joshua Hesketh | 876ca51 | 2014-03-21 18:44:22 +1100 | [diff] [blame] | 45 | transition: opacity 0.5s ease-out; |
Joshua Hesketh | 4863b60 | 2014-03-21 14:19:06 +1100 | [diff] [blame] | 46 | cursor: default; |
| 47 | pointer-events: none; |
| 48 | } |
Timo Tijhof | 51516cd | 2013-04-09 01:32:29 +0200 | [diff] [blame] | 49 | |
Joshua Hesketh | 4863b60 | 2014-03-21 14:19:06 +1100 | [diff] [blame] | 50 | .zuul-spinner-on, |
| 51 | .zuul-spinner-on:hover { |
| 52 | opacity: 1; |
Joshua Hesketh | 876ca51 | 2014-03-21 18:44:22 +1100 | [diff] [blame] | 53 | transition-duration: 0.2s; |
Joshua Hesketh | 4863b60 | 2014-03-21 14:19:06 +1100 | [diff] [blame] | 54 | cursor: progress; |
| 55 | } |
Joshua Hesketh | 6b1a218 | 2014-03-21 14:40:04 +1100 | [diff] [blame] | 56 | |
| 57 | .zuul-change-job { |
| 58 | padding: 5px 10px; |
| 59 | } |
| 60 | |
Timo Tijhof | 51516cd | 2013-04-09 01:32:29 +0200 | [diff] [blame] | 61 | </style> |
| 62 | </head> |
| 63 | <body> |
| 64 | <div class="container"> |
| 65 | <h1>Zuul Status</h1> |
Joshua Hesketh | e898716 | 2014-03-13 13:05:33 +1100 | [diff] [blame] | 66 | <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] | 67 | |
| 68 | <div class="zuul-container" id="zuul-container"></div> |
| 69 | </div> |
| 70 | <script src="jquery.min.js"></script> |
| 71 | <script src="jquery-visibility.min.js"></script> |
| 72 | <script src="app.js"></script> |
| 73 | </body> |
| 74 | </html> |