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
f80ab130
Commit
f80ab130
authored
Mar 30, 2020
by
Sarah GP
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add deprecation comments
Notes deprecated spacing scale and suggests next steps to be taken.
parent
be275e00
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
69 additions
and
3 deletions
+69
-3
app/assets/stylesheets/framework/common.scss
app/assets/stylesheets/framework/common.scss
+35
-2
app/assets/stylesheets/framework/variables.scss
app/assets/stylesheets/framework/variables.scss
+32
-0
app/assets/stylesheets/utilities.scss
app/assets/stylesheets/utilities.scss
+2
-1
No files found.
app/assets/stylesheets/framework/common.scss
View file @
f80ab130
...
@@ -483,6 +483,34 @@ img.emoji {
...
@@ -483,6 +483,34 @@ img.emoji {
}
}
/** COMMON SPACING CLASSES **/
/** COMMON SPACING CLASSES **/
/**
🚨 Do not use these classes — they are deprecated and being removed. 🚨
See https://gitlab.com/gitlab-org/gitlab/issues/36857 for more details.
Instead, if you need a spacing class, add it below using the following values.
$gl-spacing-scale-0: 0;
$gl-spacing-scale-1: 2px;
$gl-spacing-scale-2: 4px;
$gl-spacing-scale-3: 8px;
$gl-spacing-scale-4: 12px;
$gl-spacing-scale-5: 16px;
$gl-spacing-scale-6: 24px;
$gl-spacing-scale-7: 32px;
$gl-spacing-scale-8: 40px;
$gl-spacing-scale-9: 48px;
$gl-spacing-scale-10: 56px;
$gl-spacing-scale-11: 64px;
$gl-spacing-scale-12: 80px;
$gl-spacing-scale-13: 96px;
E.g., a padding top of 96px can be added using:
.gl-shim-pt-13 {
padding-top: 96px;
}
Please use -shim- so it can be differentiated from the old scale classes.
These will be replaced when the Gitlab UI utilities are included.
**/
@each
$index
,
$padding
in
$spacing-scale
{
@each
$index
,
$padding
in
$spacing-scale
{
#{
'.gl-p-
#{
$index
}
'
}
{
padding
:
$padding
;
}
#{
'.gl-p-
#{
$index
}
'
}
{
padding
:
$padding
;
}
#{
'.gl-pl-
#{
$index
}
'
}
{
padding-left
:
$padding
;
}
#{
'.gl-pl-
#{
$index
}
'
}
{
padding-left
:
$padding
;
}
...
@@ -583,13 +611,11 @@ img.emoji {
...
@@ -583,13 +611,11 @@ img.emoji {
.gl-font-size-large
{
font-size
:
$gl-font-size-large
;
}
.gl-font-size-large
{
font-size
:
$gl-font-size-large
;
}
.gl-line-height-24
{
line-height
:
$gl-line-height-24
;
}
.gl-line-height-24
{
line-height
:
$gl-line-height-24
;
}
.gl-line-height-14
{
line-height
:
$gl-line-height-14
;
}
.gl-font-size-0
{
font-size
:
0
;
}
.gl-font-size-0
{
font-size
:
0
;
}
.gl-font-size-12
{
font-size
:
$gl-font-size-12
;
}
.gl-font-size-12
{
font-size
:
$gl-font-size-12
;
}
.gl-font-size-14
{
font-size
:
$gl-font-size-14
;
}
.gl-font-size-14
{
font-size
:
$gl-font-size-14
;
}
.gl-font-size-16
{
font-size
:
$gl-font-size-16
;
}
.gl-font-size-16
{
font-size
:
$gl-font-size-16
;
}
.gl-font-size-20
{
font-size
:
$gl-font-size-20
;
}
.gl-font-size-28
{
font-size
:
$gl-font-size-28
;
}
.gl-font-size-28
{
font-size
:
$gl-font-size-28
;
}
.gl-font-size-42
{
font-size
:
$gl-font-size-42
;
}
.gl-font-size-42
{
font-size
:
$gl-font-size-42
;
}
...
@@ -599,3 +625,10 @@ img.emoji {
...
@@ -599,3 +625,10 @@ img.emoji {
border-top
:
1px
solid
$border-color
;
border-top
:
1px
solid
$border-color
;
}
}
/**
🚨 Do not use these classes — they clash with the Gitlab UI design system and will be removed. 🚨
See https://gitlab.com/gitlab-org/gitlab/issues/36857 for more details.
**/
.gl-line-height-14
{
line-height
:
$gl-line-height-14
;
}
.gl-font-size-20
{
font-size
:
$gl-font-size-20
;
}
app/assets/stylesheets/framework/variables.scss
View file @
f80ab130
...
@@ -11,6 +11,38 @@ $default-transition-duration: 0.15s;
...
@@ -11,6 +11,38 @@ $default-transition-duration: 0.15s;
$contextual-sidebar-width
:
220px
;
$contextual-sidebar-width
:
220px
;
$contextual-sidebar-collapsed-width
:
50px
;
$contextual-sidebar-collapsed-width
:
50px
;
$toggle-sidebar-height
:
48px
;
$toggle-sidebar-height
:
48px
;
/**
🚨 Do not use this spacing scale — it is deprecated and being removed. 🚨
See https://gitlab.com/gitlab-org/gitlab/issues/36857 for more details.
Instead, if you need a spacing class, add it to app/assets/stylesheets/framework/common.scss,
using the following values.
$gl-spacing-scale-0: 0;
$gl-spacing-scale-1: 2px;
$gl-spacing-scale-2: 4px;
$gl-spacing-scale-3: 8px;
$gl-spacing-scale-4: 12px;
$gl-spacing-scale-5: 16px;
$gl-spacing-scale-6: 24px;
$gl-spacing-scale-7: 32px;
$gl-spacing-scale-8: 40px;
$gl-spacing-scale-9: 48px;
$gl-spacing-scale-10: 56px;
$gl-spacing-scale-11: 64px;
$gl-spacing-scale-12: 80px;
$gl-spacing-scale-13: 96px;
E.g., a padding top of 96px can be added using:
.gl-shim-pt-13 {
padding-top: 96px;
}
Please use -shim- so it can be differentiated from the old scale classes.
These will be replaced when the Gitlab UI utilities are included.
**/
$spacing-scale
:
(
$spacing-scale
:
(
0
:
0
,
0
:
0
,
1
:
#{
0
.5
*
$grid-size
}
,
1
:
#{
0
.5
*
$grid-size
}
,
...
...
app/assets/stylesheets/utilities.scss
View file @
f80ab130
...
@@ -67,7 +67,8 @@
...
@@ -67,7 +67,8 @@
.gl-bg-purple-light
{
background-color
:
$purple-light
;
}
.gl-bg-purple-light
{
background-color
:
$purple-light
;
}
// Classes using mixins coming from @gitlab-ui
// Classes using mixins coming from @gitlab-ui
// can be removed once https://gitlab.com/gitlab-org/gitlab/merge_requests/19021 has been merged
// can be removed once the mixins are added.
// See https://gitlab.com/gitlab-org/gitlab/issues/36857 for more details.
.gl-bg-blue-50
{
@include
gl-bg-blue-50
;
}
.gl-bg-blue-50
{
@include
gl-bg-blue-50
;
}
.gl-bg-red-100
{
@include
gl-bg-red-100
;
}
.gl-bg-red-100
{
@include
gl-bg-red-100
;
}
.gl-bg-orange-100
{
@include
gl-bg-orange-100
;
}
.gl-bg-orange-100
{
@include
gl-bg-orange-100
;
}
...
...
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