Commit f106ad51 authored by Filipa Lacerda's avatar Filipa Lacerda

Merge branch '28495-content-shifting' into 'master'

Keep right padding the same whether sidebar is open or not

Closes #28495

See merge request !9422
parents 176cd2ba c468ad75
...@@ -29,14 +29,16 @@ ...@@ -29,14 +29,16 @@
} }
} }
.right-sidebar-collapsed { @media (min-width: $screen-sm-min) {
padding-right: 0;
@media (min-width: $screen-sm-min) {
.content-wrapper { .content-wrapper {
padding-right: $gutter_collapsed_width; padding-right: $gutter_collapsed_width;
} }
}
.right-sidebar-collapsed {
padding-right: 0;
@media (min-width: $screen-sm-min) {
.merge-request-tabs-holder.affix { .merge-request-tabs-holder.affix {
right: $gutter_collapsed_width; right: $gutter_collapsed_width;
} }
...@@ -54,12 +56,6 @@ ...@@ -54,12 +56,6 @@
.right-sidebar-expanded { .right-sidebar-expanded {
padding-right: 0; padding-right: 0;
@media (min-width: $screen-sm-min) and (max-width: $screen-sm-max) {
&:not(.build-sidebar):not(.wiki-sidebar) {
padding-right: $gutter_collapsed_width;
}
}
@media (min-width: $screen-md-min) { @media (min-width: $screen-md-min) {
.content-wrapper { .content-wrapper {
padding-right: $gutter_width; padding-right: $gutter_width;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment