summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/pages/issuable.scss
blob: 13e09d5596f658e12f363bebf1bd7dc08c9f5eba (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
@media (max-width: $screen-sm-max) {
  .issuable-affix {
    margin-top: 20px;
  }
}

@media (max-width: $screen-md-max) {
  .issuable-affix {
    position: static;
  }
}

@media (min-width: $screen-md-max) {
  .issuable-affix {
    &.affix-top {
      position: static;
    }

    &.affix {
      position: fixed;
      top: 70px;
      width: 220px;
    }
  }
}

.issuable-context-title {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 5px;

  .avatar {
    margin-left: 0;
  }

  label {
    color: #666;
    font-weight: normal;
    margin-right: 4px;
  }
}

.issuable-affix .context {
  font-size: 13px;

  .btn { font-size: 13px; }
}

.filter-item {
  margin-right: 15px;

  > span {
    margin-right: 4px;
  }
}