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
3f2555a7
Commit
3f2555a7
authored
May 30, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
5858feb5
101733b5
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
76 additions
and
50 deletions
+76
-50
app/helpers/labels_helper.rb
app/helpers/labels_helper.rb
+33
-23
app/views/admin/labels/_form.html.haml
app/views/admin/labels/_form.html.haml
+1
-4
app/views/shared/issuable/_label_page_create.html.haml
app/views/shared/issuable/_label_page_create.html.haml
+1
-3
app/views/shared/labels/_form.html.haml
app/views/shared/labels/_form.html.haml
+1
-6
changelogs/unreleased/61788-predefined-colours-dont-have-descriptive-labels.yml
...61788-predefined-colours-dont-have-descriptive-labels.yml
+5
-0
doc/administration/monitoring/performance/grafana_configuration.md
...istration/monitoring/performance/grafana_configuration.md
+5
-3
doc/user/admin_area/diff_limits.md
doc/user/admin_area/diff_limits.md
+30
-11
No files found.
app/helpers/labels_helper.rb
View file @
3f2555a7
...
...
@@ -76,29 +76,39 @@ module LabelsHelper
end
def
suggested_colors
[
'#0033CC'
,
'#428BCA'
,
'#44AD8E'
,
'#A8D695'
,
'#5CB85C'
,
'#69D100'
,
'#004E00'
,
'#34495E'
,
'#7F8C8D'
,
'#A295D6'
,
'#5843AD'
,
'#8E44AD'
,
'#FFECDB'
,
'#AD4363'
,
'#D10069'
,
'#CC0033'
,
'#FF0000'
,
'#D9534F'
,
'#D1D100'
,
'#F0AD4E'
,
'#AD8D43'
]
{
'#0033CC'
=>
s_
(
'SuggestedColors|UA blue'
),
'#428BCA'
=>
s_
(
'SuggestedColors|Moderate blue'
),
'#44AD8E'
=>
s_
(
'SuggestedColors|lime green'
),
'#A8D695'
=>
s_
(
'SuggestedColors|Feijoa'
),
'#5CB85C'
=>
s_
(
'SuggestedColors|Slightly desaturated green'
),
'#69D100'
=>
s_
(
'SuggestedColors|Bright Green'
),
'#004E00'
=>
s_
(
'SuggestedColors|Very dark lime green'
),
'#34495E'
=>
s_
(
'SuggestedColors|Very dark desaturated blue'
),
'#7F8C8D'
=>
s_
(
'SuggestedColors|Dark grayish cyan'
),
'#A295D6'
=>
s_
(
'SuggestedColors|Slightly desaturated blue'
),
'#5843AD'
=>
s_
(
'SuggestedColors|Dark moderate blue'
),
'#8E44AD'
=>
s_
(
'SuggestedColors|Dark moderate violet'
),
'#FFECDB'
=>
s_
(
'SuggestedColors|Very pale orange'
),
'#AD4363'
=>
s_
(
'SuggestedColors|Dark moderate pink'
),
'#D10069'
=>
s_
(
'SuggestedColors|Strong pink'
),
'#CC0033'
=>
s_
(
'SuggestedColors|Strong red'
),
'#FF0000'
=>
s_
(
'SuggestedColors|Pure red'
),
'#D9534F'
=>
s_
(
'SuggestedColors|Soft red'
),
'#D1D100'
=>
s_
(
'SuggestedColors|Strong yellow'
),
'#F0AD4E'
=>
s_
(
'SuggestedColors|Soft orange'
),
'#AD8D43'
=>
s_
(
'SuggestedColors|Dark moderate orange'
)
}
end
def
render_suggested_colors
colors_html
=
suggested_colors
.
map
do
|
color_hex_value
,
color_name
|
link_to
(
''
,
'#'
,
class:
"has-tooltip"
,
style:
"background-color:
#{
color_hex_value
}
"
,
data:
{
color:
color_hex_value
},
title:
color_name
)
end
content_tag
(
:div
,
class:
'suggest-colors'
)
do
colors_html
.
join
.
html_safe
end
end
def
text_color_for_bg
(
bg_color
)
...
...
app/views/admin/labels/_form.html.haml
View file @
3f2555a7
...
...
@@ -24,10 +24,7 @@
%br
=
_
(
"Or you can choose one of the suggested colors below"
)
.suggest-colors
-
suggested_colors
.
each
do
|
color
|
=
link_to
'#'
,
style:
"background-color:
#{
color
}
"
,
data:
{
color:
color
}
do
=
render_suggested_colors
.form-actions
=
f
.
submit
_
(
'Save'
),
class:
'btn btn-success js-save-button'
...
...
app/views/shared/issuable/_label_page_create.html.haml
View file @
3f2555a7
...
...
@@ -9,9 +9,7 @@
.dropdown-labels-error.js-label-error
%input
#new_label_name
.default-dropdown-input
{
type:
"text"
,
placeholder:
_
(
'Name new label'
)
}
.suggest-colors.suggest-colors-dropdown
-
suggested_colors
.
each
do
|
color
|
=
link_to
'#'
,
style:
"background-color:
#{
color
}
"
,
data:
{
color:
color
}
do
&
nbsp
=
render_suggested_colors
.dropdown-label-color-input
.dropdown-label-color-preview.js-dropdown-label-color-preview
%input
#new_label_color
.default-dropdown-input
{
type:
"text"
,
placeholder:
_
(
'Assign custom color like #FF0000'
)
}
...
...
app/views/shared/labels/_form.html.haml
View file @
3f2555a7
...
...
@@ -25,12 +25,7 @@
Choose any color.
%br
Or you can choose one of the suggested colors below
.suggest-colors
-
suggested_colors
.
each
do
|
color
|
=
link_to
'#'
,
style:
"background-color:
#{
color
}
"
,
data:
{
color:
color
}
do
=
render_suggested_colors
.form-actions
-
if
@label
.
persisted?
=
f
.
submit
'Save changes'
,
class:
'btn btn-success js-save-button'
...
...
changelogs/unreleased/61788-predefined-colours-dont-have-descriptive-labels.yml
0 → 100644
View file @
3f2555a7
---
title
:
Adds a text label to color pickers to improve accessibility.
merge_request
:
28343
author
:
Chris Toynbee
type
:
changed
doc/administration/monitoring/performance/grafana_configuration.md
View file @
3f2555a7
...
...
@@ -3,7 +3,7 @@
[
Grafana
](
http://grafana.org/
)
is a tool that allows you to visualize time
series metrics through graphs and dashboards. It supports several backend
data stores, including InfluxDB. GitLab writes performance data to InfluxDB
and Grafana will allow you to query
InfluxDB
to display useful graphs.
and Grafana will allow you to query to display useful graphs.
For the easiest installation and configuration, install Grafana on the same
server as InfluxDB. For larger installations, you may want to split out these
...
...
@@ -11,11 +11,13 @@ services.
## Installation
Grafana supplies package repositories (Yum/Apt) for easy installation.
[
GitLab Omnibus can help you install Grafana (recommended)
](
https://docs.gitlab.com/omnibus/settings/grafana.html
)
or Grafana supplies package repositories (Yum/Apt) for easy installation.
See
[
Grafana installation documentation
](
http://docs.grafana.org/installation/
)
for detailed steps.
> **Note**: Before starting Grafana for the first time, set the admin user
NOTE:
**Note:**
Before starting Grafana for the first time, set the admin user
and password in
`/etc/grafana/grafana.ini`
. Otherwise, the default password
will be
`admin`
.
...
...
doc/user/admin_area/diff_limits.md
View file @
3f2555a7
---
type
:
reference
---
# Diff limits administration
You can set a maximum size for display of diff files (patches).
## Maximum diff patch size
Diff files which exceed this value will be presented as 'too large' and won't
be expandable. Instead of an expandable view, a link to the blob view will be
shown.
Patches greater than 10% of this size will be automatically collapsed, and a
link to expand the diff will be presented.
NOTE:
**Note:**
Merge requests and branch comparison views will be affected.
CAUTION:
**Caution:**
These settings are currently under experimental state. They'll
increase the resource consumption of your instance and should
be edited mindfully.
This setting is experimental. An increased maximum will increase resource
consumption of your instance. Keep this in mind when adjusting the maximum.
1.
Access
**Admin area > Settings > General**
1.
Expand
**Diff limits**
1.
Go to
**Admin area > Settings > General**
.
1.
Expand
**Diff limits**
.
1.
Enter a value for
**Maximum diff patch size**
, measured in bytes.
1.
Click on
**Save changes**
.
### Maximum diff patch size
<!-- ## Troubleshooting
This is the content size each diff file (patch) is allowed to reach before
it's collapsed, without the possibility of being expanded. A link redirecting
to the blob view will be presented for the patches that surpass this limit.
Include any troubleshooting steps that you can foresee. If you know beforehand what issues
one might have when setting this up, or when something is changed, or on upgrading, it's
important to describe those, too. Think of things that may go wrong and include them here.
This is important to minimize requests for support, and to avoid doc comments with
questions that you know someone might ask.
Patches surpassing 10% of this content size will be automatically collapsed,
but expandable (a link to expand the diff will be presented).
Each scenario can be a third-level heading, e.g.
`### Getting error message X`
.
If you have none to add when creating a doc, leave this section in place
but commented out to help encourage others to add to it in the future. -->
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