summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/performance_bar.scss
blob: 5a8940ffd6db2f5a7d8ac68c22b76da5b9cee62f (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
@import 'framework/variables';
@import 'framework/variables_overrides';
@import 'peek/views/rblineprof';

#js-peek {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: #{$zindex-modal-backdrop + 1};

  height: $performance-bar-height;
  background: $black;
  line-height: $performance-bar-height;
  color: $gl-gray-400;

  select {
    color: $gl-gray-400;
    width: 200px;
  }

  &.disabled {
    display: none;
  }

  &.production {
    background-color: $perf-bar-production;

    select {
      background: $perf-bar-production;
    }
  }

  &.staging {
    background-color: $perf-bar-staging;

    select {
      background: $perf-bar-staging;
    }
  }

  &.development {
    background-color: $perf-bar-development;

    select {
      background: $perf-bar-development;
    }
  }

  // UI Elements
  .bucket {
    background: $perf-bar-bucket-bg;
    display: inline-block;
    padding: 4px 6px;
    font-family: Consolas, 'Liberation Mono', Courier, monospace;
    line-height: 1;
    color: $gl-gray-200;
    border-radius: 3px;
    box-shadow: 0 1px 0 $perf-bar-bucket-box-shadow-from,
      inset 0 1px 2px $perf-bar-bucket-box-shadow-to;

    .hidden {
      display: none;
    }

    &:hover .hidden {
      display: inline;
    }
  }

  .current-host.canary {
    color: $perf-bar-canary-text;
  }

  strong {
    color: $white-light;
  }

  table {
    color: $black;

    td {
      vertical-align: top;
    }

    .backtrace-row {
      display: none;
    }
  }

  .view {
    margin-right: 15px;
    flex-shrink: 0;

    &:last-child {
      margin-right: 0;
    }
  }

  .css-truncate {
    &.css-truncate-target,
    .css-truncate-target {
      display: inline-block;
      max-width: 125px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      vertical-align: top;
    }

    &.expandable:hover .css-truncate-target,
    &.expandable:hover.css-truncate-target {
      max-width: 10000px !important;
    }
  }

  .performance-bar-modal {
    .modal-body {
      padding: 0;
    }

    .modal-footer {
      display: none;
    }
  }
}

#modal-peek-pg-queries-content {
  color: $black;
}

.peek-rblineprof-file {
  pre.duration {
    width: 280px;
  }

  .data {
    overflow: visible;
  }
}