2017-07-06 15:37:31 -04:00
|
|
|
@import "framework/variables";
|
|
|
|
@import "peek/views/performance_bar";
|
|
|
|
@import "peek/views/rblineprof";
|
2017-06-07 10:52:13 -04:00
|
|
|
|
2017-05-17 07:20:55 -04:00
|
|
|
#peek {
|
|
|
|
height: 35px;
|
2017-07-06 15:37:31 -04:00
|
|
|
background: $black;
|
2017-05-17 07:20:55 -04:00
|
|
|
line-height: 35px;
|
2017-07-06 15:37:31 -04:00
|
|
|
color: $perf-bar-text;
|
2017-05-17 07:20:55 -04:00
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.production {
|
2017-07-06 15:37:31 -04:00
|
|
|
background-color: $perf-bar-production;
|
2017-05-17 07:20:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&.staging {
|
2017-07-06 15:37:31 -04:00
|
|
|
background-color: $perf-bar-staging;
|
2017-05-17 07:20:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&.development {
|
2017-07-06 15:37:31 -04:00
|
|
|
background-color: $perf-bar-development;
|
2017-05-17 07:20:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.wrapper {
|
2017-07-06 15:37:31 -04:00
|
|
|
width: 1000px;
|
2017-05-17 07:20:55 -04:00
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
// UI Elements
|
|
|
|
.bucket {
|
2017-07-06 15:37:31 -04:00
|
|
|
background: $perf-bar-bucket-bg;
|
2017-05-17 07:20:55 -04:00
|
|
|
display: inline-block;
|
|
|
|
padding: 4px 6px;
|
|
|
|
font-family: Consolas, "Liberation Mono", Courier, monospace;
|
|
|
|
line-height: 1;
|
2017-07-06 15:37:31 -04:00
|
|
|
color: $perf-bar-bucket-color;
|
2017-05-17 07:20:55 -04:00
|
|
|
border-radius: 3px;
|
2017-07-06 15:37:31 -04:00
|
|
|
box-shadow: 0 1px 0 $perf-bar-bucket-box-shadow-from, inset 0 1px 2px $perf-bar-bucket-box-shadow-to;
|
2017-05-17 07:20:55 -04:00
|
|
|
|
|
|
|
.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover .hidden {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
2017-07-06 15:37:31 -04:00
|
|
|
color: $white-light;
|
2017-05-17 07:20:55 -04:00
|
|
|
}
|
|
|
|
|
2017-06-07 10:52:13 -04:00
|
|
|
table {
|
2017-07-06 15:37:31 -04:00
|
|
|
color: $black;
|
|
|
|
|
2017-06-07 10:52:13 -04:00
|
|
|
strong {
|
2017-07-06 15:37:31 -04:00
|
|
|
color: $black;
|
2017-06-07 10:52:13 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-17 07:20:55 -04:00
|
|
|
.view {
|
|
|
|
margin-right: 15px;
|
|
|
|
float: left;
|
|
|
|
|
|
|
|
&: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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-06 15:24:08 -04:00
|
|
|
#modal-peek-pg-queries-content {
|
2017-07-06 15:37:31 -04:00
|
|
|
color: $black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.peek-rblineprof-file {
|
|
|
|
pre.duration {
|
|
|
|
width: 280px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.data {
|
|
|
|
overflow: visible;
|
|
|
|
}
|
2017-06-06 15:24:08 -04:00
|
|
|
}
|