summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/timeline.scss
blob: aa0c512a277f56de73be5a357346347f64b60148 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
.timeline {
  @include basic-list;
  margin: 0;
  padding: 0;

  .note-text {
    p:last-child {
      margin-bottom: 0;
    }
  }

  .system-note {
    .note-text {
      color: $gl-text-color !important;
    }
  }

  .diff-file {
    border: 1px solid $border-color;
    border-bottom: none;
    margin: 0;
  }
}

.timeline-entry {
  padding: $gl-padding $gl-btn-padding 0;
  border-color: $white-normal;
  color: $gl-text-color;
  border-bottom: 1px solid $border-white-light;

  .timeline-entry-inner {
    position: relative;
  }

  &:target,
  &.target {
    background: $line-target-blue;
  }

  .avatar {
    margin-right: 15px;
  }

  .controls {
    padding-top: 10px;
    float: right;
  }
}

@media (max-width: $screen-xs-max) {
  .timeline {
    &::before {
      background: none;
    }
  }

  .timeline-entry .timeline-entry-inner {
    .timeline-icon {
      display: none;
    }

    .timeline-content {
      margin-left: 0;
    }
  }
}

.discussion .timeline-entry {
  margin: 0;
  border-right: none;
}