2016-12-08 05:37:30 -05:00
|
|
|
@keyframes fade-out-status {
|
|
|
|
0%, 50% { opacity: 1; }
|
|
|
|
100% { opacity: 0; }
|
|
|
|
}
|
|
|
|
|
2016-12-09 06:39:06 -05:00
|
|
|
@keyframes blinking-dots {
|
|
|
|
0% {
|
|
|
|
background-color: rgba($white-light, 1);
|
|
|
|
box-shadow: 12px 0 0 0 rgba($white-light,0.2),
|
|
|
|
24px 0 0 0 rgba($white-light,0.2);
|
|
|
|
}
|
|
|
|
|
|
|
|
25% {
|
|
|
|
background-color: rgba($white-light, 0.4);
|
|
|
|
box-shadow: 12px 0 0 0 rgba($white-light,2),
|
|
|
|
24px 0 0 0 rgba($white-light,0.2);
|
|
|
|
}
|
|
|
|
|
2016-12-12 01:47:50 -05:00
|
|
|
75% {
|
2016-12-09 06:39:06 -05:00
|
|
|
background-color: rgba($white-light, 0.4);
|
|
|
|
box-shadow: 12px 0 0 0 rgba($white-light,0.2),
|
|
|
|
24px 0 0 0 rgba($white-light,1);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
background-color: rgba($white-light, 1);
|
|
|
|
box-shadow: 12px 0 0 0 rgba($white-light,0.2),
|
|
|
|
24px 0 0 0 rgba($white-light,0.2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-06 11:11:10 -04:00
|
|
|
.build-page {
|
2015-09-11 13:25:53 -04:00
|
|
|
pre.trace {
|
2016-11-30 08:25:25 -05:00
|
|
|
background: $builds-trace-bg;
|
|
|
|
color: $white-light;
|
2015-09-11 13:25:53 -04:00
|
|
|
font-family: $monospace_font;
|
2016-05-30 20:53:07 -04:00
|
|
|
white-space: pre-wrap;
|
2015-09-11 13:25:53 -04:00
|
|
|
overflow: auto;
|
|
|
|
overflow-y: hidden;
|
|
|
|
font-size: 12px;
|
|
|
|
|
2017-04-05 22:12:38 -04:00
|
|
|
.fa-spinner {
|
2015-09-11 13:25:53 -04:00
|
|
|
font-size: 24px;
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-09 06:39:06 -05:00
|
|
|
.environment-information {
|
|
|
|
background-color: $gray-light;
|
|
|
|
border: 1px solid $border-color;
|
|
|
|
padding: 12px $gl-padding;
|
|
|
|
border-radius: $border-radius-default;
|
2016-12-05 05:33:28 -05:00
|
|
|
|
2016-12-09 06:39:06 -05:00
|
|
|
svg {
|
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
|
|
|
margin-right: 5px;
|
2016-03-07 04:44:55 -05:00
|
|
|
}
|
2016-12-09 06:39:06 -05:00
|
|
|
}
|
2017-04-07 07:13:23 -04:00
|
|
|
|
|
|
|
.truncated-info {
|
|
|
|
text-align: center;
|
|
|
|
border-bottom: 1px solid;
|
2017-04-18 08:27:10 -04:00
|
|
|
background-color: $black;
|
2017-04-07 07:13:23 -04:00
|
|
|
height: 45px;
|
2017-04-18 08:27:10 -04:00
|
|
|
padding: 15px;
|
2017-04-07 07:13:23 -04:00
|
|
|
|
|
|
|
&.affix {
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// with sidebar
|
|
|
|
&.affix.sidebar-expanded {
|
|
|
|
right: 312px;
|
|
|
|
left: 22px;
|
|
|
|
}
|
|
|
|
|
|
|
|
// without sidebar
|
|
|
|
&.affix.sidebar-collapsed {
|
|
|
|
right: 20px;
|
|
|
|
left: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.affix-top {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
margin: 0 auto;
|
|
|
|
right: 5px;
|
|
|
|
left: 5px;
|
|
|
|
}
|
2017-04-18 08:27:10 -04:00
|
|
|
|
|
|
|
.truncated-info-size {
|
|
|
|
margin: 0 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.raw-link {
|
|
|
|
color: inherit;
|
|
|
|
margin-left: 5px;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2017-04-07 07:13:23 -04:00
|
|
|
}
|
2016-12-09 06:39:06 -05:00
|
|
|
}
|
2016-03-07 04:44:55 -05:00
|
|
|
|
2016-12-09 06:39:06 -05:00
|
|
|
.scroll-controls {
|
|
|
|
height: 100%;
|
2016-03-07 04:44:55 -05:00
|
|
|
|
2016-12-09 06:39:06 -05:00
|
|
|
.scroll-step {
|
|
|
|
width: 31px;
|
|
|
|
margin: 0 0 0 auto;
|
|
|
|
}
|
2016-12-06 05:57:08 -05:00
|
|
|
|
2016-12-09 09:36:03 -05:00
|
|
|
.scroll-link,
|
2016-12-09 06:39:06 -05:00
|
|
|
.autoscroll-container {
|
|
|
|
right: 25px;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.scroll-link {
|
2016-12-09 09:36:03 -05:00
|
|
|
position: fixed;
|
2016-12-09 06:39:06 -05:00
|
|
|
display: block;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
2016-12-14 11:16:45 -05:00
|
|
|
&.scroll-top .gitlab-icon-scroll-up-hover,
|
|
|
|
&.scroll-top:hover .gitlab-icon-scroll-up,
|
|
|
|
&.scroll-bottom .gitlab-icon-scroll-down-hover,
|
|
|
|
&.scroll-bottom:hover .gitlab-icon-scroll-down {
|
|
|
|
display: none;
|
|
|
|
}
|
2016-12-09 08:36:21 -05:00
|
|
|
|
2016-12-14 11:16:45 -05:00
|
|
|
&.scroll-top:hover .gitlab-icon-scroll-up-hover,
|
|
|
|
&.scroll-bottom:hover .gitlab-icon-scroll-down-hover {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2016-12-09 08:36:21 -05:00
|
|
|
|
2016-12-14 11:16:45 -05:00
|
|
|
&.scroll-top {
|
2017-02-15 13:20:22 -05:00
|
|
|
top: 10px;
|
2016-12-09 06:39:06 -05:00
|
|
|
}
|
2016-12-06 05:57:08 -05:00
|
|
|
|
2016-12-09 06:39:06 -05:00
|
|
|
&.scroll-bottom {
|
2016-12-09 09:36:03 -05:00
|
|
|
bottom: -2px;
|
2016-12-09 06:39:06 -05:00
|
|
|
}
|
|
|
|
}
|
2016-12-05 05:33:28 -05:00
|
|
|
|
2016-12-09 06:39:06 -05:00
|
|
|
.autoscroll-container {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.sidebar-expanded {
|
|
|
|
|
2016-12-09 09:36:03 -05:00
|
|
|
.scroll-link,
|
2016-12-05 05:33:28 -05:00
|
|
|
.autoscroll-container {
|
2016-12-09 06:39:06 -05:00
|
|
|
right: ($gutter_width + ($gl-padding * 2));
|
2016-09-08 11:50:36 -04:00
|
|
|
}
|
2016-12-09 06:39:06 -05:00
|
|
|
}
|
|
|
|
}
|
2016-03-07 04:44:55 -05:00
|
|
|
|
2016-12-09 06:39:06 -05:00
|
|
|
.status-message {
|
|
|
|
display: inline-block;
|
|
|
|
color: $white-light;
|
2016-12-05 05:33:28 -05:00
|
|
|
|
2016-12-09 06:39:06 -05:00
|
|
|
.status-icon {
|
|
|
|
display: inline-block;
|
|
|
|
width: 16px;
|
|
|
|
height: 33px;
|
2015-09-11 13:25:53 -04:00
|
|
|
}
|
2016-11-01 16:38:44 -04:00
|
|
|
|
2016-12-09 06:39:06 -05:00
|
|
|
.status-text {
|
|
|
|
float: left;
|
|
|
|
opacity: 0;
|
|
|
|
margin-right: 10px;
|
|
|
|
font-weight: normal;
|
|
|
|
line-height: 1.8;
|
|
|
|
transition: opacity 1s ease-out;
|
2016-11-02 18:25:19 -04:00
|
|
|
|
2016-12-09 06:39:06 -05:00
|
|
|
&.animate {
|
|
|
|
animation: fade-out-status 2s ease;
|
2016-11-02 18:25:19 -04:00
|
|
|
}
|
2016-11-01 16:38:44 -04:00
|
|
|
}
|
2016-12-09 06:39:06 -05:00
|
|
|
|
|
|
|
&:hover .status-text {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2016-04-20 05:11:22 -04:00
|
|
|
}
|
2015-09-11 13:25:53 -04:00
|
|
|
|
2016-04-20 05:11:22 -04:00
|
|
|
.build-header {
|
|
|
|
position: relative;
|
2016-10-26 13:48:27 -04:00
|
|
|
padding: 0;
|
|
|
|
display: flex;
|
|
|
|
min-height: 58px;
|
|
|
|
align-items: center;
|
2015-09-11 13:25:53 -04:00
|
|
|
|
2016-10-26 13:48:27 -04:00
|
|
|
@media (max-width: $screen-sm-max) {
|
|
|
|
padding-right: 40px;
|
2016-12-03 19:08:40 -05:00
|
|
|
margin-top: 6px;
|
2016-10-26 13:48:27 -04:00
|
|
|
|
2016-10-28 14:35:29 -04:00
|
|
|
.btn-inverted {
|
2016-10-26 13:48:27 -04:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-content {
|
|
|
|
flex: 1;
|
2017-04-15 07:43:00 -04:00
|
|
|
line-height: 1.8;
|
2015-09-11 13:25:53 -04:00
|
|
|
|
2016-11-10 17:53:32 -05:00
|
|
|
a {
|
2016-12-30 15:18:27 -05:00
|
|
|
color: $gl-text-color;
|
2015-09-11 13:25:53 -04:00
|
|
|
|
2016-11-10 17:53:32 -05:00
|
|
|
&:hover {
|
|
|
|
color: $gl-link-color;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2015-09-11 13:25:53 -04:00
|
|
|
}
|
|
|
|
}
|
2016-04-20 05:11:22 -04:00
|
|
|
|
|
|
|
code {
|
|
|
|
color: $code-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
float: none;
|
|
|
|
margin-right: 2px;
|
|
|
|
margin-left: 2px;
|
|
|
|
}
|
2015-09-11 13:25:53 -04:00
|
|
|
}
|
2016-04-26 14:20:58 -04:00
|
|
|
|
2016-04-20 05:11:22 -04:00
|
|
|
.build-trace {
|
2016-12-12 16:31:11 -05:00
|
|
|
background: $black;
|
2016-12-12 16:49:12 -05:00
|
|
|
color: $gray-darkest;
|
2016-04-20 05:11:22 -04:00
|
|
|
white-space: pre;
|
|
|
|
overflow-x: auto;
|
|
|
|
font-size: 12px;
|
2017-04-07 07:13:23 -04:00
|
|
|
position: relative;
|
2016-04-20 05:11:22 -04:00
|
|
|
|
2017-04-05 22:12:38 -04:00
|
|
|
.fa-spinner {
|
2016-04-20 05:11:22 -04:00
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bash {
|
|
|
|
display: block;
|
|
|
|
}
|
2016-12-08 08:08:08 -05:00
|
|
|
|
2016-12-09 06:39:06 -05:00
|
|
|
.build-loader-animation {
|
|
|
|
position: relative;
|
|
|
|
width: 6px;
|
|
|
|
height: 6px;
|
2016-12-14 11:16:45 -05:00
|
|
|
margin: auto auto 12px 2px;
|
2016-12-09 06:39:06 -05:00
|
|
|
border-radius: 50%;
|
|
|
|
animation: blinking-dots 1s linear infinite;
|
2016-12-08 08:08:08 -05:00
|
|
|
}
|
2016-04-20 05:11:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.right-sidebar.build-sidebar {
|
2016-08-17 13:15:36 -04:00
|
|
|
padding: $gl-padding 0;
|
2016-04-20 05:11:22 -04:00
|
|
|
|
|
|
|
&.right-sidebar-collapsed {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2016-08-17 13:15:36 -04:00
|
|
|
.blocks-container {
|
2016-08-23 10:19:36 -04:00
|
|
|
padding: 0 $gl-padding;
|
2016-08-17 13:15:36 -04:00
|
|
|
}
|
|
|
|
|
2016-04-20 05:11:22 -04:00
|
|
|
.block {
|
|
|
|
width: 100%;
|
|
|
|
|
2016-09-24 14:17:05 -04:00
|
|
|
&.coverage {
|
|
|
|
padding: 0 16px 11px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-group-justified {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
2016-09-04 10:57:57 -04:00
|
|
|
}
|
|
|
|
|
2016-09-06 07:03:48 -04:00
|
|
|
.js-build-variable {
|
|
|
|
color: $code-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.js-build-value {
|
|
|
|
padding: 2px 4px;
|
|
|
|
color: $black;
|
|
|
|
background-color: $white-light;
|
|
|
|
}
|
|
|
|
|
2016-04-20 05:11:22 -04:00
|
|
|
.build-sidebar-header {
|
2016-08-17 13:15:36 -04:00
|
|
|
padding: 0 $gl-padding $gl-padding;
|
2016-04-20 05:11:22 -04:00
|
|
|
|
|
|
|
.gutter-toggle {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
}
|
2016-08-17 13:15:36 -04:00
|
|
|
|
2016-10-26 13:48:27 -04:00
|
|
|
.retry-link {
|
|
|
|
color: $gl-link-color;
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: $screen-sm-max) {
|
2016-10-26 13:55:03 -04:00
|
|
|
display: block;
|
2016-10-26 13:48:27 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-17 13:15:36 -04:00
|
|
|
.stage-item {
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $gl-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.build-dropdown {
|
2016-08-20 12:21:59 -04:00
|
|
|
padding: $gl-padding 0;
|
2016-08-17 14:08:44 -04:00
|
|
|
|
|
|
|
.dropdown-menu-toggle {
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
2016-08-17 14:43:28 -04:00
|
|
|
|
|
|
|
.dropdown-menu {
|
|
|
|
right: $gl-padding;
|
|
|
|
left: $gl-padding;
|
|
|
|
width: auto;
|
|
|
|
}
|
2016-08-17 13:15:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.builds-container {
|
|
|
|
background-color: $white-light;
|
|
|
|
border-top: 1px solid $border-color;
|
|
|
|
border-bottom: 1px solid $border-color;
|
2016-08-17 14:08:44 -04:00
|
|
|
max-height: 300px;
|
2016-08-22 14:43:21 -04:00
|
|
|
overflow: auto;
|
2016-08-17 13:15:36 -04:00
|
|
|
|
|
|
|
svg {
|
|
|
|
position: relative;
|
|
|
|
top: 2px;
|
|
|
|
margin-right: 3px;
|
|
|
|
height: 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
display: block;
|
2016-08-17 14:08:44 -04:00
|
|
|
padding: $gl-padding 10px $gl-padding 40px;
|
|
|
|
width: 270px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2016-08-17 13:15:36 -04:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $gl-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.build-job {
|
2016-08-17 14:08:44 -04:00
|
|
|
position: relative;
|
|
|
|
|
2016-10-13 15:35:40 -04:00
|
|
|
.fa-arrow-right {
|
2016-08-17 14:08:44 -04:00
|
|
|
position: absolute;
|
|
|
|
left: 15px;
|
|
|
|
top: 20px;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2016-08-17 13:15:36 -04:00
|
|
|
&.active {
|
|
|
|
font-weight: bold;
|
2016-08-17 14:08:44 -04:00
|
|
|
|
2016-10-13 15:35:40 -04:00
|
|
|
.fa-arrow-right {
|
2016-08-17 14:08:44 -04:00
|
|
|
display: block;
|
|
|
|
}
|
2016-08-17 13:15:36 -04:00
|
|
|
}
|
2016-08-17 18:46:31 -04:00
|
|
|
|
2016-09-08 10:30:44 -04:00
|
|
|
&.retried {
|
|
|
|
background-color: $gray-lightest;
|
|
|
|
}
|
|
|
|
|
2016-08-17 18:46:31 -04:00
|
|
|
&:hover {
|
|
|
|
background-color: $row-hover;
|
|
|
|
}
|
2016-09-08 10:30:44 -04:00
|
|
|
|
2017-05-12 10:58:22 -04:00
|
|
|
.fa-refresh {
|
2016-09-08 10:30:44 -04:00
|
|
|
font-size: 13px;
|
|
|
|
margin-left: 3px;
|
|
|
|
}
|
2016-08-17 13:15:36 -04:00
|
|
|
}
|
|
|
|
}
|
2016-04-20 05:11:22 -04:00
|
|
|
}
|
|
|
|
|
2016-12-05 05:33:28 -05:00
|
|
|
.build-sidebar {
|
|
|
|
.container-fluid.container-limited {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-20 05:11:22 -04:00
|
|
|
.build-detail-row {
|
|
|
|
margin-bottom: 5px;
|
2016-10-14 16:39:08 -04:00
|
|
|
|
2016-09-24 14:17:05 -04:00
|
|
|
&:last-of-type {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2016-04-20 05:11:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.build-light-text {
|
2016-12-30 15:18:27 -05:00
|
|
|
color: $gl-text-color-secondary;
|
2016-04-20 05:11:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.build-gutter-toggle {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
right: 0;
|
|
|
|
margin-top: -17px;
|
|
|
|
}
|