Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
d4ed1646
Commit
d4ed1646
authored
Jul 14, 2021
by
Dallas Reedy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix top-side spacing for viewport widths between xs and md
parent
e20771af
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
22 deletions
+13
-22
app/assets/stylesheets/utilities.scss
app/assets/stylesheets/utilities.scss
+11
-20
app/views/layouts/minimal.html.haml
app/views/layouts/minimal.html.haml
+1
-1
ee/app/views/trials/_skip_trial.html.haml
ee/app/views/trials/_skip_trial.html.haml
+1
-1
No files found.
app/assets/stylesheets/utilities.scss
View file @
d4ed1646
...
...
@@ -125,17 +125,22 @@
}
}
// Will be moved to @gitlab/ui in https://gitlab.com/gitlab-org/gitlab-ui/-/issues/1462
.gl-md-mt-11
{
// Will be moved to @gitlab/ui (without the !important) in https://gitlab.com/gitlab-org/gitlab-ui/-/issues/1462
// We only need the bang (!) version until the non-bang version is added to
// @gitlab/ui utitlities.scss. Once there, it will get loaded in the correct
// order to properly override `.gl-mt-6` which is used for narrower screen
// widths (currently that style gets added to the application.css stylesheet
// after this one, so it takes precedence).
.gl-md-mt-11
\
!
{
@media
(
min-width
:
$breakpoint-md
)
{
margin-top
:
$gl-spacing-scale-11
;
margin-top
:
$gl-spacing-scale-11
!
important
;
}
}
// Same as above
.gl-md-pt-11
{
// Same as above
(also without the !important) but for overriding `.gl-pt-6`
.gl-md-pt-11
\
!
{
@media
(
min-width
:
$breakpoint-md
)
{
padding-top
:
$gl-spacing-scale-11
;
padding-top
:
$gl-spacing-scale-11
!
important
;
}
}
...
...
@@ -160,13 +165,6 @@
}
}
// Will be moved to @gitlab/ui in https://gitlab.com/gitlab-org/gitlab-ui/-/issues/1463
.gl-xs-mt-6
{
@media
(
max-width
:
$breakpoint-sm
)
{
margin-top
:
$gl-spacing-scale-6
;
}
}
// Will be moved to @gitlab/ui in https://gitlab.com/gitlab-org/gitlab-ui/-/issues/1165
.gl-xs-mb-4
{
@media
(
max-width
:
$breakpoint-sm
)
{
...
...
@@ -181,13 +179,6 @@
}
}
// Will be moved to @gitlab/ui in https://gitlab.com/gitlab-org/gitlab-ui/-/issues/1463
.gl-xs-pt-6
{
@media
(
max-width
:
$breakpoint-sm
)
{
padding-top
:
$gl-spacing-scale-6
;
}
}
// Will be moved to @gitlab/ui in https://gitlab.com/gitlab-org/gitlab-ui/-/issues/1168
.gl-sm-pr-3
{
@media
(
min-width
:
$breakpoint-sm
)
{
...
...
app/views/layouts/minimal.html.haml
View file @
d4ed1646
...
...
@@ -8,7 +8,7 @@
=
render
'peek/bar'
=
render
"layouts/header/empty"
.layout-page
.content-wrapper.content-wrapper-margin.gl-
md-pt-11.gl-xs-pt-6
.content-wrapper.content-wrapper-margin.gl-
pt-6
{
class:
'gl-md-pt-11!'
}
.alert-wrapper.gl-force-block-formatting-context
=
render
"layouts/broadcast"
.limit-container-width
{
class:
container_class
}
...
...
ee/app/views/trials/_skip_trial.html.haml
View file @
d4ed1646
.gl-
xs-mt-6.gl-md-mt-11
.gl-
mt-6
{
class:
'gl-md-mt-11!'
}
-
if
params
[
:glm_source
]
==
'gitlab.com'
=
link_to
s_
(
'Trials|Go back to GitLab'
),
dashboard_projects_path
,
class:
'block center py-2'
.label
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment