wells.scss 890 Bytes
Newer Older
1
.info-well {
2
  background: $gray-light;
3
  color: $gl-text-color;
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
  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;
  }
}
46 47

.light-well {
48
  background-color: $gray-light;
49 50 51 52 53 54 55 56 57 58
  padding: 15px;
}

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