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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-01-16 10:24:30 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-01-16 10:24:30 +0300
commit4dfa1ed269fb5a483d37eeffc8009f85f13d1e0f (patch)
tree0c86bb0e905a3f5a7345a691452778c975e91abd /app/assets/stylesheets/generic/mobile.scss
parent67b42e26cf955cf6dc240fd77935a47fbfac6694 (diff)
Add some mobile fixes to UI
Diffstat (limited to 'app/assets/stylesheets/generic/mobile.scss')
-rw-r--r--app/assets/stylesheets/generic/mobile.scss33
1 files changed, 32 insertions, 1 deletions
diff --git a/app/assets/stylesheets/generic/mobile.scss b/app/assets/stylesheets/generic/mobile.scss
index c164b07b104..bcd28098502 100644
--- a/app/assets/stylesheets/generic/mobile.scss
+++ b/app/assets/stylesheets/generic/mobile.scss
@@ -1,4 +1,4 @@
-/** Common mobile (screen XS) styles **/
+/** Common mobile (screen XS, SM) styles **/
@media (max-width: $screen-xs-max) {
.container .content {
margin-top: 20px;
@@ -13,5 +13,36 @@
display: none;
}
}
+
+ .issues-filters,
+ .dash-projects-filters {
+ display: none;
+ }
+
+ .rss-btn {
+ display: none !important;
+ }
+
+ .project-home-panel {
+ .star-fork-buttons {
+ padding-top: 10px;
+ padding-right: 15px;
+ }
+ }
+
+ .project-home-links {
+ display: none;
+ }
}
+@media (max-width: $screen-sm-max) {
+ .issues-filters {
+ .milestone-filter, .labels-filter {
+ display: none;
+ }
+ }
+
+ .page-title .new-issue-link {
+ display: none;
+ }
+}