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
a679d362
Commit
a679d362
authored
Jun 04, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
5db76294
e365bc52
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
59 deletions
+7
-59
app/assets/javascripts/monitoring/stores/mutation_types.js
app/assets/javascripts/monitoring/stores/mutation_types.js
+0
-3
app/assets/javascripts/vue_merge_request_widget/components/states/squash_before_merge.vue
..._request_widget/components/states/squash_before_merge.vue
+2
-2
app/assets/stylesheets/pages/merge_requests.scss
app/assets/stylesheets/pages/merge_requests.scss
+0
-46
changelogs/unreleased/57037-fix-mr-checkboxes-mobile-alignment.yml
...s/unreleased/57037-fix-mr-checkboxes-mobile-alignment.yml
+5
-0
spec/javascripts/monitoring/dashboard_spec.js
spec/javascripts/monitoring/dashboard_spec.js
+0
-8
No files found.
app/assets/javascripts/monitoring/stores/mutation_types.js
View file @
a679d362
...
...
@@ -8,8 +8,5 @@ export const REQUEST_ENVIRONMENTS_DATA = 'REQUEST_ENVIRONMENTS_DATA';
export
const
RECEIVE_ENVIRONMENTS_DATA_SUCCESS
=
'
RECEIVE_ENVIRONMENTS_DATA_SUCCESS
'
;
export
const
RECEIVE_ENVIRONMENTS_DATA_FAILURE
=
'
RECEIVE_ENVIRONMENTS_DATA_FAILURE
'
;
export
const
SET_TIME_WINDOW
=
'
SET_TIME_WINDOW
'
;
export
const
SET_METRICS_ENDPOINT
=
'
SET_METRICS_ENDPOINT
'
;
export
const
SET_ENVIRONMENTS_ENDPOINT
=
'
SET_ENVIRONMENTS_ENDPOINT
'
;
export
const
SET_DEPLOYMENTS_ENDPOINT
=
'
SET_DEPLOYMENTS_ENDPOINT
'
;
export
const
SET_ENDPOINTS
=
'
SET_ENDPOINTS
'
;
export
const
SET_GETTING_STARTED_EMPTY_STATE
=
'
SET_GETTING_STARTED_EMPTY_STATE
'
;
app/assets/javascripts/vue_merge_request_widget/components/states/squash_before_merge.vue
View file @
a679d362
...
...
@@ -29,8 +29,8 @@ export default {
</
script
>
<
template
>
<div
class=
"
accept-control
inline"
>
<label
class=
"merge-param-checkbox"
>
<div
class=
"inline"
>
<label>
<input
:checked=
"value"
:disabled=
"isDisabled"
...
...
app/assets/stylesheets/pages/merge_requests.scss
View file @
a679d362
...
...
@@ -185,46 +185,6 @@
}
}
}
.accept-control
{
display
:
inline-block
;
float
:
left
;
margin
:
0
;
margin-left
:
20px
;
padding
:
5px
;
padding-top
:
8px
;
line-height
:
20px
;
&
.right
{
float
:
right
;
padding-right
:
0
;
}
.modify-merge-commit-link
{
padding
:
0
;
background-color
:
transparent
;
border
:
0
;
color
:
$gl-text-color
;
&
:hover
,
&
:focus
{
text-decoration
:
underline
;
}
}
.merge-param-checkbox
{
margin
:
0
;
}
a
.fa-question-circle
{
color
:
$gl-text-color-secondary
;
&
:hover
,
&
:focus
{
color
:
$link-hover-color
;
}
}
}
}
.ci-widget
{
...
...
@@ -407,12 +367,6 @@
width
:
100%
;
text-align
:
center
;
}
.accept-control
{
width
:
100%
;
text-align
:
center
;
margin
:
0
;
}
}
.commit-message-editor
{
...
...
changelogs/unreleased/57037-fix-mr-checkboxes-mobile-alignment.yml
0 → 100644
View file @
a679d362
---
title
:
Fix Merge Request merge checkbox alignment on mobile view
merge_request
:
28845
author
:
type
:
fixed
spec/javascripts/monitoring/dashboard_spec.js
View file @
a679d362
...
...
@@ -176,10 +176,6 @@ describe('Dashboard', () => {
store
,
});
component
.
$store
.
commit
(
`monitoringDashboard/
${
types
.
SET_ENVIRONMENTS_ENDPOINT
}
`
,
'
/environments
'
,
);
component
.
$store
.
commit
(
`monitoringDashboard/
${
types
.
RECEIVE_ENVIRONMENTS_DATA_SUCCESS
}
`
,
[]);
component
.
$store
.
commit
(
`monitoringDashboard/
${
types
.
RECEIVE_METRICS_DATA_SUCCESS
}
`
,
...
...
@@ -210,10 +206,6 @@ describe('Dashboard', () => {
store
,
});
component
.
$store
.
commit
(
`monitoringDashboard/
${
types
.
SET_ENVIRONMENTS_ENDPOINT
}
`
,
'
/environments
'
,
);
component
.
$store
.
commit
(
`monitoringDashboard/
${
types
.
RECEIVE_ENVIRONMENTS_DATA_SUCCESS
}
`
,
environmentData
,
...
...
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