mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-02-04 18:21:06 +02:00
console output has border indicating build state
This commit is contained in:
parent
27e3fe3e41
commit
e9e9124570
@ -77,7 +77,7 @@
|
|||||||
</table>
|
</table>
|
||||||
</section>
|
</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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1228,9 +1228,11 @@ header .logo {
|
|||||||
background:#424242;
|
background:#424242;
|
||||||
position:relative;
|
position:relative;
|
||||||
height:56px;
|
height:56px;
|
||||||
box-shadow: 0 2px 5px 0 rgba(0,0,0,0.26);
|
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 0px;
|
top: 0px;
|
||||||
|
|
||||||
|
box-shadow: 0 2px 5px 0 rgba(0,0,0,0.26);
|
||||||
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
.toolbar .breadcrumb {
|
.toolbar .breadcrumb {
|
||||||
max-width:900px;
|
max-width:900px;
|
||||||
@ -1277,6 +1279,19 @@ header .logo {
|
|||||||
top:0px;
|
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 {
|
article > pre {
|
||||||
font-family: "Droid Sans Mono","Roboto","Arial";
|
font-family: "Droid Sans Mono","Roboto","Arial";
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
@ -1290,6 +1305,7 @@ article > pre {
|
|||||||
border-radius:2px;
|
border-radius:2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
article {
|
article {
|
||||||
padding:0px 20px;
|
padding:0px 20px;
|
||||||
max-width:900px;
|
max-width:900px;
|
||||||
@ -1303,8 +1319,10 @@ section {
|
|||||||
background:#FFF;
|
background:#FFF;
|
||||||
padding:0px;
|
padding:0px;
|
||||||
margin-top:30px;
|
margin-top:30px;
|
||||||
border:1px solid #EEE;
|
|
||||||
border-radius:2px;
|
border-radius:2px;
|
||||||
|
|
||||||
|
border:1px solid #EEE;
|
||||||
|
border:none;
|
||||||
}
|
}
|
||||||
|
|
||||||
section h2 {
|
section h2 {
|
||||||
@ -1403,6 +1421,7 @@ section > .search a {
|
|||||||
float:right;
|
float:right;
|
||||||
transition: all .5s;
|
transition: all .5s;
|
||||||
border-radius:2px;
|
border-radius:2px;
|
||||||
|
text-transform:uppercase;
|
||||||
}
|
}
|
||||||
section > .search a:hover {
|
section > .search a:hover {
|
||||||
background: #00ACC1;
|
background: #00ACC1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user