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: 0a493b3a9772e3dae2a625188acd1fbe44215f98 (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
.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: color-yiq($builds-trace-bg);
  border-radius: $border-radius-small;
  min-height: 42px;
  background-color: $builds-trace-bg;
}

.log-line {
  padding: 1px $gl-padding-8 1px $job-log-line-padding;
  min-height: $gl-line-height-20;
}

.line-number {
  color: $gray-500;
  padding: 0 $gl-padding-8;
  min-width: $job-line-number-width;
  margin-left: -$job-line-number-margin;
  padding-right: 1em;
  user-select: none;

  &:hover,
  &:active,
  &:visited {
    text-decoration: underline;
    color: $gray-500;
  }
}

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

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

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