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
ef046015
Commit
ef046015
authored
Apr 14, 2020
by
Mike Greiling
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'psi-scss-trim' into 'master'
Dedupe some SCSS variables See merge request gitlab-org/gitlab!28296
parents
d4066b09
85eb62a7
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
13 deletions
+12
-13
app/assets/stylesheets/framework/buttons.scss
app/assets/stylesheets/framework/buttons.scss
+2
-2
app/assets/stylesheets/framework/variables.scss
app/assets/stylesheets/framework/variables.scss
+5
-6
app/assets/stylesheets/pages/boards.scss
app/assets/stylesheets/pages/boards.scss
+1
-1
app/assets/stylesheets/pages/commits.scss
app/assets/stylesheets/pages/commits.scss
+1
-1
app/assets/stylesheets/pages/issuable.scss
app/assets/stylesheets/pages/issuable.scss
+1
-1
app/assets/stylesheets/pages/tree.scss
app/assets/stylesheets/pages/tree.scss
+2
-2
No files found.
app/assets/stylesheets/framework/buttons.scss
View file @
ef046015
...
...
@@ -120,7 +120,7 @@
}
@mixin
btn-white
{
@include
btn-color
(
$white
,
$border-color
,
$white-normal
,
$border-white-normal
,
$white-dark
,
$border-
gray-dark
,
$gl-text-color
);
@include
btn-color
(
$white
,
$border-color
,
$white-normal
,
$border-white-normal
,
$white-dark
,
$border-
white-normal
,
$gl-text-color
);
}
@mixin
btn-with-margin
{
...
...
@@ -365,7 +365,7 @@
.active
{
box-shadow
:
$gl-btn-active-background
;
border
:
1px
solid
$border-
gray-dark
!
important
;
border
:
1px
solid
$border-
white-normal
!
important
;
background-color
:
$btn-active-gray-light
!
important
;
}
}
...
...
app/assets/stylesheets/framework/variables.scss
View file @
ef046015
...
...
@@ -329,7 +329,6 @@ $border-white-normal: darken($white-normal, $darken-border-factor);
$border-gray-light
:
darken
(
$gray-light
,
$darken-border-factor
);
$border-gray-normal
:
darken
(
$gray-normal
,
$darken-border-factor
);
$border-gray-normal-dashed
:
darken
(
$gray-normal
,
$darken-border-dashed-factor
);
$border-gray-dark
:
darken
(
$white-normal
,
$darken-border-factor
);
/*
* UI elements
...
...
@@ -350,13 +349,13 @@ $gl-font-size-small: 12px;
$gl-font-size-large
:
16px
;
$gl-font-weight-normal
:
400
;
$gl-font-weight-bold
:
600
;
$gl-text-color
:
#2e2e2e
;
$gl-text-color-secondary
:
#70707
0
;
$gl-text-color-tertiary
:
#919191
;
$gl-text-color
:
$gray-900
;
$gl-text-color-secondary
:
$gray-70
0
;
$gl-text-color-tertiary
:
$gray-600
;
$gl-text-color-quaternary
:
#d6d6d6
;
$gl-text-color-inverted
:
rgba
(
255
,
255
,
255
,
1
)
;
$gl-text-color-inverted
:
$white
;
$gl-text-color-secondary-inverted
:
rgba
(
255
,
255
,
255
,
0
.85
);
$gl-text-color-disabled
:
#919191
;
$gl-text-color-disabled
:
$gray-600
;
$gl-grayish-blue
:
#7f8fa4
;
$gl-gray-dark
:
#313236
;
$gl-gray-light
:
#5c5c5c
;
...
...
app/assets/stylesheets/pages/boards.scss
View file @
ef046015
...
...
@@ -475,7 +475,7 @@
}
.board-card
{
border
:
1px
solid
$border-
gray-dark
;
border
:
1px
solid
$border-
white-normal
;
box-shadow
:
0
1px
2px
rgba
(
$issue-boards-card-shadow
,
0
.3
);
cursor
:
pointer
;
}
...
...
app/assets/stylesheets/pages/commits.scss
View file @
ef046015
...
...
@@ -131,7 +131,7 @@
color
:
$gl-text-color-secondary
;
padding
:
1px
$gl-padding-4
;
cursor
:
pointer
;
border
:
1px
solid
$border-
gray-dark
;
border
:
1px
solid
$border-
white-normal
;
border-radius
:
$border-radius-default
;
margin-left
:
5px
;
font-size
:
12px
;
...
...
app/assets/stylesheets/pages/issuable.scss
View file @
ef046015
...
...
@@ -426,7 +426,7 @@
height
:
$sidebar-toggle-height
;
margin-left
:
0
;
padding-left
:
0
;
border-bottom
:
1px
solid
$border-
gray-dark
;
border-bottom
:
1px
solid
$border-
white-normal
;
}
a
.gutter-toggle
{
...
...
app/assets/stylesheets/pages/tree.scss
View file @
ef046015
...
...
@@ -130,8 +130,8 @@
&
.selected
{
td
{
background
:
$white-normal
;
border-top
:
1px
solid
$border-
gray-dark
;
border-bottom
:
1px
solid
$border-
gray-dark
;
border-top
:
1px
solid
$border-
white-normal
;
border-bottom
:
1px
solid
$border-
white-normal
;
}
}
}
...
...
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