summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/mobile.scss
blob: e587ba80f11b2e96f309de6b08e6b28c8a1c9695 (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
/** Common mobile (screen XS, SM) styles **/
@include media-breakpoint-down(xs) {
  .container .content {
    margin-top: 20px;
  }

  .nav-links > li > a {
    padding: 10px;
    font-size: 12px;
    margin-right: 3px;

    .badge.badge-pill {
      display: none;
    }
  }

  .issues-details-filters:not(.filtered-search-block),
  .dash-projects-filters,
  .check-all-holder {
    display: none;
  }

  .rss-btn {
    display: none;
  }

  .project-home-links {
    display: none;
  }

  .project-home-panel {
    padding-left: 0 !important;

    .project-repo-buttons,
    .git-clone-holder {
      display: none;
    }
  }

  .group-buttons {
    display: none;
  }

  .container .title {
    padding-left: 15px !important;
  }

  .nav-links,
  .nav-links {
    li a {
      font-size: 14px;
      padding: 19px 10px;
    }
  }

  .activity-filter-block {
    display: none;
  }
}