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,7 +25,10 @@ ...@@ -30,7 +25,10 @@
font-weight: $gl-font-weight-bold; font-weight: $gl-font-weight-bold;
color: $gl-gray-600; color: $gl-gray-600;
} }
}
@include media-breakpoint-up(md) {
tr {
&:last-child { &:last-child {
td { td {
@include gl-border-0; @include gl-border-0;
...@@ -38,9 +36,13 @@ ...@@ -38,9 +36,13 @@
} }
} }
} }
}
@include media-breakpoint-down(sm) { @include media-breakpoint-down(sm) {
.alert-management-table { .alert-management-table {
tr {
border-top: 0;
.table-col { .table-col {
min-height: 68px; min-height: 68px;
...@@ -57,6 +59,13 @@ ...@@ -57,6 +59,13 @@
} }
} }
} }
&: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