debian-mirror-gitlab/app/assets/stylesheets/pages/alert_management/details.scss
2020-05-24 23:13:21 +05:30

42 lines
855 B
SCSS

.alert-management-details {
// these styles need to be deleted once GlTable component looks in GitLab same as in @gitlab/ui
table {
tr {
td {
@include gl-border-0;
@include gl-p-5;
border-color: transparent;
border-bottom: 1px solid $table-border-color;
&:first-child {
div {
font-weight: bold;
}
}
&:not(:first-child) {
&::before {
color: $gray-700;
font-weight: normal !important;
}
div {
color: $gray-700;
}
}
@include media-breakpoint-up(sm) {
div {
text-align: left !important;
}
}
}
}
}
@include media-breakpoint-down(xs) {
.alert-details-create-issue-button {
width: 100%;
}
}
}