summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/pages/alert_management/details.scss
blob: 514f228e223f5dbcb590ad4b1c83d3ae9488ae92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
.alert-management-details {
  @include media-breakpoint-down(xs) {
    .alert-details-incident-button {
      width: 100%;
    }
  }

  .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 {
          border-bottom: 1px solid $gray-100;
        }
      }
    }
  }

  .main-notes-list::before {
    left: $gl-spacing-scale-5 !important;
  }

  .note-header-info {
    @include gl-mt-1;
  }
}