debian-mirror-gitlab/app/assets/stylesheets/pages/alert_management/details.scss

74 lines
1.3 KiB
SCSS
Raw Normal View History

2020-05-24 23:13:21 +05:30
.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 {
2020-10-24 23:57:45 +05:30
color: $gray-500;
2020-05-24 23:13:21 +05:30
font-weight: normal !important;
}
div {
2020-10-24 23:57:45 +05:30
color: $gray-500;
2020-05-24 23:13:21 +05:30
}
}
@include media-breakpoint-up(sm) {
div {
text-align: left !important;
}
}
}
}
}
@include media-breakpoint-down(xs) {
2020-10-24 23:57:45 +05:30
.alert-details-incident-button {
2020-05-24 23:13:21 +05:30
width: 100%;
}
}
2020-06-23 00:09:42 +05:30
.toggle-sidebar-mobile-button {
right: 0;
}
.dropdown-menu-toggle {
&:hover {
background-color: $white;
}
}
.assignee-dropdown-item {
.dropdown-item {
display: flex;
align-items: center;
&::before {
top: 50% !important;
}
&.is-active {
&:last-child {
2020-07-28 23:09:34 +05:30
border-bottom: 1px solid $gray-100;
2020-06-23 00:09:42 +05:30
}
}
}
}
.note-header-info {
2020-07-28 23:09:34 +05:30
@include gl-mt-1;
2020-06-23 00:09:42 +05:30
}
2020-05-24 23:13:21 +05:30
}