detail_page.scss 599 Bytes
Newer Older
1
.detail-page-header {
Phil Hughes's avatar
Phil Hughes committed
2
  padding: $gl-padding-top 0;
3 4 5
  border-bottom: 1px solid $border-color;
  color: #5c5d5e;
  font-size: 16px;
Andriy Dyadyura's avatar
Andriy Dyadyura committed
6
  line-height: 34px;
7 8 9 10 11 12 13 14

  .author {
    color: #5c5d5e;
  }

  .identifier {
    color: #5c5d5e;
  }
15

16
  .issue_created_ago, .author_link {
17 18
    white-space: nowrap;
  }
19 20 21 22 23 24 25 26 27 28 29 30
}

.detail-page-description {
  .title {
    margin: 0;
    font-size: 23px;
    color: #313236;
  }

  .description {
    margin-top: 6px;

31 32 33 34 35 36
    p {
      overflow-x: auto;

      &:last-child {
        margin-bottom: 0;
      }
37 38
    }
  }
Annabel Dunstone's avatar
Annabel Dunstone committed
39 40 41 42 43 44

  .wiki {
    code {
      white-space: pre-wrap;
    }
  }
45
}