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
0e9b9944
Commit
0e9b9944
authored
Mar 21, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
c1f6c531
03b0b827
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
23 additions
and
15 deletions
+23
-15
app/assets/stylesheets/framework/markdown_area.scss
app/assets/stylesheets/framework/markdown_area.scss
+1
-1
app/assets/stylesheets/framework/mixins.scss
app/assets/stylesheets/framework/mixins.scss
+2
-3
app/assets/stylesheets/framework/typography.scss
app/assets/stylesheets/framework/typography.scss
+9
-3
app/assets/stylesheets/pages/notes.scss
app/assets/stylesheets/pages/notes.scss
+0
-5
app/views/clusters/clusters/gcp/_form.html.haml
app/views/clusters/clusters/gcp/_form.html.haml
+5
-3
app/views/clusters/clusters/user/_form.html.haml
app/views/clusters/clusters/user/_form.html.haml
+1
-0
changelogs/unreleased/57655-fix-markdown-tables-border.yml
changelogs/unreleased/57655-fix-markdown-tables-border.yml
+5
-0
No files found.
app/assets/stylesheets/framework/markdown_area.scss
View file @
0e9b9944
...
...
@@ -154,7 +154,7 @@
}
table
:not
(
.js-syntax-highlight
)
{
table
{
@include
markdown-table
;
}
}
...
...
app/assets/stylesheets/framework/mixins.scss
View file @
0e9b9944
...
...
@@ -29,15 +29,14 @@
display
:
block
;
overflow-x
:
auto
;
border
:
0
;
border-color
:
$gl-gray-100
;
tr
{
th
{
border-bottom
:
solid
2px
$gl-gray-
1
00
;
border-bottom
:
solid
2px
$gl-gray-
2
00
;
}
td
{
border-color
:
$gl-gray-
1
00
;
border-color
:
$gl-gray-
2
00
;
}
}
}
...
...
app/assets/stylesheets/framework/typography.scss
View file @
0e9b9944
...
...
@@ -136,15 +136,21 @@
margin
:
0
0
16px
;
}
table
:not
(
.js-syntax-highlight
)
{
table
{
@extend
.table
;
@extend
.table-bordered
;
margin
:
16px
0
;
color
:
$gl-text-color
;
border
:
0
;
th
{
background
:
$label-gray-bg
;
tr
{
th
{
border-bottom
:
solid
2px
$gl-gray-200
;
}
td
{
border-color
:
$gl-gray-200
;
}
}
}
...
...
app/assets/stylesheets/pages/notes.scss
View file @
0e9b9944
...
...
@@ -224,14 +224,9 @@ $note-form-margin-left: 72px;
overflow-y
:
hidden
;
.note-text
{
@include
md-typography
;
// Reset ul style types since we're nested inside a ul already
@include
bulleted-list
;
word-wrap
:
break-word
;
table
{
@include
markdown-table
;
}
}
}
...
...
app/views/clusters/clusters/gcp/_form.html.haml
View file @
0e9b9944
...
...
@@ -17,9 +17,11 @@
.form-group
=
field
.
label
:name
,
s_
(
'ClusterIntegration|Kubernetes cluster name'
),
class:
'label-bold'
=
field
.
text_field
:name
,
class:
'form-control'
,
placeholder:
s_
(
'ClusterIntegration|Kubernetes cluster name'
)
.form-group
=
field
.
label
:environment_scope
,
s_
(
'ClusterIntegration|Environment scope'
),
class:
'label-bold'
=
field
.
text_field
:environment_scope
,
class:
'form-control'
,
readonly:
!
has_multiple_clusters?
,
placeholder:
s_
(
'ClusterIntegration|Environment scope'
)
-
if
has_multiple_clusters?
.form-group
=
field
.
label
:environment_scope
,
s_
(
'ClusterIntegration|Environment scope'
),
class:
'label-bold'
=
field
.
text_field
:environment_scope
,
class:
'form-control'
,
placeholder:
s_
(
'ClusterIntegration|Environment scope'
)
.form-text.text-muted
=
s_
(
"ClusterIntegration|Choose which of your environments will use this cluster."
)
=
field
.
fields_for
:provider_gcp
,
@gcp_cluster
.
provider_gcp
do
|
provider_gcp_field
|
.form-group
...
...
app/views/clusters/clusters/user/_form.html.haml
View file @
0e9b9944
...
...
@@ -7,6 +7,7 @@
.form-group
=
field
.
label
:environment_scope
,
s_
(
'ClusterIntegration|Environment scope'
),
class:
'label-bold'
=
field
.
text_field
:environment_scope
,
class:
'form-control'
,
placeholder:
s_
(
'ClusterIntegration|Environment scope'
)
.form-text.text-muted
=
s_
(
"ClusterIntegration|Choose which of your environments will use this cluster."
)
=
field
.
fields_for
:platform_kubernetes
,
@user_cluster
.
platform_kubernetes
do
|
platform_kubernetes_field
|
.form-group
...
...
changelogs/unreleased/57655-fix-markdown-tables-border.yml
0 → 100644
View file @
0e9b9944
---
title
:
Fix markdown table header and table content borders
merge_request
:
25666
author
:
type
:
fixed
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