Welcome to mirror list, hosted at ThFree Co, Russian Federation.

job_log.scss « framework « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5c2491c82332c884100cd04f3c2eb4941f4bacd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
.job-log {
  font-family: $monospace-font;
  padding: $gl-padding-8 $input-horizontal-padding;
  margin: 0 0 $gl-padding-8;
  font-size: 13px;
  word-break: break-all;
  word-wrap: break-word;
  color: $gl-text-color-inverted;
  border-radius: $border-radius-small;
  min-height: 42px;
  background-color: $builds-trace-bg;
}

.line {
  padding: 1px $gl-padding 1px $job-log-line-padding;
}

.line-number {
  color: $gl-text-color-inverted;
  padding: 0 $gl-padding-8;
  min-width: $job-line-number-width;
  margin-left: -$job-line-number-width;
  padding-right: 1em;

  &:hover,
  &:active,
  &:visited {
    text-decoration: underline;
    color: $gl-text-color-inverted;
  }
}

.collapsible-line {
  &:hover {
    background-color: rgba($white-light, 0.2);
  }

  .arrow {
    margin-left: -$job-arrow-margin;
  }
}

.duration {
  background: $gl-gray-400;
}

.loader-animation {
  @include build-loader-animation;
}