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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-12-15 20:53:34 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-12-15 20:53:34 +0300
commitee258322f5565211776c3e4f521b2b1df6b9be5b (patch)
tree256db8d92894086fec093b8e0f781886a90d3f59
parent4493d3fd556af6ded47f940f258b0fc26c9eb3e8 (diff)
parentf31dfae28a4905becfeb38f8ad3aef0f99b02c96 (diff)
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) ![Screen_Shot_2015-12-15_at_17.39.46](/uploads/9dbea4c8b28e3c43bb5d4b5226d7a1ec/Screen_Shot_2015-12-15_at_17.39.46.png) ![Screen_Shot_2015-12-15_at_17.40.19](/uploads/97898418e9a66954c02e8a68b21c08b9/Screen_Shot_2015-12-15_at_17.40.19.png) After: ![Screen_Shot_2015-12-15_at_17.40.45](/uploads/5748aba032889053dd778b39e96fa301/Screen_Shot_2015-12-15_at_17.40.45.png) ![Screen_Shot_2015-12-15_at_17.40.40](/uploads/20240cdc7a6d5665cd32556d1a0e6c1d/Screen_Shot_2015-12-15_at_17.40.40.png) cc @skyruler cc @rspeicher 8.3 please! See merge request !2106
-rw-r--r--app/assets/stylesheets/framework/panels.scss5
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;
+}