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
70cdcbf3
Commit
70cdcbf3
authored
Nov 09, 2017
by
Annabel Dunstone Gray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
EE port of enable-scss-lint-unnecessary-mantissa
parent
01932584
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
10 deletions
+10
-10
.scss-lint.yml
.scss-lint.yml
+1
-1
app/assets/stylesheets/framework/files.scss
app/assets/stylesheets/framework/files.scss
+4
-4
app/assets/stylesheets/framework/variables.scss
app/assets/stylesheets/framework/variables.scss
+3
-3
app/assets/stylesheets/pages/environments.scss
app/assets/stylesheets/pages/environments.scss
+1
-1
app/assets/stylesheets/pages/note_form.scss
app/assets/stylesheets/pages/note_form.scss
+1
-1
No files found.
.scss-lint.yml
View file @
70cdcbf3
...
...
@@ -241,7 +241,7 @@ linters:
# Numeric values should not contain unnecessary fractional portions.
UnnecessaryMantissa
:
enabled
:
fals
e
enabled
:
tru
e
# Do not use parent selector references (&) when they would otherwise
# be unnecessary.
...
...
app/assets/stylesheets/framework/files.scss
View file @
70cdcbf3
...
...
@@ -101,13 +101,13 @@
@for
$i
from
0
through
5
{
.legend-box-
#{
$i
}
{
background-color
:
mix
(
$blame-cyan
,
$blame-blue
,
$i
/
5
.0
*
100%
);
background-color
:
mix
(
$blame-cyan
,
$blame-blue
,
$i
/
5
*
100%
);
}
}
@for
$i
from
1
through
4
{
.legend-box-
#{
$i
+
5
}
{
background-color
:
mix
(
$blame-gray
,
$blame-cyan
,
$i
/
4
.0
*
100%
);
background-color
:
mix
(
$blame-gray
,
$blame-cyan
,
$i
/
4
*
100%
);
}
}
}
...
...
@@ -200,13 +200,13 @@
@for
$i
from
0
through
5
{
td
.blame-commit-age-
#{
$i
}
{
border-left-color
:
mix
(
$blame-cyan
,
$blame-blue
,
$i
/
5
.0
*
100%
);
border-left-color
:
mix
(
$blame-cyan
,
$blame-blue
,
$i
/
5
*
100%
);
}
}
@for
$i
from
1
through
4
{
td
.blame-commit-age-
#{
$i
+
5
}
{
border-left-color
:
mix
(
$blame-gray
,
$blame-cyan
,
$i
/
4
.0
*
100%
);
border-left-color
:
mix
(
$blame-gray
,
$blame-cyan
,
$i
/
4
*
100%
);
}
}
}
...
...
app/assets/stylesheets/framework/variables.scss
View file @
70cdcbf3
...
...
@@ -164,7 +164,7 @@ $gl-text-color: #2e2e2e;
$gl-text-color-secondary
:
#707070
;
$gl-text-color-tertiary
:
#949494
;
$gl-text-color-quaternary
:
#d6d6d6
;
$gl-text-color-inverted
:
rgba
(
255
,
255
,
255
,
1
.0
);
$gl-text-color-inverted
:
rgba
(
255
,
255
,
255
,
1
);
$gl-text-color-secondary-inverted
:
rgba
(
255
,
255
,
255
,
.85
);
$gl-text-green
:
$green-600
;
$gl-text-green-hover
:
$green-700
;
...
...
@@ -493,8 +493,8 @@ $callout-success-color: $green-700;
/*
* Commit Page
*/
$commit-max-width-marker-color
:
rgba
(
0
,
0
,
0
,
0
.0
);
$commit-message-text-area-bg
:
rgba
(
0
,
0
,
0
,
0
.0
);
$commit-max-width-marker-color
:
rgba
(
0
,
0
,
0
,
0
);
$commit-message-text-area-bg
:
rgba
(
0
,
0
,
0
,
0
);
/*
* Common
...
...
app/assets/stylesheets/pages/environments.scss
View file @
70cdcbf3
...
...
@@ -333,7 +333,7 @@
.prometheus-graph-overlay
{
fill
:
none
;
opacity
:
0
.0
;
opacity
:
0
;
pointer-events
:
all
;
}
...
...
app/assets/stylesheets/pages/note_form.scss
View file @
70cdcbf3
...
...
@@ -7,7 +7,7 @@
.diff-file
.diff-content
{
tr
.line_holder
:hover
>
td
.line_note_link
{
opacity
:
1
.0
;
opacity
:
1
;
filter
:
alpha
(
opacity
=
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