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:
authorRyan Harris <harrisryan1@gmail.com>2017-01-09 23:20:42 +0300
committerRyan Harris <harrisryan1@gmail.com>2017-01-09 23:20:42 +0300
commite797f7100d32c5a3089f0c3c934b9bd8d1615e9b (patch)
treea1ddf70463311c2726af6c3bdf13f52b3e92b1c2
parent2955c8cc8b76666404569f00e49457262ffbc895 (diff)
Adjusted widths on Admin Area projects page to prevent misaligned floats
-rw-r--r--app/assets/stylesheets/pages/projects.scss16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/projects.scss b/app/assets/stylesheets/pages/projects.scss
index e30d73886e1..9455ba3b98a 100644
--- a/app/assets/stylesheets/pages/projects.scss
+++ b/app/assets/stylesheets/pages/projects.scss
@@ -587,11 +587,21 @@ pre.light-well {
.project-full-name {
@include str-truncated;
+
+ @media (max-width: $screen-xs-max) {
+ max-width: 50%;
+ }
}
.controls {
line-height: $list-text-height;
+ .badge {
+ @media (max-width: $screen-xs-max) {
+ display: none;
+ }
+ }
+
a:hover {
text-decoration: none;
}
@@ -605,6 +615,12 @@ pre.light-well {
top: 2px;
}
}
+
+ .description p {
+ @media (max-width: $screen-xs-max) {
+ max-width: 50%;
+ }
+ }
}
.bottom {