2019-10-13 21:33:07 +02:00
|
|
|
@import "properties";
|
|
|
|
@import "mixin";
|
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
:global {
|
|
|
|
.query-create {
|
|
|
|
display: flex!important;
|
|
|
|
flex-direction: column!important;
|
2019-02-17 16:08:10 +01:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.row-name {
|
|
|
|
width: 100%;
|
2019-02-17 16:08:10 +01:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: stretch;
|
2019-02-17 16:08:10 +01:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
input {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
2019-02-17 16:08:10 +01:00
|
|
|
}
|
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.buttons {
|
|
|
|
margin-top: 5px;
|
|
|
|
text-align: right;
|
|
|
|
}
|
2019-02-17 16:08:10 +01:00
|
|
|
}
|
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.query-created {
|
|
|
|
display: flex!important;
|
|
|
|
flex-direction: column!important;
|
2019-02-17 16:08:10 +01:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.buttons {
|
|
|
|
text-align: right;
|
|
|
|
}
|
2019-02-17 16:08:10 +01:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.form-row {
|
|
|
|
margin-right: 0!important;
|
|
|
|
margin-left: 0!important;
|
2019-02-17 16:08:10 +01:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: stretch;
|
2019-02-17 16:08:10 +01:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.icon_x32 {
|
|
|
|
align-self: center;
|
|
|
|
margin-right: 5px;
|
2019-02-17 16:08:10 +01:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
2019-02-17 16:08:10 +01:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.form-group {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
2019-02-17 16:08:10 +01:00
|
|
|
}
|
|
|
|
}
|
2020-06-13 18:47:05 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
html:root {
|
|
|
|
--modal-query-title: #e0e0e0;
|
2020-06-13 18:47:05 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
--modal-query-list: #28292b;
|
|
|
|
--modal-query-list-border: #1f2122;
|
2020-06-13 18:47:05 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
--modal-query-empty: #4d4d4d;
|
|
|
|
--modal-query-error: #732626;
|
2020-06-13 18:47:05 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
--modal-query-entry-hover: #2c2d2f;
|
|
|
|
--modal-query-entry-selected: #1a1a1b;
|
2020-06-13 18:47:05 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
--modal-query-key: #557edc;
|
|
|
|
--modal-query-copy-hover: #28292b;
|
|
|
|
}
|
2019-02-17 16:08:10 +01:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.modal-body.modal-query-manage {
|
|
|
|
display: flex!important;
|
|
|
|
flex-direction: row!important;
|
|
|
|
justify-content: stretch!important;
|
2019-02-17 16:08:10 +01:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
padding: 1em!important;
|
2019-02-17 16:08:10 +01:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
min-width: 25em!important; /* 23em to be exact */
|
|
|
|
min-height: 20em!important;
|
2019-02-17 16:08:10 +01:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
width: 60em; /* recommend width */
|
|
|
|
height: 50em;
|
2019-02-17 16:08:10 +01:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
@include user-select(none);
|
2019-02-17 16:08:10 +01:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.container {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
min-width: 20em;
|
|
|
|
min-height: 10em;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: stretch;
|
|
|
|
}
|
2019-02-17 16:08:10 +01:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.left, .right {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
|
|
|
display: flex;
|
2021-03-17 16:02:06 +01:00
|
|
|
flex-direction: column;
|
2019-10-13 21:33:07 +02:00
|
|
|
justify-content: stretch;
|
2019-02-17 16:08:10 +01:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
> .title {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 0;
|
|
|
|
margin-bottom: .5em;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: stretch;
|
|
|
|
|
|
|
|
a {
|
|
|
|
font-weight: bold;
|
|
|
|
color: var(--modal-query-title);
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
font-size: 1.05em;
|
|
|
|
min-width: 5em;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
align-self: flex-end;
|
|
|
|
line-height: normal;
|
2019-02-17 16:08:10 +01:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 1;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
height: 2em;
|
|
|
|
font-size: .9em;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
width: 10em;
|
|
|
|
min-width: 5em;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
align-self: center;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2019-02-17 16:08:10 +01:00
|
|
|
}
|
|
|
|
}
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.left {
|
|
|
|
margin-right: .4em;
|
|
|
|
min-width: 10em;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.container-list {
|
|
|
|
flex-grow: 1;
|
2019-02-17 16:08:10 +01:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: stretch;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
border-radius: 0.2em;
|
|
|
|
border: 1px solid var(--modal-query-list-border);
|
|
|
|
background-color: var(--modal-query-list);
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.container-entries {
|
|
|
|
flex-shrink: 1;
|
|
|
|
flex-grow: 1;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
min-height: 5em;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
position: relative;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
|
|
|
@include chat-scrollbar-vertical();
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.container-empty, .container-error {
|
|
|
|
position: absolute;
|
2019-02-17 16:08:10 +01:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
text-align: center;
|
|
|
|
font-size: 2em;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
background-color: var(--modal-query-list);
|
|
|
|
}
|
2020-06-13 18:47:05 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.container-empty {
|
|
|
|
color: var(--modal-query-empty);
|
|
|
|
}
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.container-error {
|
|
|
|
color: var(--modal-query-error);
|
|
|
|
}
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.entry {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-start;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
flex-shrink: 1;
|
|
|
|
min-width: 4em;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
padding-left: .5em;
|
|
|
|
padding-right: .5em;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
cursor: pointer;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
&:hover {
|
|
|
|
background-color: var(--modal-query-entry-hover);
|
|
|
|
}
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
&.selected {
|
|
|
|
background-color: var(--modal-query-entry-selected);
|
|
|
|
}
|
2019-10-13 21:33:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.container-search {
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
padding: 0 .5em;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
border-top: 1px solid var(--modal-query-list-border);
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: stretch;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
button {
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 1;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
height: 2em;
|
|
|
|
min-width: 2em;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
align-self: center;
|
|
|
|
margin-top: .8em;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
margin-right: .5em;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.form-group {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
min-width: 5em;
|
|
|
|
}
|
2019-10-13 21:33:07 +02:00
|
|
|
}
|
2019-02-17 16:08:10 +01:00
|
|
|
}
|
|
|
|
}
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.right {
|
|
|
|
min-width: 10em;
|
|
|
|
margin-left: .4em;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.container-details {
|
|
|
|
flex-grow: 1;
|
2019-02-17 16:08:10 +01:00
|
|
|
|
|
|
|
display: flex;
|
2019-10-13 21:33:07 +02:00
|
|
|
flex-direction: column;
|
2021-03-17 16:02:06 +01:00
|
|
|
justify-content: stretch;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.detail {
|
|
|
|
flex-shrink: 0;
|
2019-02-17 16:08:10 +01:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
margin-bottom: 1em;
|
2019-02-17 16:08:10 +01:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.title, .title a {
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: var(--modal-query-key);
|
2019-02-17 16:08:10 +01:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2019-02-17 16:08:10 +01:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.value {
|
|
|
|
@include user-select(text);
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.unique-id {
|
|
|
|
.title {
|
2019-10-13 21:33:07 +02:00
|
|
|
display: flex;
|
2021-03-17 16:02:06 +01:00
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-start;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.button {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
width: 1.2em;
|
|
|
|
height: 1.2em;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
align-self: center;
|
|
|
|
margin-left: .25em;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
cursor: pointer;
|
|
|
|
border-radius: .2em;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
&:hover {
|
|
|
|
background: var(--modal-query-copy-hover);
|
|
|
|
}
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
margin-bottom: .2em; /* "text sub" */
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
> div {
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include transition($button_hover_animation_time ease-in-out);
|
|
|
|
}
|
2019-10-13 21:33:07 +02:00
|
|
|
}
|
|
|
|
}
|
2019-02-17 16:08:10 +01:00
|
|
|
}
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.spacer { flex-grow: 1; flex-shrink: 1; min-height: 0; }
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.buttons {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
button {
|
|
|
|
flex-shrink: 1;
|
|
|
|
min-width: 5em;
|
2019-02-17 16:08:10 +01:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
height: 2em;
|
|
|
|
font-size: .9em;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
width: 14em;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2019-10-13 21:33:07 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
&:not(:first-of-type) {
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
2019-10-13 21:33:07 +02:00
|
|
|
}
|
2019-02-17 16:08:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
.container-seperator {
|
|
|
|
background: transparent;
|
|
|
|
}
|
2019-02-17 16:08:10 +01:00
|
|
|
}
|
|
|
|
}
|