Commit e9b6d44c authored by Simon Knox's avatar Simon Knox

Remove SCSS extends from pipeline page bundles

Also remove description block, it was removed in 8.5,
according to the output of:
git log -S description-block master --source
parent b7a71ef2
...@@ -269,12 +269,6 @@ img.emoji { ...@@ -269,12 +269,6 @@ img.emoji {
height: 220px; height: 220px;
} }
.description-block {
@extend .light-well;
@extend .light;
margin-bottom: 10px;
}
.footer-links { .footer-links {
margin-bottom: 20px; margin-bottom: 20px;
......
...@@ -176,12 +176,6 @@ ...@@ -176,12 +176,6 @@
li { li {
position: relative; position: relative;
// ensure .mini-pipeline-graph-dropdown-item has hover style when action-icon is hovered
&:hover > .mini-pipeline-graph-dropdown-item,
&:hover > .ci-job-component > .mini-pipeline-graph-dropdown-item {
@extend .mini-pipeline-graph-dropdown-item:hover;
}
// link to the build // link to the build
.mini-pipeline-graph-dropdown-item { .mini-pipeline-graph-dropdown-item {
align-items: center; align-items: center;
...@@ -216,13 +210,16 @@ ...@@ -216,13 +210,16 @@
display: block; display: block;
} }
} }
}
&:hover, // ensure .mini-pipeline-graph-dropdown-item has hover style when action-icon is hovered
&:focus { &:hover > .mini-pipeline-graph-dropdown-item,
outline: none; &:hover > .ci-job-component > .mini-pipeline-graph-dropdown-item,
text-decoration: none; .mini-pipeline-graph-dropdown-item:hover,
background-color: var(--gray-100, $gray-50); .mini-pipeline-graph-dropdown-item:focus {
} outline: none;
text-decoration: none;
background-color: var(--gray-100, $gray-50);
} }
} }
} }
...@@ -306,11 +306,6 @@ ...@@ -306,11 +306,6 @@
} }
} }
// ensure .build-content has hover style when action-icon is hovered
.ci-job-dropdown-container:hover .build-content {
@extend .build-content:hover;
}
.ci-status-icon svg { .ci-status-icon svg {
height: 24px; height: 24px;
width: 24px; width: 24px;
...@@ -330,6 +325,7 @@ ...@@ -330,6 +325,7 @@
@include build-content(); @include build-content();
} }
.ci-job-dropdown-container:hover .build-content,
a.build-content:hover, a.build-content:hover,
button.build-content:hover { button.build-content:hover {
background-color: var(--gray-100, $gray-100); background-color: var(--gray-100, $gray-100);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment