summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-08-14 11:29:45 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-08-14 11:29:45 +0200
commitec910c33072fecb60e9d47423da65bdbec7c3343 (patch)
tree0d2e339f9476f8bc4a4c8cce009e8a6f9c5aab9d
parente8889b154ec726c7b9486ec95560c3a4075a4135 (diff)
downloadgitlab-ce-ec910c33072fecb60e9d47423da65bdbec7c3343.tar.gz
Set max-width for README, issue and merge request description
It allows easier text reading on big screens Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-rw-r--r--app/assets/stylesheets/base/variables.scss1
-rw-r--r--app/assets/stylesheets/pages/issuable.scss6
-rw-r--r--app/assets/stylesheets/pages/tree.scss3
3 files changed, 10 insertions, 0 deletions
diff --git a/app/assets/stylesheets/base/variables.scss b/app/assets/stylesheets/base/variables.scss
index 08f153dfbc9..cb439a0e0bf 100644
--- a/app/assets/stylesheets/base/variables.scss
+++ b/app/assets/stylesheets/base/variables.scss
@@ -13,6 +13,7 @@ $code_line_height: 1.5;
$border-color: #E5E5E5;
$background-color: #f5f5f5;
$header-height: 50px;
+$readable-width: 1100px;
/*
diff --git a/app/assets/stylesheets/pages/issuable.scss b/app/assets/stylesheets/pages/issuable.scss
index 586e7b5f8da..3f617e72b02 100644
--- a/app/assets/stylesheets/pages/issuable.scss
+++ b/app/assets/stylesheets/pages/issuable.scss
@@ -45,3 +45,9 @@
.btn { font-size: 13px; }
}
+
+.issuable-details {
+ .description {
+ max-width: $readable-width;
+ }
+}
diff --git a/app/assets/stylesheets/pages/tree.scss b/app/assets/stylesheets/pages/tree.scss
index 092918e4de1..5f1a3db4fb6 100644
--- a/app/assets/stylesheets/pages/tree.scss
+++ b/app/assets/stylesheets/pages/tree.scss
@@ -116,6 +116,9 @@
}
.readme-holder {
+ margin: 0 auto;
+ max-width: $readable-width;
+
.readme-file-title {
font-size: 14px;
font-weight: bold;