BigW Consortium Gitlab

timeline.scss 1008 Bytes
Newer Older
1
.timeline {
2
  @include basic-list;
3

4 5
  margin: 0;
  padding: 0;
6

7
  .timeline-entry {
Fatih Acet committed
8
    padding: $gl-padding $gl-btn-padding 11px;
9
    border-color: $white-normal;
10
    color: $gl-text-color;
11
    border-bottom: 1px solid $border-white-light;
12

13
    &:target {
14
      background: $line-target-blue;
15 16
    }

17 18
    .avatar {
      margin-right: 15px;
19 20
    }

21 22 23 24 25
    .controls {
      padding-top: 10px;
      float: right;
    }
  }
26

27 28 29
  .note-text {
    p:last-child {
      margin-bottom: 0;
30 31
    }
  }
32

33 34
  .system-note {
    .note-text {
35
      color: $gl-text-color !important;
36 37
    }
  }
38 39 40 41

  .diff-file {
    border: 1px solid $border-color;
    border-bottom: none;
Phil Hughes committed
42
    margin: 0;
43
  }
44
}
45 46 47

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

52 53 54 55 56 57 58 59 60 61 62
    .timeline-entry .timeline-entry-inner {
      .timeline-icon {
        display: none;
      }

      .timeline-content {
        margin-left: 0;
      }
    }
  }
}
63 64 65 66 67

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