2020-06-15 15:45:19 +02:00
|
|
|
:root {
|
|
|
|
--nav-width: 48px;
|
|
|
|
}
|
|
|
|
|
2020-01-07 11:48:38 +01:00
|
|
|
body {
|
2020-06-15 15:45:19 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2020-01-07 11:48:38 +01:00
|
|
|
}
|
|
|
|
|
2020-05-05 21:44:50 +02:00
|
|
|
#navigation {
|
2020-06-15 15:45:19 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
width: var(--nav-width);
|
2020-05-05 21:44:50 +02:00
|
|
|
}
|
|
|
|
|
2020-05-19 05:50:10 +02:00
|
|
|
#navigation > :not(#service-buttons) {
|
2020-06-15 15:45:19 +02:00
|
|
|
flex-shrink: 0;
|
2020-05-19 05:50:10 +02:00
|
|
|
}
|
|
|
|
|
2020-05-19 04:57:52 +02:00
|
|
|
#service-buttons {
|
2020-06-15 15:45:19 +02:00
|
|
|
flex-grow: 1;
|
2020-05-19 04:57:52 +02:00
|
|
|
|
2020-06-15 15:45:19 +02:00
|
|
|
overflow: hidden auto;
|
2020-05-19 04:57:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#service-selector {
|
2020-06-15 15:45:19 +02:00
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2020-05-05 21:44:50 +02:00
|
|
|
|
2020-06-15 15:45:19 +02:00
|
|
|
list-style: none;
|
2020-05-05 22:24:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#service-selector::-webkit-scrollbar {
|
2020-06-15 15:45:19 +02:00
|
|
|
width: 6px;
|
2020-01-07 11:48:38 +01:00
|
|
|
}
|
|
|
|
|
2020-01-21 13:03:32 +01:00
|
|
|
#service-selector [draggable] {
|
2020-06-15 15:45:19 +02:00
|
|
|
user-select: none;
|
|
|
|
background-color: rgb(43, 43, 43);
|
2020-01-21 13:03:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#service-selector [draggable] img {
|
2020-06-15 15:45:19 +02:00
|
|
|
-webkit-user-drag: none;
|
|
|
|
user-drag: none;
|
2020-01-21 13:03:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#service-selector .drag-target button::after,
|
|
|
|
#service-last-drag-position.drag-target {
|
2020-06-15 15:45:19 +02:00
|
|
|
content: "";
|
|
|
|
height: 4px;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
border: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background: #fff9;
|
2020-05-19 05:40:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#service-selector .drag-target-self button::after {
|
2020-06-15 15:45:19 +02:00
|
|
|
height: var(--nav-width);
|
|
|
|
border: 1px dashed #fff;
|
|
|
|
transform: none;
|
2020-01-21 13:03:32 +01:00
|
|
|
}
|
2020-02-20 11:51:13 +01:00
|
|
|
|
2020-01-21 13:03:32 +01:00
|
|
|
#service-selector .drag-target button::after {
|
2020-06-15 15:45:19 +02:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
2020-01-21 13:03:32 +01:00
|
|
|
}
|
2020-02-20 11:51:13 +01:00
|
|
|
|
2020-01-21 13:03:32 +01:00
|
|
|
#service-selector .drag-target::after {
|
2020-06-15 15:45:19 +02:00
|
|
|
top: 75% !important;
|
2020-01-21 13:03:32 +01:00
|
|
|
}
|
|
|
|
|
2020-01-07 11:48:38 +01:00
|
|
|
*:focus {
|
2020-06-15 15:45:19 +02:00
|
|
|
outline-color: rgb(118, 93, 176);
|
2020-01-07 11:48:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#navigation button {
|
2020-06-15 15:45:19 +02:00
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
width: var(--nav-width);
|
|
|
|
height: var(--nav-width);
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2020-01-07 11:48:38 +01:00
|
|
|
|
2020-06-15 15:45:19 +02:00
|
|
|
color: #fff;
|
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
2020-01-07 11:48:38 +01:00
|
|
|
|
2020-06-15 15:45:19 +02:00
|
|
|
cursor: pointer;
|
2020-01-07 11:48:38 +01:00
|
|
|
}
|
|
|
|
|
2020-05-05 22:24:05 +02:00
|
|
|
#navigation button:focus {
|
2020-06-15 15:45:19 +02:00
|
|
|
outline: none;
|
|
|
|
background: #fff3 !important;
|
2020-05-05 22:24:05 +02:00
|
|
|
}
|
|
|
|
|
2020-01-07 11:48:38 +01:00
|
|
|
#navigation button img {
|
2020-06-15 15:45:19 +02:00
|
|
|
width: calc(var(--nav-width) / 2);
|
2020-01-07 11:48:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#navigation button i {
|
2020-06-15 15:45:19 +02:00
|
|
|
font-size: calc(var(--nav-width) / 2);
|
2020-01-07 11:48:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#service-selector li {
|
2020-06-15 15:45:19 +02:00
|
|
|
position: relative;
|
2020-01-07 11:48:38 +01:00
|
|
|
}
|
|
|
|
|
2020-01-10 15:16:59 +01:00
|
|
|
#service-selector li button,
|
|
|
|
#navigation > button {
|
2020-06-15 15:45:19 +02:00
|
|
|
border-radius: 0;
|
2020-01-10 15:16:59 +01:00
|
|
|
}
|
|
|
|
|
2020-01-07 11:48:38 +01:00
|
|
|
#service-selector li.active button {
|
2020-06-15 15:45:19 +02:00
|
|
|
background-color: #fff2;
|
2020-01-07 11:48:38 +01:00
|
|
|
}
|
|
|
|
|
2020-05-05 22:24:05 +02:00
|
|
|
#service-selector li.loaded button::before {
|
2020-06-15 15:45:19 +02:00
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
height: 75%;
|
|
|
|
border-right: 4px solid #ffffff3e;
|
2020-01-07 11:48:38 +01:00
|
|
|
}
|
|
|
|
|
2020-05-05 22:24:05 +02:00
|
|
|
/*#service-selector li.loaded::after {*/
|
|
|
|
/* content: "";*/
|
|
|
|
/* position: absolute;*/
|
|
|
|
/* top: 50%;*/
|
|
|
|
/* right: 2px;*/
|
|
|
|
/* transform: translateY(-50%);*/
|
|
|
|
/* width: 4px;*/
|
|
|
|
/* height: 4px;*/
|
|
|
|
|
|
|
|
/* background-color: #fff;*/
|
|
|
|
/* border-radius: 100%;*/
|
|
|
|
/*}*/
|
|
|
|
|
2020-01-07 11:48:38 +01:00
|
|
|
#navigation button:hover {
|
2020-06-15 15:45:19 +02:00
|
|
|
background-color: #fff3;
|
2020-01-07 11:48:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#history {
|
2020-06-15 15:45:19 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
padding: 2px;
|
2020-01-07 11:48:38 +01:00
|
|
|
}
|
|
|
|
|
2020-05-19 07:00:14 +02:00
|
|
|
#history button,
|
|
|
|
#history .status {
|
2020-06-15 15:45:19 +02:00
|
|
|
display: inline;
|
|
|
|
width: calc(var(--nav-width) / 2);
|
|
|
|
height: calc(var(--nav-width) / 2);
|
|
|
|
margin: 2px;
|
|
|
|
padding: initial;
|
|
|
|
font-size: calc(var(--nav-width) / 4);
|
2020-01-07 11:48:38 +01:00
|
|
|
|
2020-06-15 15:45:19 +02:00
|
|
|
background: #fff1;
|
2020-01-07 11:48:38 +01:00
|
|
|
|
2020-06-15 15:45:19 +02:00
|
|
|
color: #fff;
|
|
|
|
cursor: pointer;
|
2020-05-19 07:00:14 +02:00
|
|
|
|
2020-06-15 15:45:19 +02:00
|
|
|
border-radius: 3px;
|
2020-01-07 11:48:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#history button i {
|
2020-06-15 15:45:19 +02:00
|
|
|
font-size: inherit;
|
2020-01-07 11:48:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#history button.disabled {
|
2020-06-15 15:45:19 +02:00
|
|
|
color: #888;
|
|
|
|
border: transparent;
|
|
|
|
background: transparent;
|
|
|
|
cursor: initial;
|
2020-01-07 11:48:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#history button:focus,
|
|
|
|
#history button:hover {
|
2020-06-15 15:45:19 +02:00
|
|
|
outline: none;
|
|
|
|
border-color: #fff9;
|
2020-01-07 11:48:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#history button:hover:not(.disabled) {
|
2020-06-15 15:45:19 +02:00
|
|
|
outline: none;
|
|
|
|
background-color: #fff2;
|
2020-01-07 11:48:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#history button:active:not(.disabled) {
|
2020-06-15 15:45:19 +02:00
|
|
|
background-color: #fff4;
|
2020-01-07 11:48:38 +01:00
|
|
|
}
|
|
|
|
|
2020-05-19 07:00:14 +02:00
|
|
|
#history #status {
|
2020-06-15 15:45:19 +02:00
|
|
|
background: transparent;
|
2020-05-19 07:00:14 +02:00
|
|
|
}
|
|
|
|
|
2020-05-19 07:23:27 +02:00
|
|
|
#history #status .unknown,
|
|
|
|
#history #status .file {
|
2020-06-15 15:45:19 +02:00
|
|
|
color: #888;
|
2020-05-19 07:00:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#history #status .https {
|
2020-06-15 15:45:19 +02:00
|
|
|
color: #009800;
|
2020-05-19 07:00:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#history #status .http {
|
2020-06-15 15:45:19 +02:00
|
|
|
color: #e20000;
|
2020-05-19 07:00:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#history #status > :not(.active) {
|
2020-06-15 15:45:19 +02:00
|
|
|
display: none;
|
2020-05-19 07:00:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#history #status > * .tip {
|
2020-06-15 15:45:19 +02:00
|
|
|
position: absolute;
|
2020-06-15 16:24:04 +02:00
|
|
|
z-index: 30;
|
2020-06-15 15:45:19 +02:00
|
|
|
left: 100%;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
display: none;
|
|
|
|
margin-left: 8px;
|
|
|
|
|
|
|
|
background-color: #000;
|
|
|
|
padding: 8px;
|
|
|
|
border-radius: 4px;
|
|
|
|
white-space: nowrap;
|
|
|
|
color: #fff;
|
|
|
|
text-transform: none;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 100;
|
2020-05-19 07:00:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#history #status > * .tip::before {
|
2020-06-15 15:45:19 +02:00
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 50%;
|
|
|
|
transform: translate(-100%, -50%);
|
|
|
|
display: inline-block;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border: 0 solid transparent;
|
|
|
|
border-top-width: 4px;
|
|
|
|
border-bottom-width: 4px;
|
|
|
|
border-right: 7px solid black;
|
2020-05-19 07:00:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#history #status:focus > * .tip {
|
2020-06-15 15:45:19 +02:00
|
|
|
display: block;
|
2020-05-19 07:00:14 +02:00
|
|
|
}
|
|
|
|
|
2020-01-07 11:48:38 +01:00
|
|
|
#navigation #add-button:not(:hover) {
|
2020-06-15 15:45:19 +02:00
|
|
|
opacity: 0.75;
|
2020-01-07 11:48:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#services {
|
2020-06-15 15:45:19 +02:00
|
|
|
position: relative;
|
|
|
|
flex-grow: 1;
|
2020-01-07 11:48:38 +01:00
|
|
|
}
|
|
|
|
|
2020-03-06 15:19:06 +01:00
|
|
|
#services > *:not(.loader):not(#url-preview) {
|
2020-06-15 15:45:19 +02:00
|
|
|
height: 100%;
|
2020-01-07 11:48:38 +01:00
|
|
|
}
|
|
|
|
|
2020-06-15 15:25:58 +02:00
|
|
|
#services > :not(.active):not(.loader):not(#url-preview):not(webview) {
|
2020-06-15 15:45:19 +02:00
|
|
|
display: none;
|
2020-01-07 11:48:38 +01:00
|
|
|
}
|
|
|
|
|
2020-06-15 15:25:58 +02:00
|
|
|
#services > webview {
|
2020-06-15 15:45:19 +02:00
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
z-index: 10;
|
|
|
|
background-color: rgb(43, 43, 43);
|
2020-06-15 15:25:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#services > webview.active {
|
2020-06-15 15:45:19 +02:00
|
|
|
z-index: 20;
|
2020-06-15 15:25:58 +02:00
|
|
|
}
|
|
|
|
|
2020-01-07 11:48:38 +01:00
|
|
|
#services > .loader {
|
2020-06-15 15:45:19 +02:00
|
|
|
width: 64px;
|
|
|
|
height: 64px;
|
2020-01-07 11:48:38 +01:00
|
|
|
|
2020-06-15 15:45:19 +02:00
|
|
|
position: absolute;
|
|
|
|
left: 50%;
|
|
|
|
top: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
z-index: -1;
|
2020-02-20 11:51:13 +01:00
|
|
|
}
|
2020-03-06 15:19:06 +01:00
|
|
|
|
|
|
|
#url-preview {
|
2020-06-15 15:45:19 +02:00
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
display: block;
|
|
|
|
padding: 2px 5px 1px 5px;
|
2020-03-06 15:19:06 +01:00
|
|
|
|
2020-06-15 15:45:19 +02:00
|
|
|
max-width: 48%;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2020-03-06 15:19:06 +01:00
|
|
|
|
2020-06-15 15:45:19 +02:00
|
|
|
font-family: monospace;
|
2020-03-06 15:19:06 +01:00
|
|
|
|
2020-06-15 15:45:19 +02:00
|
|
|
border-width: 1px 1px 0 0;
|
|
|
|
border-color: #232323;
|
|
|
|
border-style: solid;
|
|
|
|
border-radius: 0 5px 0 0;
|
2020-03-06 15:19:06 +01:00
|
|
|
|
2020-06-15 15:45:19 +02:00
|
|
|
background: #2b2b2b;
|
2020-03-06 15:19:06 +01:00
|
|
|
|
2020-06-15 15:45:19 +02:00
|
|
|
opacity: 1;
|
|
|
|
transition: 100ms ease opacity;
|
|
|
|
transition-delay: 200ms;
|
2020-03-06 15:19:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#url-preview.right {
|
2020-06-15 15:45:19 +02:00
|
|
|
left: auto;
|
|
|
|
right: 0;
|
2020-03-06 15:19:06 +01:00
|
|
|
|
2020-06-15 15:45:19 +02:00
|
|
|
border-width: 1px 0 0 1px;
|
|
|
|
border-radius: 5px 0 0 0;
|
2020-03-06 15:19:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#url-preview.hidden {
|
2020-06-15 15:45:19 +02:00
|
|
|
opacity: 0;
|
2020-03-06 15:19:06 +01:00
|
|
|
}
|
2020-05-05 21:56:07 +02:00
|
|
|
|
|
|
|
#services > #empty-message {
|
2020-06-15 15:45:19 +02:00
|
|
|
display: flex !important;
|
|
|
|
position: absolute;
|
|
|
|
z-index: -1;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2020-05-05 21:56:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#services > .loader:not(.hidden) ~ #empty-message {
|
2020-06-15 15:45:19 +02:00
|
|
|
display: none !important;
|
2020-05-05 21:56:07 +02:00
|
|
|
}
|