mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-23 19:46:12 +10:00
Follow the CSS Style Guide rules for using shorthand where possible. Fixes violations of the Shorthand rule. All of these were done manually and I reviewed each change to verify, so they should all be right. Discussed in #14299. cc: @jschatz1 See merge request !3313
30 lines
379 B
SCSS
30 lines
379 B
SCSS
html {
|
|
overflow-y: scroll;
|
|
|
|
&.touch .tooltip { display: none !important; }
|
|
}
|
|
|
|
body {
|
|
&.navless {
|
|
background-color: white !important;
|
|
}
|
|
}
|
|
|
|
.container {
|
|
padding-top: 0;
|
|
z-index: 5;
|
|
}
|
|
|
|
.container .content {
|
|
margin: 0;
|
|
}
|
|
|
|
.navless-container {
|
|
margin-top: $header-height;
|
|
padding-top: $gl-padding * 2;
|
|
}
|
|
|
|
.container-limited {
|
|
max-width: $fixed-layout-width;
|
|
}
|