summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/wells.scss
blob: 192939f4527dd06d60a6e34df80f7a19b33b8478 (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
.info-well {
  background: $background-color;
  color: $gl-gray;
  border: 1px solid $border-color;
  border-radius: $border-radius-default;

  .well-segment {
    padding: $gl-padding;

    &:not(:last-of-type) {
      border-bottom: 1px solid $well-inner-border;
    }

    &.branch-info {
      .monospace,
      .commit-info {
        margin-left: 4px;
      }
    }
  }

  .icon-container {
    display: inline-block;
    margin-right: 8px;

    svg {
      position: relative;
      top: 2px;
      height: 16px;
      width: 16px;
    }

    &.commit-icon {
      svg {
        path {
          fill: $gl-text-color;
        }
      }
    }
  }

  .label.label-gray {
    background-color: $well-expand-item;
  }
}