Limit the width of project READMEs

This commit is contained in:
Phil Hughes 2017-06-23 10:33:47 +00:00 committed by Annabel Dunstone Gray
parent 6ff571aa9a
commit 0b7d7df7a5
5 changed files with 13 additions and 2 deletions

View File

@ -12,6 +12,12 @@
&.readme-holder {
margin: $gl-padding 0;
&.limited-width-container .file-content {
max-width: $limited-layout-width-sm;
margin-left: auto;
margin-right: auto;
}
}
table {

View File

@ -53,7 +53,7 @@ body {
}
&.limit-container-width-sm {
max-width: 790px;
max-width: $limited-layout-width-sm;
}
}

View File

@ -161,6 +161,7 @@ $progress-color: #c0392b;
$header-height: 50px;
$fixed-layout-width: 1280px;
$limited-layout-width: 990px;
$limited-layout-width-sm: 790px;
$gl-avatar-size: 40px;
$error-exclamation-point: $red-500;
$border-radius-default: 3px;

View File

@ -1,5 +1,5 @@
- if readme.rich_viewer
%article.file-holder.readme-holder
%article.file-holder.readme-holder{ class: ("limited-width-container" unless fluid_layout) }
.js-file-title.file-title
= blob_icon readme.mode, readme.name
= link_to namespace_project_blob_path(@project.namespace, @project, tree_join(@ref, readme.path)) do

View File

@ -0,0 +1,4 @@
---
title: Limit the width of the projects README text
merge_request:
author: