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);
|
2017-07-08 08:53:12 -04:00
|
|
|
box-shadow: 12px 0 0 0 rgba($white-light, 0.2),
|
|
|
|
24px 0 0 0 rgba($white-light, 0.2);
|
2016-12-09 06:39:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
25% {
|
|
|
|
background-color: rgba($white-light, 0.4);
|
2017-07-08 08:53:12 -04:00
|
|
|
box-shadow: 12px 0 0 0 rgba($white-light, 2),
|
|
|
|
24px 0 0 0 rgba($white-light, 0.2);
|
2016-12-09 06:39:06 -05:00
|
|
|
}
|
|
|
|
|
2016-12-12 01:47:50 -05:00
|
|
|
75% {
|
2016-12-09 06:39:06 -05:00
|
|
|
background-color: rgba($white-light, 0.4);
|
2017-07-08 08:53:12 -04:00
|
|
|
box-shadow: 12px 0 0 0 rgba($white-light, 0.2),
|
|
|
|
24px 0 0 0 rgba($white-light, 1);
|
2016-12-09 06:39:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
background-color: rgba($white-light, 1);
|
2017-07-08 08:53:12 -04:00
|
|
|
box-shadow: 12px 0 0 0 rgba($white-light, 0.2),
|
|
|
|
24px 0 0 0 rgba($white-light, 0.2);
|
2016-12-09 06:39:06 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-30 04:43:13 -04:00
|
|
|
@keyframes blinking-scroll-button {
|
|
|
|
0% { opacity: 0.2; }
|
|
|
|
25% { opacity: 0.5; }
|
|
|
|
50% { opacity: 0.7; }
|
|
|
|
100% { opacity: 1; }
|
|
|
|
}
|
2016-12-05 05:33:28 -05:00
|
|
|
|
2017-05-30 04:43:13 -04:00
|
|
|
.build-page {
|
2017-07-05 07:32:22 -04:00
|
|
|
.build-trace-container {
|
|
|
|
position: relative;
|
2016-12-09 06:39:06 -05:00
|
|
|
}
|
2017-04-07 07:13:23 -04:00
|
|
|
|
2017-07-05 07:32:22 -04:00
|
|
|
.build-trace {
|
2017-05-30 04:43:13 -04:00
|
|
|
background: $black;
|
|
|
|
color: $gray-darkest;
|
2017-07-05 07:32:22 -04:00
|
|
|
white-space: pre;
|
|
|
|
overflow-x: auto;
|
2017-05-30 04:43:13 -04:00
|
|
|
font-size: 12px;
|
2017-07-05 07:32:22 -04:00
|
|
|
border-radius: 0;
|
2017-11-02 19:59:51 -04:00
|
|
|
border: 0;
|
2017-11-20 04:08:50 -05:00
|
|
|
padding: $grid-size;
|
2017-04-07 07:13:23 -04:00
|
|
|
|
2017-07-05 07:32:22 -04:00
|
|
|
.bash {
|
|
|
|
display: block;
|
2017-04-07 07:13:23 -04:00
|
|
|
}
|
2017-07-05 07:32:22 -04:00
|
|
|
}
|
2017-04-07 07:13:23 -04:00
|
|
|
|
2017-07-05 07:32:22 -04:00
|
|
|
.top-bar {
|
|
|
|
height: 35px;
|
|
|
|
background: $gray-light;
|
|
|
|
border: 1px solid $border-color;
|
|
|
|
color: $gl-text-color;
|
|
|
|
position: sticky;
|
|
|
|
position: -webkit-sticky;
|
2017-09-29 17:03:50 -04:00
|
|
|
top: $header-height;
|
2017-11-20 04:08:50 -05:00
|
|
|
padding: $grid-size;
|
2017-07-05 07:32:22 -04:00
|
|
|
|
|
|
|
&.affix {
|
2017-09-29 17:03:50 -04:00
|
|
|
top: $header-height;
|
2017-04-07 07:13:23 -04:00
|
|
|
|
2017-07-12 05:50:26 -04:00
|
|
|
// with sidebar
|
|
|
|
&.sidebar-expanded {
|
|
|
|
right: 306px;
|
|
|
|
left: 16px;
|
|
|
|
}
|
2017-04-07 07:13:23 -04:00
|
|
|
|
2017-07-12 05:50:26 -04:00
|
|
|
// without sidebar
|
|
|
|
&.sidebar-collapsed {
|
|
|
|
right: 16px;
|
|
|
|
left: 16px;
|
|
|
|
}
|
2017-07-05 07:32:22 -04:00
|
|
|
}
|
2017-05-30 04:43:13 -04:00
|
|
|
|
2017-07-05 07:32:22 -04:00
|
|
|
&.affix-top {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
2017-07-29 07:14:18 -04:00
|
|
|
top: 0;
|
2017-07-05 07:32:22 -04:00
|
|
|
}
|
2017-05-30 04:43:13 -04:00
|
|
|
|
2017-07-05 07:32:22 -04:00
|
|
|
.truncated-info {
|
|
|
|
.truncated-info-size {
|
|
|
|
margin: 0 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.raw-link {
|
|
|
|
color: $gl-text-color;
|
|
|
|
margin-left: 5px;
|
|
|
|
text-decoration: underline;
|
2017-05-30 04:43:13 -04:00
|
|
|
}
|
2017-04-18 08:27:10 -04:00
|
|
|
}
|
2016-03-07 04:44:55 -05:00
|
|
|
|
2017-05-30 04:43:13 -04:00
|
|
|
.controllers {
|
|
|
|
display: flex;
|
|
|
|
font-size: 15px;
|
2017-07-05 07:32:22 -04:00
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2016-03-07 04:44:55 -05:00
|
|
|
|
2017-05-30 04:43:13 -04:00
|
|
|
svg {
|
|
|
|
height: 15px;
|
|
|
|
display: block;
|
2017-06-09 07:58:52 -04:00
|
|
|
fill: $gl-text-color;
|
2017-05-30 04:43:13 -04:00
|
|
|
}
|
2016-12-06 05:57:08 -05:00
|
|
|
|
2017-06-09 07:58:52 -04:00
|
|
|
.controllers-buttons {
|
2017-07-05 07:32:22 -04:00
|
|
|
color: $gl-text-color;
|
2017-11-20 04:08:50 -05:00
|
|
|
margin: 0 $grid-size;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2017-05-30 04:43:13 -04:00
|
|
|
}
|
2016-12-09 06:39:06 -05:00
|
|
|
|
2017-05-30 04:43:13 -04:00
|
|
|
.btn-scroll.animate {
|
|
|
|
.first-triangle {
|
|
|
|
animation: blinking-scroll-button 1s ease infinite;
|
|
|
|
animation-delay: .3s;
|
|
|
|
}
|
2016-12-09 06:39:06 -05:00
|
|
|
|
2017-05-30 04:43:13 -04:00
|
|
|
.second-triangle {
|
|
|
|
animation: blinking-scroll-button 1s ease infinite;
|
|
|
|
animation-delay: .2s;
|
|
|
|
}
|
2016-12-09 08:36:21 -05:00
|
|
|
|
2017-05-30 04:43:13 -04:00
|
|
|
.third-triangle {
|
|
|
|
animation: blinking-scroll-button 1s ease infinite;
|
|
|
|
}
|
2016-12-09 08:36:21 -05:00
|
|
|
|
2017-05-30 04:43:13 -04:00
|
|
|
&:disabled {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
2016-12-06 05:57:08 -05:00
|
|
|
|
2017-05-30 04:43:13 -04:00
|
|
|
.btn-scroll:disabled {
|
|
|
|
opacity: 0.35;
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
2016-12-09 06:39:06 -05:00
|
|
|
}
|
|
|
|
}
|
2016-12-05 05:33:28 -05:00
|
|
|
|
2017-05-30 04:43:13 -04:00
|
|
|
.environment-information {
|
|
|
|
border: 1px solid $border-color;
|
2017-06-12 05:20:19 -04:00
|
|
|
padding: 8px $gl-padding 12px;
|
2017-05-30 04:43:13 -04:00
|
|
|
border-radius: $border-radius-default;
|
2016-12-09 06:39:06 -05:00
|
|
|
|
2017-05-30 04:43:13 -04:00
|
|
|
svg {
|
|
|
|
position: relative;
|
2017-06-12 05:20:19 -04:00
|
|
|
top: 5px;
|
2017-05-30 04:43:13 -04:00
|
|
|
margin-right: 5px;
|
2017-06-12 05:20:19 -04:00
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
2016-09-08 11:50:36 -04:00
|
|
|
}
|
2016-12-09 06:39:06 -05:00
|
|
|
}
|
2017-05-30 04:43:13 -04:00
|
|
|
|
|
|
|
.build-loader-animation {
|
|
|
|
position: relative;
|
|
|
|
width: 6px;
|
|
|
|
height: 6px;
|
|
|
|
margin: auto auto 12px 2px;
|
|
|
|
border-radius: 50%;
|
|
|
|
animation: blinking-dots 1s linear infinite;
|
|
|
|
}
|
2016-12-09 06:39:06 -05:00
|
|
|
}
|
2016-03-07 04:44:55 -05:00
|
|
|
|
2017-07-31 04:07:51 -04:00
|
|
|
.with-performance-bar .build-page {
|
|
|
|
.top-bar {
|
2017-09-29 17:03:50 -04:00
|
|
|
top: $header-height + $performance-bar-height;
|
2017-07-31 04:07:51 -04:00
|
|
|
|
|
|
|
&.affix {
|
2017-09-29 17:03:50 -04:00
|
|
|
top: $header-height + $performance-bar-height;
|
2017-07-31 04:07:51 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-12 05:20:19 -04:00
|
|
|
.build-header {
|
|
|
|
.ci-header-container,
|
|
|
|
.header-action-buttons {
|
|
|
|
display: flex;
|
2015-09-11 13:25:53 -04:00
|
|
|
}
|
2016-11-01 16:38:44 -04:00
|
|
|
|
2017-06-12 05:20:19 -04:00
|
|
|
.ci-header-container {
|
|
|
|
min-height: 54px;
|
2016-11-01 16:38:44 -04:00
|
|
|
}
|
2016-12-09 06:39:06 -05:00
|
|
|
|
2017-06-12 05:20:19 -04:00
|
|
|
.page-content-header {
|
|
|
|
padding: 10px 0 9px;
|
2016-12-09 06:39:06 -05:00
|
|
|
}
|
2016-10-26 13:48:27 -04:00
|
|
|
|
2017-06-12 05:20:19 -04:00
|
|
|
.header-action-buttons {
|
|
|
|
@media (max-width: $screen-xs-max) {
|
|
|
|
.sidebar-toggle-btn {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-left: 10px;
|
|
|
|
max-height: 34px;
|
|
|
|
}
|
2016-10-26 13:48:27 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-content {
|
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
|
|
|
.right-sidebar.build-sidebar {
|
2017-06-12 05:20:19 -04:00
|
|
|
padding: 0;
|
2016-04-20 05:11:22 -04:00
|
|
|
|
|
|
|
&.right-sidebar-collapsed {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-08-02 19:13:47 -04:00
|
|
|
.sidebar-container {
|
|
|
|
width: calc(100% + 100px);
|
|
|
|
padding-right: 100px;
|
|
|
|
height: 100%;
|
|
|
|
overflow-y: scroll;
|
|
|
|
overflow-x: hidden;
|
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
}
|
|
|
|
|
2016-08-17 13:15:36 -04:00
|
|
|
.blocks-container {
|
2016-08-23 10:19:36 -04:00
|
|
|
padding: 0 $gl-padding;
|
2017-08-02 19:14:14 -04:00
|
|
|
width: 289px;
|
2016-08-17 13:15:36 -04:00
|
|
|
}
|
|
|
|
|
2016-04-20 05:11:22 -04:00
|
|
|
.block {
|
|
|
|
width: 100%;
|
|
|
|
|
2017-06-12 05:20:19 -04:00
|
|
|
&:last-child {
|
|
|
|
border-bottom: 1px solid $border-gray-normal;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-07-14 04:46:37 -04:00
|
|
|
.block-last {
|
|
|
|
padding: 16px 0;
|
|
|
|
}
|
|
|
|
|
2017-08-01 16:26:00 -04:00
|
|
|
.trigger-build-variables {
|
|
|
|
margin: 0;
|
|
|
|
overflow-x: auto;
|
|
|
|
-ms-overflow-style: scrollbar;
|
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
}
|
|
|
|
|
2017-06-12 05:20:19 -04:00
|
|
|
.trigger-build-variable {
|
2017-08-24 10:13:24 -04:00
|
|
|
font-weight: $gl-font-weight-normal;
|
2016-09-06 07:03:48 -04:00
|
|
|
color: $code-color;
|
|
|
|
}
|
|
|
|
|
2017-06-12 05:20:19 -04:00
|
|
|
.trigger-build-value {
|
2016-09-06 07:03:48 -04:00
|
|
|
padding: 2px 4px;
|
|
|
|
color: $black;
|
|
|
|
background-color: $white-light;
|
|
|
|
}
|
|
|
|
|
2017-06-12 05:20:19 -04:00
|
|
|
.label {
|
|
|
|
margin-left: 2px;
|
2016-04-20 05:11:22 -04:00
|
|
|
}
|
2016-08-17 13:15:36 -04:00
|
|
|
|
2016-10-26 13:48:27 -04:00
|
|
|
.retry-link {
|
|
|
|
display: none;
|
|
|
|
|
2017-06-12 05:20:19 -04:00
|
|
|
.btn-inverted-secondary {
|
|
|
|
color: $blue-500;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $white-light;
|
|
|
|
}
|
2016-10-26 13:48:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: $screen-sm-max) {
|
2016-10-26 13:55:03 -04:00
|
|
|
display: block;
|
2017-06-12 05:20:19 -04:00
|
|
|
|
|
|
|
.btn {
|
|
|
|
i {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
}
|
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 {
|
2017-08-14 14:48:48 -04:00
|
|
|
margin: $gl-padding 0;
|
|
|
|
padding: 0;
|
2016-08-17 14:43:28 -04:00
|
|
|
|
2017-08-14 14:48:48 -04:00
|
|
|
.dropdown-menu-toggle {
|
|
|
|
margin-top: #{$gl-padding / 2};
|
2016-08-17 14:43:28 -04:00
|
|
|
}
|
2017-06-12 05:20:19 -04:00
|
|
|
|
|
|
|
svg {
|
|
|
|
position: relative;
|
2017-09-28 13:05:01 -04:00
|
|
|
top: 3px;
|
2017-06-12 05:20:19 -04:00
|
|
|
margin-right: 3px;
|
2017-09-28 13:05:01 -04:00
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
2017-06-12 05:20:19 -04:00
|
|
|
}
|
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;
|
2017-08-02 19:14:14 -04:00
|
|
|
width: 289px;
|
2016-08-22 14:43:21 -04:00
|
|
|
overflow: auto;
|
2016-08-17 13:15:36 -04:00
|
|
|
|
|
|
|
svg {
|
|
|
|
position: relative;
|
2017-09-28 13:05:01 -04:00
|
|
|
top: 3px;
|
2016-08-17 13:15:36 -04:00
|
|
|
margin-right: 3px;
|
2017-09-28 13:05:01 -04:00
|
|
|
height: 14px;
|
|
|
|
width: 14px;
|
2016-08-17 13:15:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
2017-09-28 13:05:01 -04:00
|
|
|
.icon-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 {
|
2017-08-24 10:13:24 -04:00
|
|
|
font-weight: $gl-font-weight-bold;
|
2016-08-17 14:08:44 -04:00
|
|
|
|
2017-09-28 13:05:01 -04:00
|
|
|
.icon-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-09-28 13:05:01 -04:00
|
|
|
.icon-retry {
|
2016-09-08 10:30:44 -04:00
|
|
|
margin-left: 3px;
|
|
|
|
}
|
2016-08-17 13:15:36 -04:00
|
|
|
}
|
|
|
|
}
|
2017-06-12 05:20:19 -04:00
|
|
|
|
|
|
|
.link-commit {
|
|
|
|
color: $blue-600;
|
|
|
|
}
|
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%;
|
|
|
|
}
|
2017-05-30 07:50:26 -04:00
|
|
|
|
|
|
|
.content-wrapper {
|
|
|
|
padding-bottom: 6px;
|
|
|
|
}
|
2016-12-05 05:33:28 -05:00
|
|
|
}
|
|
|
|
|
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;
|
2017-06-21 16:40:18 -04:00
|
|
|
word-wrap: break-word;
|
2016-04-20 05:11:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.build-gutter-toggle {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
right: 0;
|
|
|
|
margin-top: -17px;
|
|
|
|
}
|