summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/wells.scss
blob: 1c1392f8f67c3094730f73483a76a05189dca0b3 (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
.info-well {
  background: $gray-light;
  color: $gl-text-color;
  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 {
      .commit-sha,
      .commit-info {
        margin-left: 4px;
      }

      .ref-name {
        font-size: 12px;
      }
    }
  }

  .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;
  }
}

.light-well {
  background-color: $gray-light;
  padding: 15px;
}

.well-centered {
  h1 {
    font-weight: normal;
    text-align: center;
    font-size: 48px;
  }
}