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
606f8e91
Commit
606f8e91
authored
Jan 27, 2016
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Increase contrast between highlighted code comments and inline diff marker.
parent
a93f7099
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
8 deletions
+9
-8
CHANGELOG
CHANGELOG
+1
-0
app/assets/stylesheets/highlight/dark.scss
app/assets/stylesheets/highlight/dark.scss
+2
-2
app/assets/stylesheets/highlight/monokai.scss
app/assets/stylesheets/highlight/monokai.scss
+2
-2
app/assets/stylesheets/highlight/solarized_dark.scss
app/assets/stylesheets/highlight/solarized_dark.scss
+2
-2
app/assets/stylesheets/highlight/solarized_light.scss
app/assets/stylesheets/highlight/solarized_light.scss
+2
-2
No files found.
CHANGELOG
View file @
606f8e91
...
@@ -20,6 +20,7 @@ v 8.4.2 (unreleased)
...
@@ -20,6 +20,7 @@ v 8.4.2 (unreleased)
improvement when checking if a repository was empty
improvement when checking if a repository was empty
- Add instrumentation for Gitlab::Git::Repository instance methods so we can
- Add instrumentation for Gitlab::Git::Repository instance methods so we can
track them in Performance Monitoring.
track them in Performance Monitoring.
- Increase contrast between highlighted code comments and inline diff marker.
v 8.4.2 (unreleased)
v 8.4.2 (unreleased)
- Fix method undefined when using external commit status in builds
- Fix method undefined when using external commit status in builds
...
...
app/assets/stylesheets/highlight/dark.scss
View file @
606f8e91
...
@@ -22,11 +22,11 @@
...
@@ -22,11 +22,11 @@
// Diff line
// Diff line
.line_holder
{
.line_holder
{
.diff-line-num.new
,
.line_content.new
{
.diff-line-num.new
,
.line_content.new
{
@include
diff_background
(
rgba
(
51
,
255
,
51
,
0
.1
)
,
rgba
(
51
,
255
,
51
,
0
.
3
)
,
#808080
);
@include
diff_background
(
rgba
(
51
,
255
,
51
,
0
.1
)
,
rgba
(
51
,
255
,
51
,
0
.
2
)
,
#808080
);
}
}
.diff-line-num.old
,
.line_content.old
{
.diff-line-num.old
,
.line_content.old
{
@include
diff_background
(
rgba
(
255
,
51
,
51
,
0
.2
)
,
rgba
(
255
,
51
,
51
,
0
.
3
)
,
#808080
);
@include
diff_background
(
rgba
(
255
,
51
,
51
,
0
.2
)
,
rgba
(
255
,
51
,
51
,
0
.
25
)
,
#808080
);
}
}
.line_content.match
{
.line_content.match
{
...
...
app/assets/stylesheets/highlight/monokai.scss
View file @
606f8e91
...
@@ -22,11 +22,11 @@
...
@@ -22,11 +22,11 @@
// Diff line
// Diff line
.line_holder
{
.line_holder
{
.diff-line-num.new
,
.line_content.new
{
.diff-line-num.new
,
.line_content.new
{
@include
diff_background
(
rgba
(
166
,
226
,
46
,
0
.
2
)
,
rgba
(
166
,
226
,
46
,
0
.3
)
,
#808080
);
@include
diff_background
(
rgba
(
166
,
226
,
46
,
0
.
1
)
,
rgba
(
166
,
226
,
46
,
0
.15
)
,
#808080
);
}
}
.diff-line-num.old
,
.line_content.old
{
.diff-line-num.old
,
.line_content.old
{
@include
diff_background
(
rgba
(
254
,
147
,
140
,
0
.
2
)
,
rgba
(
254
,
147
,
140
,
0
.3
)
,
#808080
);
@include
diff_background
(
rgba
(
254
,
147
,
140
,
0
.
15
)
,
rgba
(
254
,
147
,
140
,
0
.2
)
,
#808080
);
}
}
.line_content.match
{
.line_content.match
{
...
...
app/assets/stylesheets/highlight/solarized_dark.scss
View file @
606f8e91
...
@@ -22,11 +22,11 @@
...
@@ -22,11 +22,11 @@
// Diff line
// Diff line
.line_holder
{
.line_holder
{
.diff-line-num.new
,
.line_content.new
{
.diff-line-num.new
,
.line_content.new
{
@include
diff_background
(
rgba
(
133
,
153
,
0
,
0
.
2
)
,
rgba
(
133
,
153
,
0
,
0
.3
)
,
#113b46
);
@include
diff_background
(
rgba
(
133
,
153
,
0
,
0
.
15
)
,
rgba
(
133
,
153
,
0
,
0
.25
)
,
#113b46
);
}
}
.diff-line-num.old
,
.line_content.old
{
.diff-line-num.old
,
.line_content.old
{
@include
diff_background
(
rgba
(
220
,
50
,
47
,
0
.3
)
,
rgba
(
220
,
50
,
47
,
0
.
3
)
,
#113b46
);
@include
diff_background
(
rgba
(
220
,
50
,
47
,
0
.3
)
,
rgba
(
220
,
50
,
47
,
0
.
25
)
,
#113b46
);
}
}
.line_content.match
{
.line_content.match
{
...
...
app/assets/stylesheets/highlight/solarized_light.scss
View file @
606f8e91
...
@@ -22,11 +22,11 @@
...
@@ -22,11 +22,11 @@
// Diff line
// Diff line
.line_holder
{
.line_holder
{
.diff-line-num.new
,
.line_content.new
{
.diff-line-num.new
,
.line_content.new
{
@include
diff_background
(
rgba
(
133
,
153
,
0
,
0
.2
)
,
rgba
(
133
,
153
,
0
,
0
.
3
)
,
#c5d0d4
);
@include
diff_background
(
rgba
(
133
,
153
,
0
,
0
.2
)
,
rgba
(
133
,
153
,
0
,
0
.
25
)
,
#c5d0d4
);
}
}
.diff-line-num.old
,
.line_content.old
{
.diff-line-num.old
,
.line_content.old
{
@include
diff_background
(
rgba
(
220
,
50
,
47
,
0
.2
)
,
rgba
(
220
,
50
,
47
,
0
.
3
)
,
#c5d0d4
);
@include
diff_background
(
rgba
(
220
,
50
,
47
,
0
.2
)
,
rgba
(
220
,
50
,
47
,
0
.
25
)
,
#c5d0d4
);
}
}
.line_content.match
{
.line_content.match
{
...
...
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