Commit 501b2356 authored by Kushal Pandya's avatar Kushal Pandya

Merge branch 'alert-table-mobile-hotfix' into 'master'

Alert table mobile hotfix

See merge request gitlab-org/gitlab!33047
parents a2945210 7cc0b011
...@@ -14,11 +14,6 @@ ...@@ -14,11 +14,6 @@
padding-left: 1.25rem; padding-left: 1.25rem;
@include gl-py-5; @include gl-py-5;
@include gl-outline-none; @include gl-outline-none;
border: 0; // Remove cell border styling so that we can set border styling per row
&.event-count {
@include gl-pr-9;
}
&.alert-title { &.alert-title {
@include gl-pointer-events-none; @include gl-pointer-events-none;
...@@ -30,10 +25,14 @@ ...@@ -30,10 +25,14 @@
font-weight: $gl-font-weight-bold; font-weight: $gl-font-weight-bold;
color: $gl-gray-600; color: $gl-gray-600;
} }
}
&:last-child { @include media-breakpoint-up(md) {
td { tr {
@include gl-border-0; &:last-child {
td {
@include gl-border-0;
}
} }
} }
} }
...@@ -41,21 +40,31 @@ ...@@ -41,21 +40,31 @@
@include media-breakpoint-down(sm) { @include media-breakpoint-down(sm) {
.alert-management-table { .alert-management-table {
.table-col { tr {
min-height: 68px; border-top: 0;
&:last-child { .table-col {
background-color: $gray-10; min-height: 68px;
&::before { &:last-child {
content: none !important; background-color: $gray-10;
}
&::before {
content: none !important;
}
div { div {
width: 100% !important; width: 100% !important;
padding: 0 !important; padding: 0 !important;
}
} }
} }
&:hover {
background-color: $white;
border-color: $white;
border-bottom-style: none;
}
} }
} }
} }
......
---
title: Fix broken CSS classes inside alert management list
merge_request: 33038
author:
type: fixed
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