summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/page_bundles/error_tracking_details.scss
blob: a47c5cc9b3e2861424ae7395a51b62286f6572aa (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
43
44
45
46
47
48
49
50
51
@import 'page_bundles/mixins_and_variables_and_functions';

.error-details {
  li {
    @include gl-line-height-32;
  }

  .btn-outline-info {
    color: var(--blue-500, $blue-500);
    border-color: var(--blue-500, $blue-500);
  }

  .error-details-header {
    border-bottom: 1px solid var(--border-color, $border-color);

    @include media-breakpoint-down(xs) {
      flex-flow: column;

      .error-details-meta-culprit {
        display: flex;
      }

      .error-details-options {
        width: 100%;

        .dropdown-toggle {
          text-align: center;
        }
      }
    }
  }
}

.stacktrace {
  .file-title {
    svg {
      vertical-align: middle;
      top: -1px;
    }
  }

  .file-title-name {
    &.limited-width {
      max-width: 80%;
    }
  }

  .line_content.old::before {
    content: none !important;
  }
}