2019-09-11 10:09:41 -04:00
|
|
|
table.group-reports {
|
|
|
|
width: 100%;
|
|
|
|
table-layout: fixed;
|
|
|
|
|
|
|
|
th:first-child {
|
|
|
|
width: 30%;
|
|
|
|
}
|
|
|
|
th:nth-child(2) {
|
|
|
|
width: 60%;
|
|
|
|
}
|
|
|
|
th:last-child {
|
|
|
|
width: 20%;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
tbody {
|
|
|
|
border-top: 3px solid #e3ebf2;
|
2019-09-11 11:30:39 -04:00
|
|
|
|
2019-09-11 10:09:41 -04:00
|
|
|
tr {
|
|
|
|
border-bottom: 1px solid #e3ebf2;
|
|
|
|
|
|
|
|
td {
|
|
|
|
color: #7499bd;
|
|
|
|
padding: 0.8em 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
td:first-child {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
td:last-child {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-01 00:21:14 -04:00
|
|
|
.https-warning {
|
|
|
|
color: $danger;
|
|
|
|
}
|
2015-06-25 12:25:15 -04:00
|
|
|
|
2015-07-08 19:46:36 -04:00
|
|
|
.query-editor {
|
|
|
|
margin-bottom: 15px;
|
2019-04-07 02:05:43 -04:00
|
|
|
|
|
|
|
.panels-flex {
|
|
|
|
display: flex;
|
|
|
|
height: 400px;
|
|
|
|
border: 1px solid $primary-very-low;
|
2015-07-14 12:44:42 -04:00
|
|
|
}
|
|
|
|
&.no-schema {
|
|
|
|
.editor-panel {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.right-panel {
|
|
|
|
width: 0;
|
|
|
|
button.unhide {
|
|
|
|
position: absolute;
|
2019-04-07 02:05:43 -04:00
|
|
|
margin-left: -53px;
|
2015-07-14 12:44:42 -04:00
|
|
|
z-index: 1;
|
|
|
|
}
|
2019-04-07 02:05:43 -04:00
|
|
|
.schema {
|
|
|
|
display: none;
|
|
|
|
}
|
2015-07-14 12:44:42 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.editor-panel {
|
2019-04-07 02:05:43 -04:00
|
|
|
flex-grow: 1;
|
2015-07-09 15:02:47 -04:00
|
|
|
.ace-wrapper {
|
|
|
|
position: relative;
|
2019-04-07 02:05:43 -04:00
|
|
|
height: 100%;
|
2015-07-08 19:46:36 -04:00
|
|
|
width: 100%;
|
2015-07-09 15:02:47 -04:00
|
|
|
}
|
|
|
|
.ace_editor {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
2015-07-08 19:46:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.right-panel {
|
2019-04-07 02:05:43 -04:00
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
2019-12-09 12:02:32 -05:00
|
|
|
width: 345px;
|
2015-07-08 19:46:36 -04:00
|
|
|
.schema {
|
2018-08-20 01:59:19 -04:00
|
|
|
border-left: 1px solid $primary-low;
|
2019-04-07 02:05:43 -04:00
|
|
|
height: 100%;
|
2015-07-08 19:46:36 -04:00
|
|
|
overflow-y: scroll;
|
|
|
|
overflow-x: hidden;
|
2018-09-04 14:53:12 -04:00
|
|
|
color: $primary-high;
|
|
|
|
font-size: $font-down-2;
|
2015-07-08 19:46:36 -04:00
|
|
|
|
2015-07-14 12:44:42 -04:00
|
|
|
input {
|
|
|
|
padding: 4px;
|
|
|
|
margin: 3px;
|
|
|
|
// 100% - padding + margin * 2 - border - button - buttonborder
|
2018-09-04 14:53:12 -04:00
|
|
|
width: calc(100% - 14px - 1px - 40px - 2px);
|
2015-07-14 12:44:42 -04:00
|
|
|
}
|
2015-07-08 19:46:36 -04:00
|
|
|
.schema-table-name {
|
|
|
|
font-weight: bold;
|
2018-08-20 01:59:19 -04:00
|
|
|
border-bottom: 1px solid $primary-low;
|
2015-07-08 19:46:36 -04:00
|
|
|
padding-left: 5px;
|
|
|
|
.fa {
|
|
|
|
width: 6px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ul {
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
dl {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
dl > div > * {
|
|
|
|
padding-top: 2px;
|
|
|
|
padding-bottom: 2px;
|
|
|
|
}
|
|
|
|
dl > div {
|
2018-09-04 14:53:12 -04:00
|
|
|
clear: both;
|
2015-07-08 19:46:36 -04:00
|
|
|
}
|
|
|
|
dt {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: text-top;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
width: 110px;
|
|
|
|
margin-left: 5px;
|
|
|
|
&.sensitive {
|
|
|
|
color: $danger;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dd {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: text-top;
|
2015-07-28 14:18:22 -04:00
|
|
|
width: 110px;
|
2015-07-08 19:46:36 -04:00
|
|
|
color: $tertiary;
|
|
|
|
margin: 0;
|
|
|
|
padding-left: 7px;
|
2018-08-20 01:59:19 -04:00
|
|
|
border-left: 1px dotted $primary-low-mid;
|
2015-07-08 19:46:36 -04:00
|
|
|
|
|
|
|
.schema-typenotes {
|
2018-08-20 01:59:19 -04:00
|
|
|
color: $primary-medium;
|
2015-07-08 19:46:36 -04:00
|
|
|
font-style: italic;
|
2015-07-28 12:59:26 -04:00
|
|
|
}
|
|
|
|
.popup-info {
|
2018-08-20 01:59:19 -04:00
|
|
|
color: $primary-medium;
|
2015-07-09 18:46:19 -04:00
|
|
|
|
2018-09-04 14:53:12 -04:00
|
|
|
.popup {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
&:hover .popup {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
&:focus .popup {
|
|
|
|
display: block;
|
|
|
|
}
|
2015-07-28 12:59:26 -04:00
|
|
|
|
|
|
|
.popup {
|
2019-12-09 12:02:32 -05:00
|
|
|
width: 180px;
|
2018-11-08 01:34:04 -05:00
|
|
|
padding: 4px;
|
|
|
|
position: relative;
|
2015-07-28 12:59:26 -04:00
|
|
|
border: 1px solid;
|
2018-08-20 01:59:19 -04:00
|
|
|
background: $secondary;
|
2018-11-08 01:34:04 -05:00
|
|
|
padding-right: calc(5px + 0.5em);
|
2015-07-28 12:59:26 -04:00
|
|
|
}
|
2015-07-09 18:46:19 -04:00
|
|
|
|
2015-07-28 12:59:26 -04:00
|
|
|
.popup ol {
|
2018-11-08 01:34:04 -05:00
|
|
|
padding: 0px;
|
|
|
|
position: relative;
|
2015-07-28 12:59:26 -04:00
|
|
|
list-style: none;
|
|
|
|
> li:before {
|
|
|
|
content: attr(value) ": ";
|
2015-07-09 18:46:19 -04:00
|
|
|
}
|
|
|
|
}
|
2015-07-08 19:46:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.grippie {
|
2019-04-07 02:05:43 -04:00
|
|
|
cursor: nwse-resize;
|
2015-07-08 19:46:36 -04:00
|
|
|
clear: both;
|
2019-04-07 02:05:43 -04:00
|
|
|
font-size: $font-down-2;
|
2015-07-09 16:20:21 -04:00
|
|
|
-webkit-user-select: none;
|
2019-04-07 02:05:43 -04:00
|
|
|
color: $primary;
|
|
|
|
text-align: right;
|
|
|
|
background: $primary-very-low;
|
|
|
|
border: 1px solid $primary-very-low;
|
|
|
|
.d-icon {
|
|
|
|
transform: rotate(90deg);
|
|
|
|
}
|
2015-07-08 19:46:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-30 13:20:22 -04:00
|
|
|
.query-edit {
|
2018-09-04 14:53:12 -04:00
|
|
|
.name {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
h1 {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 0.5em 0 0;
|
|
|
|
color: $primary;
|
|
|
|
a {
|
|
|
|
color: currentColor;
|
|
|
|
}
|
|
|
|
}
|
2015-06-30 13:20:22 -04:00
|
|
|
}
|
2018-09-04 14:53:12 -04:00
|
|
|
button.previous {
|
|
|
|
margin-right: 0.5em;
|
|
|
|
.d-icon {
|
|
|
|
margin-left: -0.15em; // fixing fontawesome horizontal alignment
|
|
|
|
}
|
2018-08-29 03:51:02 -04:00
|
|
|
}
|
2018-09-04 14:53:12 -04:00
|
|
|
.name-text-field {
|
|
|
|
width: 100%;
|
2018-08-16 13:44:07 -04:00
|
|
|
}
|
2018-09-04 14:53:12 -04:00
|
|
|
.name input,
|
|
|
|
.desc textarea {
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0;
|
2015-06-30 13:20:22 -04:00
|
|
|
}
|
2015-07-01 15:31:55 -04:00
|
|
|
&:not(.editing) .desc {
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
2019-09-11 10:09:41 -04:00
|
|
|
.groups {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
.label {
|
|
|
|
margin-right: 10px;
|
|
|
|
color: $primary-high;
|
|
|
|
}
|
|
|
|
.name {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
}
|
2015-07-08 16:45:13 -04:00
|
|
|
}
|
|
|
|
|
2015-08-03 18:14:23 -04:00
|
|
|
.query-run {
|
2015-08-03 18:15:04 -04:00
|
|
|
margin-top: 25px;
|
2015-08-03 18:14:23 -04:00
|
|
|
.query-plan {
|
|
|
|
display: inline-block;
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-04 14:53:12 -04:00
|
|
|
.clear {
|
|
|
|
clear: both;
|
|
|
|
}
|
2015-07-08 16:45:13 -04:00
|
|
|
|
|
|
|
.schema-title {
|
|
|
|
display: block;
|
|
|
|
margin: auto;
|
|
|
|
}
|
2015-06-25 12:25:15 -04:00
|
|
|
|
2015-06-30 18:56:09 -04:00
|
|
|
.query-params {
|
2018-08-20 01:59:19 -04:00
|
|
|
border: 1px solid $header_primary-medium;
|
2015-07-14 19:01:38 -04:00
|
|
|
.param > input {
|
2015-06-30 18:56:09 -04:00
|
|
|
margin: 9px;
|
|
|
|
}
|
2015-07-14 19:01:38 -04:00
|
|
|
.invalid > input {
|
2018-08-20 01:59:19 -04:00
|
|
|
background-color: $danger-low;
|
2015-07-14 19:01:38 -04:00
|
|
|
}
|
|
|
|
.invalid .ac-wrap {
|
2018-08-20 01:59:19 -04:00
|
|
|
background-color: $danger-low;
|
2015-07-14 19:01:38 -04:00
|
|
|
}
|
2015-06-30 22:51:38 -04:00
|
|
|
.param {
|
2015-07-14 19:49:23 -04:00
|
|
|
width: 300px;
|
2015-06-30 22:51:38 -04:00
|
|
|
display: inline-block;
|
|
|
|
overflow-x: visible;
|
2015-07-14 19:01:38 -04:00
|
|
|
.ac-wrap {
|
|
|
|
display: inline-block;
|
2015-07-15 14:00:31 -04:00
|
|
|
input {
|
|
|
|
width: 100px !important; // override an inline style
|
|
|
|
}
|
2015-07-14 19:01:38 -04:00
|
|
|
}
|
2015-07-14 19:49:23 -04:00
|
|
|
input {
|
|
|
|
width: 190px;
|
|
|
|
}
|
2015-06-30 22:51:38 -04:00
|
|
|
}
|
|
|
|
.param-name {
|
|
|
|
display: inline-block;
|
|
|
|
width: 70px;
|
|
|
|
}
|
2015-06-30 18:56:09 -04:00
|
|
|
}
|
|
|
|
|
2018-09-04 14:53:12 -04:00
|
|
|
.query-list,
|
|
|
|
.query-create,
|
|
|
|
.query-edit,
|
|
|
|
.query-results,
|
|
|
|
.query-params,
|
|
|
|
.https-warning {
|
2015-06-29 15:10:24 -04:00
|
|
|
margin: 10px 0;
|
2015-06-25 12:25:15 -04:00
|
|
|
}
|
2015-07-09 16:58:22 -04:00
|
|
|
|
2019-09-11 10:09:41 -04:00
|
|
|
.query-results {
|
|
|
|
table {
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 10px;
|
|
|
|
td {
|
|
|
|
padding: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-09 14:04:14 -04:00
|
|
|
.query-list {
|
|
|
|
display: flex;
|
2018-11-02 08:41:20 -04:00
|
|
|
max-height: 30px;
|
2018-09-07 06:28:52 -04:00
|
|
|
.btn-left {
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
|
|
|
.btn-right {
|
|
|
|
margin-left: auto;
|
2018-09-04 14:53:12 -04:00
|
|
|
margin-right: 0.5em;
|
2018-05-09 14:04:14 -04:00
|
|
|
}
|
|
|
|
li.none {
|
2018-05-09 15:49:43 -04:00
|
|
|
display: none;
|
2018-05-09 14:04:14 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-12 12:08:25 -04:00
|
|
|
.recent-queries {
|
2018-09-02 14:57:44 -04:00
|
|
|
thead {
|
|
|
|
.created-by {
|
2019-09-11 10:09:41 -04:00
|
|
|
width: 15%;
|
|
|
|
}
|
|
|
|
.group-names {
|
|
|
|
width: 15%;
|
|
|
|
.group-names-header {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 8px;
|
|
|
|
left: 6px;
|
|
|
|
}
|
2018-09-02 14:57:44 -04:00
|
|
|
}
|
|
|
|
.created-at {
|
|
|
|
width: 15%;
|
|
|
|
}
|
|
|
|
.heading {
|
|
|
|
position: relative;
|
2018-09-04 14:53:12 -04:00
|
|
|
color: $primary-medium;
|
2018-09-02 14:57:44 -04:00
|
|
|
padding: 50px 0px 0px 0px;
|
2018-09-04 14:53:12 -04:00
|
|
|
th.sortable {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
2018-09-02 14:57:44 -04:00
|
|
|
.heading-toggle {
|
|
|
|
bottom: 0;
|
|
|
|
position: absolute;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.query-row {
|
|
|
|
a {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.query-name {
|
2018-09-04 14:53:12 -04:00
|
|
|
color: $primary;
|
2018-09-02 14:57:44 -04:00
|
|
|
}
|
|
|
|
.query-desc {
|
2018-09-05 13:33:06 -04:00
|
|
|
display: block;
|
2018-09-02 14:57:44 -04:00
|
|
|
color: $primary-high;
|
|
|
|
}
|
|
|
|
.query-created-by {
|
|
|
|
color: $primary-high;
|
|
|
|
}
|
2019-09-11 10:09:41 -04:00
|
|
|
.query-group-names {
|
2019-10-28 15:32:09 -04:00
|
|
|
color: $tertiary;
|
|
|
|
a {
|
|
|
|
display: inline;
|
|
|
|
}
|
2019-09-11 10:09:41 -04:00
|
|
|
}
|
2018-09-02 14:57:44 -04:00
|
|
|
.query-created-at {
|
2018-09-04 14:53:12 -04:00
|
|
|
color: $primary-medium;
|
|
|
|
}
|
2018-08-31 14:11:33 -04:00
|
|
|
}
|
2018-09-12 07:08:08 -04:00
|
|
|
.query-row:hover {
|
|
|
|
background-color: inherit;
|
|
|
|
}
|
2018-08-12 12:08:25 -04:00
|
|
|
tr a {
|
2018-08-31 14:11:33 -04:00
|
|
|
color: inherit;
|
2018-09-02 14:57:44 -04:00
|
|
|
cursor: pointer;
|
2018-08-31 14:11:33 -04:00
|
|
|
display: inline-block;
|
2018-08-30 07:13:15 -04:00
|
|
|
}
|
2018-11-02 08:41:20 -04:00
|
|
|
.no-search-results {
|
|
|
|
color: $primary-medium;
|
|
|
|
}
|
2018-08-12 12:08:25 -04:00
|
|
|
}
|
|
|
|
|
2018-09-12 09:28:54 -04:00
|
|
|
.result-info {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.result-about {
|
|
|
|
color: $primary-high;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.result-explain {
|
|
|
|
padding-top: 1em;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
2018-10-23 06:45:40 -04:00
|
|
|
.result-post-link {
|
|
|
|
display: block;
|
|
|
|
color: inherit !important;
|
|
|
|
}
|
2018-09-12 09:28:54 -04:00
|
|
|
|
2015-07-09 16:58:22 -04:00
|
|
|
.explorer-pad-bottom {
|
|
|
|
margin-bottom: 200px;
|
|
|
|
}
|
2019-10-28 15:32:09 -04:00
|
|
|
|
|
|
|
.share-report {
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
label {
|
|
|
|
color: $primary-high;
|
|
|
|
}
|
|
|
|
input {
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
.popup {
|
|
|
|
background: white;
|
|
|
|
position: absolute;
|
|
|
|
box-shadow: shadow("card");
|
|
|
|
padding: 12px;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
}
|