diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-12-15 17:53:34 +0000 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-12-15 17:53:34 +0000 |
commit | ee258322f5565211776c3e4f521b2b1df6b9be5b (patch) | |
tree | 256db8d92894086fec093b8e0f781886a90d3f59 | |
parent | 4493d3fd556af6ded47f940f258b0fc26c9eb3e8 (diff) | |
parent | f31dfae28a4905becfeb38f8ad3aef0f99b02c96 (diff) | |
download | gitlab-ce-ee258322f5565211776c3e4f521b2b1df6b9be5b.tar.gz |
Merge branch 'fix-panel-height' into 'master'
Fix inline panel heading height
The `line-height` was added so that headings in the panels on the settings page had the same height as headings elsewhere, but the style applied everywhere :)
Before:
(Look at the "Unstarted Issues" heading)


After:


cc @skyruler
cc @rspeicher 8.3 please!
See merge request !2106
-rw-r--r-- | app/assets/stylesheets/framework/panels.scss | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/assets/stylesheets/framework/panels.scss b/app/assets/stylesheets/framework/panels.scss index 61053aff91a..57b9451b264 100644 --- a/app/assets/stylesheets/framework/panels.scss +++ b/app/assets/stylesheets/framework/panels.scss @@ -3,7 +3,6 @@ .panel-heading { padding: 7px $gl-padding; - line-height: 42px !important; } .panel-body { @@ -15,3 +14,7 @@ } } } + +.container-blank .panel .panel-heading { + line-height: 42px !important; +} |