debian-mirror-gitlab/app/assets/stylesheets/pages/pipelines.scss

95 lines
1.6 KiB
SCSS
Raw Normal View History

2021-01-29 00:20:46 +05:30
/**
* !! NOTE: Do not add more code in this file:
*
* https://gitlab.com/gitlab-org/gitlab/-/issues/267602
*
* For new pipeline CSS please consider:
*
* For pipelines tables and lists:
* - `app/assets/stylesheets/page_bundles/pipelines.scss`
*
* For individual pipelines and mini-pipelines:
* - `app/assets/stylesheets/page_bundles/pipeline.scss`
*
**/
2016-08-24 12:49:21 +05:30
2017-09-10 17:25:29 +05:30
.ci-table {
2016-11-03 12:29:30 +05:30
.avatar {
margin-left: 0;
float: none;
}
2016-08-24 12:49:21 +05:30
.branch-commit {
2017-09-10 17:25:29 +05:30
.ref-name {
2018-03-17 18:26:18 +05:30
font-weight: $gl-font-weight-bold;
max-width: 100px;
2016-08-24 12:49:21 +05:30
overflow: hidden;
display: inline-block;
white-space: nowrap;
2017-09-10 17:25:29 +05:30
vertical-align: middle;
2016-08-24 12:49:21 +05:30
text-overflow: ellipsis;
}
svg {
height: 14px;
width: 14px;
vertical-align: middle;
2021-01-03 14:25:43 +05:30
&:not(.text-warning) {
fill: $gl-text-color-secondary;
}
2016-08-24 12:49:21 +05:30
}
2018-03-17 18:26:18 +05:30
.sprite {
width: 12px;
height: 12px;
fill: $gl-text-color;
}
2017-09-10 17:25:29 +05:30
.commit-sha {
2018-11-20 20:47:30 +05:30
color: $blue-600;
2016-08-24 12:49:21 +05:30
}
2018-11-08 19:23:39 +05:30
.badge {
2016-08-24 12:49:21 +05:30
margin-right: 4px;
}
.label-container {
font-size: 0;
2018-11-08 19:23:39 +05:30
.badge {
2016-08-24 12:49:21 +05:30
margin-top: 5px;
}
}
}
.duration,
.finished-at {
2017-08-17 22:00:37 +05:30
color: $gl-text-color-secondary;
2017-09-10 17:25:29 +05:30
margin: 0;
2017-08-17 22:00:37 +05:30
white-space: nowrap;
2016-08-24 12:49:21 +05:30
svg {
width: 12px;
height: 12px;
vertical-align: middle;
margin-right: 4px;
}
}
2017-08-17 22:00:37 +05:30
.build-link a {
color: $gl-text-color;
}
}
2016-08-24 12:49:21 +05:30
2021-01-29 00:20:46 +05:30
@include media-breakpoint-down(sm) {
.top-bar {
.truncated-info {
white-space: nowrap;
overflow: hidden;
max-width: 220px;
text-overflow: ellipsis;
2019-03-02 22:35:43 +05:30
}
2017-08-17 22:00:37 +05:30
}
2017-09-10 17:25:29 +05:30
}