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
c7ca22c1
Commit
c7ca22c1
authored
Jun 10, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
3bcc13bf
07f8f205
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
9 deletions
+13
-9
app/assets/stylesheets/components/avatar.scss
app/assets/stylesheets/components/avatar.scss
+1
-8
app/assets/stylesheets/framework/mixins.scss
app/assets/stylesheets/framework/mixins.scss
+11
-0
app/assets/stylesheets/pages/diff.scss
app/assets/stylesheets/pages/diff.scss
+1
-1
No files found.
app/assets/stylesheets/components/avatar.scss
View file @
c7ca22c1
...
...
@@ -191,12 +191,5 @@ $identicon-backgrounds: $identicon-red, $identicon-purple, $identicon-indigo, $i
}
.avatar-counter
{
background-color
:
$gray-darkest
;
color
:
$white-light
;
border
:
1px
solid
$gray-normal
;
border-radius
:
1em
;
font-family
:
$regular-font
;
font-size
:
9px
;
line-height
:
16px
;
text-align
:
center
;
@include
avatar-counter
();
}
app/assets/stylesheets/framework/mixins.scss
View file @
c7ca22c1
...
...
@@ -396,3 +396,14 @@
width
:
$gl-font-size
*
$code-line-height
*
0
.9
;
height
:
$gl-font-size
*
$code-line-height
*
0
.9
;
}
@mixin
avatar-counter
(
$border-radius
:
1em
)
{
background-color
:
$gray-darkest
;
color
:
$white-light
;
border
:
1px
solid
$gray-normal
;
border-radius
:
$border-radius
;
font-family
:
$regular-font
;
font-size
:
9px
;
line-height
:
16px
;
text-align
:
center
;
}
app/assets/stylesheets/pages/diff.scss
View file @
c7ca22c1
...
...
@@ -676,7 +676,7 @@ table.code {
.diff-comments-more-count
,
.diff-notes-collapse
{
@
extend
.avatar-counter
;
@
include
avatar-counter
(
50%
)
;
}
.diff-notes-collapse
{
...
...
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