Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/generic/mobile.scss')
-rw-r--r--app/assets/stylesheets/generic/mobile.scss69
1 files changed, 0 insertions, 69 deletions
diff --git a/app/assets/stylesheets/generic/mobile.scss b/app/assets/stylesheets/generic/mobile.scss
deleted file mode 100644
index 71a1fc4493f..00000000000
--- a/app/assets/stylesheets/generic/mobile.scss
+++ /dev/null
@@ -1,69 +0,0 @@
-/** Common mobile (screen XS, SM) styles **/
-@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;
- }
- }
-
- .issues-filters,
- .dash-projects-filters,
- .check-all-holder {
- display: none;
- }
-
- .rss-btn {
- display: none !important;
- }
-
- .project-home-links {
- display: none;
- }
-}
-
-@media (max-width: $screen-sm-max) {
- .issues-filters {
- .milestone-filter, .labels-filter {
- display: none;
- }
- }
-
- .page-title {
- .note_created_ago, .new-issue-link {
- display: none;
- }
- }
-
- .issue_edited_ago, .note_edited_ago {
- display: none;
- }
-
- aside {
- display: none;
- }
-
- .show-aside {
- display: block !important;
- }
-}
-
-.show-aside {
- display: none;
- position: fixed;
- right: 0px;
- top: 30%;
- padding: 5px 15px;
- background: #EEE;
- font-size: 20px;
- color: #777;
- z-index: 100;
- @include box-shadow(0 1px 2px #DDD);
-}