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
c069e1f7
Commit
c069e1f7
authored
6 years ago
by
Clement Ho
Committed by
Jose
6 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix bootstrap popover class renames
parent
13a8ad60
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
10 deletions
+10
-10
app/assets/javascripts/monitoring/components/graph/flag.vue
app/assets/javascripts/monitoring/components/graph/flag.vue
+3
-3
app/assets/stylesheets/pages/environments.scss
app/assets/stylesheets/pages/environments.scss
+3
-3
app/assets/stylesheets/pages/milestone.scss
app/assets/stylesheets/pages/milestone.scss
+1
-1
ee/app/assets/javascripts/geo_nodes/components/geo_node_detail_item.vue
...javascripts/geo_nodes/components/geo_node_detail_item.vue
+2
-2
spec/javascripts/monitoring/graph/flag_spec.js
spec/javascripts/monitoring/graph/flag_spec.js
+1
-1
No files found.
app/assets/javascripts/monitoring/components/graph/flag.vue
View file @
c069e1f7
...
...
@@ -126,7 +126,7 @@ export default {
:class=
"flagOrientation"
>
<div
class=
"arrow"
></div>
<div
class=
"popover-
title
"
>
<div
class=
"popover-
header
"
>
<h5
v-if=
"deploymentFlagData"
>
Deployed
</h5>
...
...
@@ -135,7 +135,7 @@ export default {
</div>
<div
v-if=
"deploymentFlagData"
class=
"popover-
content
deploy-meta-content"
class=
"popover-
body
deploy-meta-content"
>
<div>
<icon
...
...
@@ -158,7 +158,7 @@ export default {
</a>
</div>
</div>
<div
class=
"popover-
content
"
>
<div
class=
"popover-
body
"
>
<table
class=
"prometheus-table"
>
<tr
v-for=
"(series, index) in timeSeries"
...
...
This diff is collapsed.
Click to expand it.
app/assets/stylesheets/pages/environments.scss
View file @
c069e1f7
...
...
@@ -495,14 +495,14 @@
border-width
:
8px
;
}
>
.popover-
title
,
>
.popover-
content
{
>
.popover-
header
,
>
.popover-
body
{
padding
:
8px
;
font-size
:
12px
;
white-space
:
nowrap
;
}
>
.popover-
title
{
>
.popover-
header
{
background-color
:
$theme-gray-50
;
}
}
...
...
This diff is collapsed.
Click to expand it.
app/assets/stylesheets/pages/milestone.scss
View file @
c069e1f7
...
...
@@ -206,7 +206,7 @@
padding
:
0
;
}
.popover-
content
{
.popover-
body
{
padding
:
0
;
}
}
...
...
This diff is collapsed.
Click to expand it.
ee/app/assets/javascripts/geo_nodes/components/geo_node_detail_item.vue
View file @
c069e1f7
...
...
@@ -104,8 +104,8 @@
template
:
`
<div class="popover geo-node-detail-popover" role="tooltip">
<div class="arrow"></div>
<p class="popover-
title
"></p>
<div class="popover-
content
"></div>
<p class="popover-
header
"></p>
<div class="popover-
body
"></div>
</div>
`
,
title
:
this
.
helpInfo
.
title
,
...
...
This diff is collapsed.
Click to expand it.
spec/javascripts/monitoring/graph/flag_spec.js
View file @
c069e1f7
...
...
@@ -63,7 +63,7 @@ describe('GraphFlag', () => {
});
expect
(
deploymentFlagComponent
.
$el
.
querySelector
(
'
.popover-
title
'
),
deploymentFlagComponent
.
$el
.
querySelector
(
'
.popover-
header
'
),
).
toContainText
(
'
Deployed
'
);
});
...
...
This diff is collapsed.
Click to expand it.
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