builds.scss 3.9 KB
Newer Older
1
.build-page {
2
  pre.trace {
3
    background: #111;
4 5
    color: #fff;
    font-family: $monospace_font;
6
    white-space: pre-wrap;
7 8 9 10 11 12 13 14 15 16 17 18
    overflow: auto;
    overflow-y: hidden;
    font-size: 12px;

    .fa-refresh {
      font-size: 24px;
      margin-left: 20px;
    }
  }

  .autoscroll-container {
    position: fixed;
19
    bottom: 20px;
20 21 22 23 24
    right: 20px;
    z-index: 100;
  }

  .scroll-controls {
P
Phil Hughes 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38
    &.affix-top {
      position: absolute;
      top: 10px;
      right: 25px;
    }

    &.affix-bottom {
      position: absolute;
      right: 25px;
    }

    &.affix {
      right: 30px;
      bottom: 15px;
39
      z-index: 1;
P
Phil Hughes 已提交
40 41 42 43 44

      @media (min-width: $screen-md-min) {
        right: 26%;
      }
    }
45 46 47

    a {
      display: block;
48
      margin-bottom: 10px;
49 50
    }
  }
P
Phil Hughes 已提交
51
}
52

P
Phil Hughes 已提交
53 54
.build-header {
  position: relative;
55 56 57 58
  padding: 0;
  display: flex;
  min-height: 58px;
  align-items: center;
59

60 61 62 63 64 65 66 67 68 69
  @media (max-width: $screen-sm-max) {
    padding-right: 40px;

    .btn-primary {
      display: none;
    }
  }

  .header-content {
    flex: 1;
70 71
  }

P
Phil Hughes 已提交
72 73
  a {
    color: $gl-gray;
74

P
Phil Hughes 已提交
75 76 77
    &:hover {
      color: $gl-link-color;
      text-decoration: none;
78 79
    }
  }
P
Phil Hughes 已提交
80 81 82 83 84 85 86 87 88 89

  code {
    color: $code-color;
  }

  .avatar {
    float: none;
    margin-right: 2px;
    margin-left: 2px;
  }
90
}
A
Annabel Dunstone 已提交
91

P
Phil Hughes 已提交
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
.build-trace {
  background: $ci-output-bg;
  color: $ci-text-color;
  white-space: pre;
  overflow-x: auto;
  font-size: 12px;

  .fa-refresh {
    font-size: 24px;
  }

  .bash {
    display: block;
  }
}

.right-sidebar.build-sidebar {
109
  padding: $gl-padding 0;
P
Phil Hughes 已提交
110 111 112 113 114

  &.right-sidebar-collapsed {
    display: none;
  }

115
  .blocks-container {
L
Luke Bennett 已提交
116
    padding: 0 $gl-padding;
117 118
  }

P
Phil Hughes 已提交
119 120 121
  .block {
    width: 100%;

122 123 124 125 126 127 128
    &.coverage {
      padding: 0 16px 11px;
    }

    .btn-group-justified {
      margin-top: 5px;
    }
129 130
  }

U
ubudzisz 已提交
131 132 133 134 135 136 137 138 139 140
  .js-build-variable {
    color: $code-color;
  }

  .js-build-value {
    padding: 2px 4px;
    color: $black;
    background-color: $white-light;
  }

P
Phil Hughes 已提交
141
  .build-sidebar-header {
142
    padding: 0 $gl-padding $gl-padding;
P
Phil Hughes 已提交
143 144 145 146 147

    .gutter-toggle {
      margin-top: 0;
    }
  }
148

149 150 151 152 153 154 155 156 157 158 159 160 161
  .retry-link {
    color: $gl-link-color;
    display: none;

    &:hover {
      text-decoration: underline;
    }

    @media (max-width: $screen-sm-max) {
      display: inline-block;
    }
  }

162 163 164 165 166 167 168 169 170
  .stage-item {
    cursor: pointer;

    &:hover {
      color: $gl-text-color;
    }
  }

  .build-dropdown {
171
    padding: $gl-padding 0;
172 173 174 175

    .dropdown-menu-toggle {
      margin-top: 8px;
    }
176 177 178 179 180 181

    .dropdown-menu {
      right: $gl-padding;
      left: $gl-padding;
      width: auto;
    }
182 183 184 185 186 187
  }

  .builds-container {
    background-color: $white-light;
    border-top: 1px solid $border-color;
    border-bottom: 1px solid $border-color;
188
    max-height: 300px;
189
    overflow: auto;
190 191 192 193 194 195 196 197 198 199

    svg {
      position: relative;
      top: 2px;
      margin-right: 3px;
      height: 13px;
    }

    a {
      display: block;
200 201 202 203 204
      padding: $gl-padding 10px $gl-padding 40px;
      width: 270px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
205 206 207 208 209 210 211

      &:hover {
        color: $gl-text-color;
      }
    }

    .build-job {
212 213
      position: relative;

214
      .fa-arrow-right {
215 216 217 218 219 220
        position: absolute;
        left: 15px;
        top: 20px;
        display: none;
      }

221 222
      &.active {
        font-weight: bold;
223

224
        .fa-arrow-right {
225 226
          display: block;
        }
227
      }
228

229 230 231 232
      &.retried {
        background-color: $gray-lightest;
      }

233 234 235
      &:hover {
        background-color: $row-hover;
      }
236 237 238 239 240

      .fa-refresh {
        font-size: 13px;
        margin-left: 3px;
      }
241 242
    }
  }
P
Phil Hughes 已提交
243 244 245 246
}

.build-detail-row {
  margin-bottom: 5px;
247

248 249 250
  &:last-of-type {
    margin-bottom: 0;
  }
P
Phil Hughes 已提交
251 252 253 254 255 256 257 258 259 260 261 262
}

.build-light-text {
  color: $gl-placeholder-color;
}

.build-gutter-toggle {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -17px;
}
263 264 265 266 267 268

@media (min-width: $screen-md-min) {
  .sub-nav.build {
    width: calc(100% + #{$gutter_width});
  }
}