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