nci/static/css/sources/components/builds.less

52 lines
643 B
Plaintext
Raw Normal View History

.build-view {
&_info {
}
&_terminal {
margin-top: 20px;
}
}
2015-07-21 20:00:09 +00:00
.builds {
padding: 0 15px;
}
2015-05-09 20:19:25 +00:00
.build {
2015-07-21 20:00:09 +00:00
.row();
padding: 15px 0;
2015-05-09 21:36:17 +00:00
margin-bottom: 3px;
2015-05-09 20:19:25 +00:00
&__in-progress {
background: lighten(@brand-info, 40%);
}
&__done {
background: lighten(@brand-success, 50%);
}
2015-05-09 22:07:53 +00:00
&__error {
background: lighten(@brand-danger, 30%);
2015-05-09 22:07:53 +00:00
}
2015-05-09 21:36:17 +00:00
&_info {
display: inline-block;
margin-right: 10px;
}
2015-05-09 22:04:36 +00:00
&_controls {
2015-07-21 20:00:09 +00:00
.make-md-column(3);
.make-xs-column(3);
.text-right;
margin-top: 8px;
}
&_content {
.make-md-column(9);
.make-xs-column(9);
2015-05-09 22:04:36 +00:00
}
&_header {
2015-07-21 20:00:09 +00:00
margin-bottom: 6px;
font-size: 18px;
2015-05-09 22:04:36 +00:00
a {
font-size: inherit;
}
}
2015-05-09 20:19:25 +00:00
}