78 lines
1.1 KiB
CSS
78 lines
1.1 KiB
CSS
|
.no-top-margin {
|
||
|
margin-top: 0;
|
||
|
}
|
||
|
|
||
|
.plugin-list {
|
||
|
list-style-type: none;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
.plugin-list li {
|
||
|
white-space: nowrap;
|
||
|
text-overflow: ellipsis;
|
||
|
overflow-x: hidden;
|
||
|
}
|
||
|
|
||
|
.plugin-error {
|
||
|
color: #ff0000;
|
||
|
}
|
||
|
|
||
|
.plugin-label {
|
||
|
margin-left: 8px;
|
||
|
}
|
||
|
|
||
|
/* From: https://stackoverflow.com/a/28074607/6620612 */
|
||
|
.processing:after {
|
||
|
overflow: hidden;
|
||
|
display: inline-block;
|
||
|
vertical-align: bottom;
|
||
|
-webkit-animation: ellipsis steps(4, end) 900ms infinite;
|
||
|
animation: ellipsis steps(4, end) 900ms infinite;
|
||
|
content: "\2026"; /* ascii code for the ellipsis character */
|
||
|
width: 0px;
|
||
|
}
|
||
|
|
||
|
@keyframes ellipsis {
|
||
|
to {
|
||
|
width: 1.25em;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@-webkit-keyframes ellipsis {
|
||
|
to {
|
||
|
width: 1.25em;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.plugins-txt-dialog {
|
||
|
top: 12px;
|
||
|
z-index: 4;
|
||
|
background-color: #fbefd5;
|
||
|
box-shadow: 0 0 1em black;
|
||
|
max-width: 400px;
|
||
|
}
|
||
|
|
||
|
.plugins-txt-dialog h3 {
|
||
|
margin-top: 0px;
|
||
|
}
|
||
|
|
||
|
.plugins-txt-dialog textarea {
|
||
|
width: 100%;
|
||
|
min-height: 100px;
|
||
|
resize: vertical;
|
||
|
}
|
||
|
|
||
|
.plugins-txt-dialog menu {
|
||
|
padding: 0;
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
|
||
|
.drop-area {
|
||
|
position: absolute;
|
||
|
top: 0px;
|
||
|
left: 0px;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|