diff options
author | Robert Speicher <rspeicher@gmail.com> | 2015-10-14 15:38:19 -0400 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2015-10-14 15:38:19 -0400 |
commit | 386b13d624e065920fd5730d9d6a0d7983f005cb (patch) | |
tree | 5a5707989830fd51dee77c09ea2e15b3a1d710e7 | |
parent | a3a80eac110fb9f195eaccd3afd8e8611d1924dc (diff) | |
download | gitlab-ce-386b13d624e065920fd5730d9d6a0d7983f005cb.tar.gz |
Allow highlight themes to override `pre` colors
-rw-r--r-- | app/assets/stylesheets/framework/typography.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/stylesheets/framework/typography.scss b/app/assets/stylesheets/framework/typography.scss index bf36f96cc97..6ccc084526a 100644 --- a/app/assets/stylesheets/framework/typography.scss +++ b/app/assets/stylesheets/framework/typography.scss @@ -101,9 +101,9 @@ pre { margin: 12px 0 12px 0 !important; - background-color: #f8fafc !important; + background-color: #f8fafc; font-size: 13px !important; - color: #5b6169 !important; + color: #5b6169; line-height: 1.6em !important; @include border-radius(2px); } |