gitlab-org--gitlab-foss/app/assets/stylesheets/pages/runners.scss

60 lines
836 B
SCSS
Raw Normal View History

2015-10-22 09:31:00 +00:00
.runner-state {
padding: 6px 12px;
margin-right: 10px;
2016-11-30 13:25:25 +00:00
color: $white-light;
2015-09-11 17:25:53 +00:00
2015-10-22 09:31:00 +00:00
&.runner-state-shared {
2016-11-30 13:25:25 +00:00
background: $runner-state-shared-bg;
2015-09-11 17:25:53 +00:00
}
2015-10-22 09:31:00 +00:00
&.runner-state-specific {
2016-11-30 13:25:25 +00:00
background: $runner-state-specific-bg;
2015-09-11 17:25:53 +00:00
}
2015-10-22 09:31:00 +00:00
}
2015-09-11 17:25:53 +00:00
2015-10-22 09:31:00 +00:00
.runner-status-online {
2016-11-30 13:25:25 +00:00
color: $runner-status-online-color;
2015-10-22 09:31:00 +00:00
}
2015-09-11 17:25:53 +00:00
2015-10-22 09:31:00 +00:00
.runner-status-offline {
2016-11-30 13:25:25 +00:00
color: $runner-status-offline-color;
2015-10-22 09:31:00 +00:00
}
.runner-status-paused {
2016-11-30 13:25:25 +00:00
color: $runner-status-paused-color;
2015-10-22 09:31:00 +00:00
}
2015-09-11 17:25:53 +00:00
2015-10-22 09:31:00 +00:00
.runner {
.btn {
padding: 1px 6px;
}
2015-09-11 17:25:53 +00:00
2015-10-22 09:31:00 +00:00
h4 {
font-weight: $gl-font-weight-normal;
2015-09-11 17:25:53 +00:00
}
}
.admin-runner-btn-group-cell {
min-width: 150px;
.btn-sm {
padding: 4px 9px;
}
.btn-default {
color: $gl-text-color-secondary;
}
.fa-pause,
.fa-play {
font-size: 11px;
}
}
2017-06-19 12:28:11 +00:00
@media (max-width: $screen-md-max) {
.runners-content {
width: 100%;
overflow: auto;
}
}