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
432a1211
Commit
432a1211
authored
Nov 15, 2019
by
Nick Kipling
Committed by
Annabel Dunstone Gray
Nov 15, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor TestReports specific table css
Moved the hover effect and color into response_tables.scss
parent
d9c23919
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
14 deletions
+13
-14
app/assets/javascripts/pipelines/components/test_reports/test_summary_table.vue
.../pipelines/components/test_reports/test_summary_table.vue
+2
-2
app/assets/stylesheets/framework/responsive_tables.scss
app/assets/stylesheets/framework/responsive_tables.scss
+11
-0
app/assets/stylesheets/pages/pipelines.scss
app/assets/stylesheets/pages/pipelines.scss
+0
-12
No files found.
app/assets/javascripts/pipelines/components/test_reports/test_summary_table.vue
View file @
432a1211
...
...
@@ -64,14 +64,14 @@ export default {
v-for=
"(testSuite, index) in getTestSuites"
:key=
"index"
role=
"row"
class=
"gl-responsive-table-row test-reports-summary-row rounded cursor-pointer js-suite-row"
class=
"gl-responsive-table-row
gl-responsive-table-row-clickable
test-reports-summary-row rounded cursor-pointer js-suite-row"
@
click=
"tableRowClick(testSuite)"
>
<div
class=
"table-section section-25"
>
<div
role=
"rowheader"
class=
"table-mobile-header font-weight-bold"
>
{{
__
(
'
Suite
'
)
}}
</div>
<div
class=
"table-mobile-content
test-reports-summary-suit
e cgray pl-3"
>
<div
class=
"table-mobile-content
underlin
e cgray pl-3"
>
{{
testSuite
.
name
}}
</div>
</div>
...
...
app/assets/stylesheets/framework/responsive_tables.scss
View file @
432a1211
...
...
@@ -20,6 +20,17 @@
@extend
.gl-responsive-table-row-layout
;
margin-top
:
10px
;
border
:
1px
solid
$border-color
;
color
:
$gray-700
;
&
.gl-responsive-table-row-clickable
{
&
:hover
{
background-color
:
$gray-light
;
.underline
{
text-decoration
:
underline
;
}
}
}
@include
media-breakpoint-up
(
md
)
{
margin
:
0
;
...
...
app/assets/stylesheets/pages/pipelines.scss
View file @
432a1211
...
...
@@ -1084,18 +1084,6 @@ button.mini-pipeline-graph-dropdown-toggle {
}
.test-reports-table
{
color
:
$gray-700
;
.test-reports-summary-row
{
&
:hover
{
background-color
:
$gray-light
;
.test-reports-summary-suite
{
text-decoration
:
underline
;
}
}
}
.build-trace
{
@include
build-trace
();
}
...
...
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