mirror of
https://github.com/moyf/easy-copy.git
synced 2026-07-22 05:43:47 +00:00
70 lines
No EOL
1.2 KiB
CSS
70 lines
No EOL
1.2 KiB
CSS
/*
|
|
|
|
This CSS file will be included with your plugin, and
|
|
available in the app when your plugin is enabled.
|
|
|
|
If your plugin does not need CSS, delete this file.
|
|
|
|
*/
|
|
|
|
.blockid-modal-desc {
|
|
font-size: var(--font-ui-smaller);
|
|
color: var(--text-muted);
|
|
margin-top: 0.5em;
|
|
margin-bottom: 0.2em;
|
|
}
|
|
|
|
.blockid-modal-error {
|
|
color: var(--text-error);
|
|
font-size: var(--font-ui-smaller);
|
|
margin-top: 0.25em;
|
|
}
|
|
|
|
.blockid-modal-input {
|
|
width: 100%;
|
|
margin-top: 0.5em;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
|
|
.easy-copy-matcher-row {
|
|
cursor: grab;
|
|
}
|
|
|
|
.easy-copy-matcher-row:active {
|
|
cursor: grabbing;
|
|
}
|
|
|
|
.easy-copy-matcher-row.is-dragging {
|
|
opacity: 0.55;
|
|
}
|
|
|
|
.easy-copy-matcher-row .mod-drag-handle {
|
|
cursor: grab;
|
|
}
|
|
|
|
.easy-copy-matcher-config {
|
|
margin-left: 1.5em;
|
|
padding: 0.5em 0 0.75em 0;
|
|
border-bottom: 1px solid var(--background-modifier-border);
|
|
}
|
|
|
|
.easy-copy-regex-error {
|
|
display: none;
|
|
color: var(--text-error);
|
|
font-size: var(--font-ui-smaller);
|
|
margin: 0.25em 0 0.5em 0;
|
|
}
|
|
|
|
.easy-copy-regex-error.is-visible {
|
|
display: block;
|
|
}
|
|
|
|
.setting-editor-extra-setting-button {
|
|
display: inline-block;
|
|
vertical-align:middle;
|
|
cursor:help;
|
|
|
|
&:hover {
|
|
color: var(--color-accent);
|
|
}
|
|
} |