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 @@
padding-left: 1.25rem;
@include gl-py-5;
@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 {
@include gl-pointer-events-none;
......@@ -30,10 +25,14 @@
font-weight: $gl-font-weight-bold;
color: $gl-gray-600;
}
}
&:last-child {
td {
@include gl-border-0;
@include media-breakpoint-up(md) {
tr {
&:last-child {
td {
@include gl-border-0;
}
}
}
}
......@@ -41,21 +40,31 @@
@include media-breakpoint-down(sm) {
.alert-management-table {
.table-col {
min-height: 68px;
tr {
border-top: 0;
&:last-child {
background-color: $gray-10;
.table-col {
min-height: 68px;
&::before {
content: none !important;
}
&:last-child {
background-color: $gray-10;
&::before {
content: none !important;
}
div {
width: 100% !important;
padding: 0 !important;
div {
width: 100% !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