ddc09f3511
+ implement messageBox.close() + fix require() with root urls in /dir/page.html + limit messageBox focus shift to config-dialog + flatten vendor dirs and simplify build-vendor: + replace the unicode symbol with ASCII `->` + flatten dirs by default to simplify writing the rules and improve their readability + rename and sort functions in the order they run + use `node-fetch` instead of the gargantuan `make-fetch-happen` + use `glob` which is already installed by other deps Co-authored-by: tophf <tophf@gmx.com>
59 lines
1.2 KiB
CSS
59 lines
1.2 KiB
CSS
#message-box.injection-order > div {
|
|
height: 100%;
|
|
max-width: 80vw;
|
|
}
|
|
#message-box.injection-order #message-box-contents {
|
|
padding: 0;
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-direction: column;
|
|
--border: 1px solid rgba(128, 128, 128, .25);
|
|
}
|
|
.injection-order header {
|
|
padding: 1rem;
|
|
width: 0;
|
|
min-width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
.injection-order ol {
|
|
height: 100%;
|
|
padding: 1px 0 0; /* 1px for keyboard-focused element's outline */
|
|
margin: 0;
|
|
font-size: 14px;
|
|
overflow-y: auto;
|
|
border-top: var(--border);
|
|
}
|
|
.injection-order a {
|
|
display: block;
|
|
color: #000;
|
|
text-decoration: none;
|
|
transition: transform .25s ease-in-out;
|
|
z-index: 1;
|
|
user-select: none;
|
|
padding: 0.3em .5em;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
cursor: move;
|
|
}
|
|
.injection-order a.enabled {
|
|
font-weight: bold;
|
|
}
|
|
.injection-order a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
.injection-order a:not(:first-child) {
|
|
border-top: var(--border);
|
|
}
|
|
.injection-order a::before {
|
|
content: "\2261";
|
|
padding: 0.6em;
|
|
font-weight: normal;
|
|
}
|
|
.injection-order .draggable-list-target {
|
|
position: relative;
|
|
background: lightcyan;
|
|
transition: none;
|
|
z-index: 100;
|
|
}
|