BigW Consortium Gitlab

mobile.scss 820 Bytes
Newer Older
1
/** Common mobile (screen XS, SM) styles **/
2 3 4 5 6 7 8 9 10 11 12 13 14 15
@media (max-width: $screen-xs-max) {
  .container .content {
    margin-top: 20px;
  }

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

    .badge {
      display: none;
    }
  }
16 17

  .issues-filters,
18 19
  .dash-projects-filters,
  .check-all-holder {
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
    display: none;
  }

  .rss-btn {
    display: none !important;
  }

  .project-home-panel {
    .star-fork-buttons {
      padding-top: 10px;
      padding-right: 15px;
    }
  }

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

39 40 41 42 43 44 45 46 47 48
@media (max-width: $screen-sm-max) {
  .issues-filters {
    .milestone-filter, .labels-filter {
      display: none;
    }
  }

  .page-title .new-issue-link {
    display: none;
  }
49 50 51 52

  .issue_edited_ago, .note_edited_ago {
    display: none;
  }
53
}