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:
authorArinde Eniola <eniolaarinde1@gmail.com>2016-04-03 00:54:22 +0300
committerArinde Eniola <eniolaarinde1@gmail.com>2016-04-06 22:27:30 +0300
commit02dcc4188c8816cd4363a98e60ae54309623ea6f (patch)
tree4bc02de51136100c62546c8d0089685ce2f9a458 /app/assets/stylesheets/pages/labels.scss
parent802c6e7bba0444ec5fa4757da30c21fd28a5ccbc (diff)
make the view responsive for extra small device
Diffstat (limited to 'app/assets/stylesheets/pages/labels.scss')
-rw-r--r--app/assets/stylesheets/pages/labels.scss20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/labels.scss b/app/assets/stylesheets/pages/labels.scss
index 1d5d402ba04..e77d43fa29c 100644
--- a/app/assets/stylesheets/pages/labels.scss
+++ b/app/assets/stylesheets/pages/labels.scss
@@ -52,6 +52,10 @@
.label-name {
display: inline-block;
width: 21%;
+
+ @media (max-width: $screen-xs-min) {
+ display: block;
+ }
}
.label {
@@ -80,10 +84,21 @@
.prepend-left-10 {
display: inline-block;
width: 45%;
+
+ @media (max-width: $screen-xs-min) {
+ display: block;
+ width: 100%;
+ margin-left: 0px;
+ padding: 10px 0;
+ }
}
.pull-right {
+ @media (max-width: $screen-xs-min) {
+ float: none !important;
+ }
+
.action-buttons {
border-color: transparent;
margin: 7px;
@@ -97,6 +112,11 @@
a {
color: $gl-text-color;
}
+
+ @media (max-width: $screen-xs-min) {
+ display: block;
+ margin-bottom: 10px;
+ }
}
}
}