summaryrefslogtreecommitdiff
path: root/web/src/index.css
diff options
context:
space:
mode:
authorTristan Cacqueray <tdecacqu@redhat.com>2018-10-03 07:05:06 +0000
committerMonty Taylor <mordred@inaugust.com>2018-10-06 10:42:31 -0500
commit68d11898715970f47c4d86c261dc64232a841c85 (patch)
tree974b0e60a21d8262b67c0310777d14ee48c056f5 /web/src/index.css
parent6f0f36aab00104321d548554f74e969064b1fe34 (diff)
downloadzuul-68d11898715970f47c4d86c261dc64232a841c85.tar.gz
Revert "Revert "web: rewrite interface in react""
This reverts commit 3dba813c643ec8f4b3323c2a09c6aecf8ad4d338. Change-Id: I233797a9b4e3485491c49675da2c2efbdba59449
Diffstat (limited to 'web/src/index.css')
-rw-r--r--web/src/index.css122
1 files changed, 122 insertions, 0 deletions
diff --git a/web/src/index.css b/web/src/index.css
new file mode 100644
index 000000000..4c030195b
--- /dev/null
+++ b/web/src/index.css
@@ -0,0 +1,122 @@
+body {
+ margin: 0;
+ padding: 0;
+ font-family: sans-serif;
+}
+a.refresh {
+ cursor: pointer;
+ border-bottom-style: none;
+ text-decoration: none;
+}
+
+/* Status page */
+.zuul-change {
+ margin-bottom: 10px;
+}
+
+.zuul-change-id {
+ float: right;
+}
+
+.zuul-job-result {
+ float: right;
+ width: 70px;
+ height: 15px;
+ margin: 2px 0 0 0;
+}
+
+.zuul-change-total-result {
+ height: 10px;
+ width: 100px;
+ margin: 0;
+ display: inline-block;
+ vertical-align: middle;
+}
+
+.zuul-spinner,
+.zuul-spinner:hover {
+ opacity: 0;
+ transition: opacity 0.5s ease-out;
+ cursor: default;
+ pointer-events: none;
+}
+
+.zuul-spinner-on,
+.zuul-spinner-on:hover {
+ opacity: 1;
+ transition-duration: 0.2s;
+ cursor: progress;
+}
+
+.zuul-change-cell {
+ padding-left: 5px;
+}
+
+.zuul-change-job {
+ padding: 2px 8px;
+}
+
+.zuul-job-name {
+ font-size: small;
+}
+
+.zuul-non-voting-desc {
+ font-size: smaller;
+}
+
+.zuul-patchset-header {
+ font-size: small;
+ padding: 8px 12px;
+}
+
+.form-inline > .form-group {
+ padding-right: 5px;
+}
+
+.zuul-change-row {
+ height: 100%;
+ padding: 0 0 10px 0;
+ margin: 0;
+ width: 16px;
+ min-width: 16px;
+ overflow: hidden;
+ vertical-align: top;
+}
+
+.zuul-build-status {
+ background: white;
+ font-size: 16px;
+}
+
+.zuul-build-merge-conflict:before {
+ color: black;
+}
+
+.zuul-change-row-line {
+ background-image: url('images/line.png');
+ background-repeat: 'repeat-y';
+}
+
+/* Stream page */
+#zuulstreamoverlay {
+ float: right;
+ position: fixed;
+ top: 70px;
+ right: 5px;
+ background-color: white;
+ padding: 2px 0px 0px 2px;
+ color: black;
+}
+
+pre#zuulstreamcontent {
+ font-family: monospace;
+ white-space: pre;
+ margin: 0px 10px;
+ background-color: black;
+ color: lightgrey;
+ border: none;
+}
+p.zuulstreamline {
+ margin: 0px 0px;
+ line-height: 1.4;
+}