Helping the pipeline graph

This commit is contained in:
Keith Zantow 2017-09-08 17:14:16 -04:00
parent 22f3a6102a
commit bf367dae57
8 changed files with 42 additions and 7 deletions

View File

@ -1,5 +1,12 @@
import React from 'react';
import { Link } from 'react-router';
import { AppConfig } from '@jenkins-cd/blueocean-core-js';
import ReactDOM from 'react-dom';
import { SvgStatus } from '@jenkins-cd/design-language';
const _render = SvgStatus.prototype.render;
SvgStatus.prototype.render = () => {
console.log('render!!');
//return _render.apply(this);
return <div className="mc-hammer"/>;
}
export default () => <div style={{height:0, width:0, padding:0, fontSize:0, display: 'inline-block'}}> </div>;

View File

@ -27,3 +27,31 @@ html, body, div, a, href, button, h1, h2, * {
.JTable-row--rollOver:hover {
background-color: #0000ff;
}
.btn, .IconButton {
.btn-primary !important;
}
.log-body pre {
.well;
}
body, * {
color: #ff00ff;
}
.FullScreen-contents {
background: url(microfab.gif);
}
* {
max-height: auto !important;
}
.logConsole .result-item-title .result-item-label .result-item-label-desc {
overflow: visible;
}
.mc-hammer {
background: url(mchammer.gif);
}

View File

@ -2282,7 +2282,7 @@ table th[class*="span"],
*margin-right: .3em;
line-height: 14px;
vertical-align: text-top;
background-image: url("http://code.divshot.com/geo-bootstrap/img/glyphicons-halflings.png");
background-image: url("glyphicons-halflings.png");
background-position: 14px 14px;
background-repeat: no-repeat;
}
@ -6206,7 +6206,7 @@ blink {
body {
-webkit-font-smoothing: none;
background: #0000ff url('http://code.divshot.com/geo-bootstrap/img/microfab.gif') top left;
background: #0000ff url('microfab.gif') top left;
}
.navbar {
@ -6217,7 +6217,7 @@ body {
}
.navbar-inner {
background: #000000 url('http://code.divshot.com/geo-bootstrap/img/stars.gif') top left;
background: #000000 url('stars.gif') top left;
border-bottom: 1px solid #D4D0C8;
}
@ -6226,7 +6226,7 @@ body {
}
.btn-primary {
background: #000000 url('http://code.divshot.com/geo-bootstrap/img/rainbow.gif') top left;
background: #000000 url('rainbow.gif') top left;
}
legend {
@ -6298,7 +6298,7 @@ legend {
.hero-unit,
.well {
background: #000000 url('http://code.divshot.com/geo-bootstrap/img/stars.gif') top left;
background: #000000 url('stars.gif') top left;
}
.breadcrumb {

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
src/main/less/mchammer.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

BIN
src/main/less/microfab.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
src/main/less/rainbow.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
src/main/less/stars.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB