BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
7c6c4960
Commit
7c6c4960
authored
Jan 27, 2017
by
Clement Ho
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'contribution-calendar-scroll' into 'master'
Contribution calendar now scrolls right by default See merge request !6192
parents
272337e8
0d3fb680
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
1 deletion
+6
-1
calendar.js
app/assets/javascripts/users/calendar.js
+1
-1
calendar.scss
app/assets/stylesheets/framework/calendar.scss
+1
-0
contribution-calendar-scroll.yml
changelogs/unreleased/contribution-calendar-scroll.yml
+4
-0
No files found.
app/assets/javascripts/users/calendar.js
View file @
7c6c4960
...
...
@@ -158,7 +158,7 @@
};
Calendar
.
prototype
.
renderMonths
=
function
()
{
return
this
.
svg
.
append
(
'g'
).
selectAll
(
'text'
).
data
(
this
.
months
).
enter
().
append
(
'text'
).
attr
(
'x'
,
function
(
date
)
{
return
this
.
svg
.
append
(
'g'
).
attr
(
'direction'
,
'ltr'
).
selectAll
(
'text'
).
data
(
this
.
months
).
enter
().
append
(
'text'
).
attr
(
'x'
,
function
(
date
)
{
return
date
.
x
;
}).
attr
(
'y'
,
10
).
attr
(
'class'
,
'user-contrib-text'
).
text
((
function
(
_this
)
{
return
function
(
date
)
{
...
...
app/assets/stylesheets/framework/calendar.scss
View file @
7c6c4960
.calender-block
{
padding-left
:
0
;
padding-right
:
0
;
direction
:
rtl
;
@media
(
min-width
:
$screen-sm-min
)
and
(
max-width
:
$screen-md-max
)
{
overflow-x
:
scroll
;
...
...
changelogs/unreleased/contribution-calendar-scroll.yml
0 → 100644
View file @
7c6c4960
---
title
:
contribution calendar scrolls from right to left
merge_request
:
author
:
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