console output has border indicating build state

This commit is contained in:
Brad Rydzewski 2015-05-21 01:24:42 -07:00
parent 27e3fe3e41
commit e9e9124570
2 changed files with 22 additions and 3 deletions

View file

@ -77,7 +77,7 @@
</table>
</section>
<pre id="term" ng-if="task && task.state !== 'pending'"></pre>
<pre id="term" ng-if="task && task.state !== 'pending'" ng-class="[task.state]"></pre>

View file

@ -1228,9 +1228,11 @@ header .logo {
background:#424242;
position:relative;
height:56px;
box-shadow: 0 2px 5px 0 rgba(0,0,0,0.26);
position: sticky;
top: 0px;
box-shadow: 0 2px 5px 0 rgba(0,0,0,0.26);
box-shadow: none;
}
.toolbar .breadcrumb {
max-width:900px;
@ -1277,6 +1279,19 @@ header .logo {
top:0px;
}
pre.success {
border-left:10px solid #81C784;
background: #424242;
}
pre.error,
pre.killed,
pre.failure {
border-left:10px solid #E57373;
background: #424242;
}
article > pre {
font-family: "Droid Sans Mono","Roboto","Arial";
font-size: 13px;
@ -1290,6 +1305,7 @@ article > pre {
border-radius:2px;
}
article {
padding:0px 20px;
max-width:900px;
@ -1303,8 +1319,10 @@ section {
background:#FFF;
padding:0px;
margin-top:30px;
border:1px solid #EEE;
border-radius:2px;
border:1px solid #EEE;
border:none;
}
section h2 {
@ -1403,6 +1421,7 @@ section > .search a {
float:right;
transition: all .5s;
border-radius:2px;
text-transform:uppercase;
}
section > .search a:hover {
background: #00ACC1;