fix: style notes sort dropdown
This commit is contained in:
parent
67ac99c24d
commit
4e6188e7cf
|
|
@ -24,7 +24,7 @@
|
||||||
'.notes-btn.primary:hover{background:#2a4a3a}',
|
'.notes-btn.primary:hover{background:#2a4a3a}',
|
||||||
'.notes-filter,.notes-sort{font-size:.78rem;padding:.32rem .5rem;border:1px solid #333;border-radius:4px;background:#0d0d1a;color:#e0e0e0;outline:none}',
|
'.notes-filter,.notes-sort{font-size:.78rem;padding:.32rem .5rem;border:1px solid #333;border-radius:4px;background:#0d0d1a;color:#e0e0e0;outline:none}',
|
||||||
'.notes-filter{width:11rem}',
|
'.notes-filter{width:11rem}',
|
||||||
'.notes-sort{width:8rem}',
|
'.notes-sort{width:8rem;appearance:none;background-color:#0d0d1a;background-image:linear-gradient(45deg,transparent 50%,#8b8ba8 50%),linear-gradient(135deg,#8b8ba8 50%,transparent 50%);background-position:calc(100% - 14px) 50%,calc(100% - 9px) 50%;background-size:5px 5px,5px 5px;background-repeat:no-repeat;padding-right:1.6rem}',
|
||||||
'.notes-filter:focus,.notes-sort:focus{border-color:#4ecca3}',
|
'.notes-filter:focus,.notes-sort:focus{border-color:#4ecca3}',
|
||||||
'.notes-list{flex:1;overflow:auto;min-height:0}',
|
'.notes-list{flex:1;overflow:auto;min-height:0}',
|
||||||
'.notes-item{display:flex;align-items:center;gap:.5rem;padding:.45rem .75rem;border-bottom:1px solid rgba(22,33,62,.55);cursor:pointer;font-size:.85rem}',
|
'.notes-item{display:flex;align-items:center;gap:.5rem;padding:.45rem .75rem;border-bottom:1px solid rgba(22,33,62,.55);cursor:pointer;font-size:.85rem}',
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,10 @@ const root = path.resolve(__dirname, '..');
|
||||||
const sourcePath = path.join(root, 'plugins', 'notes', 'frontend', 'src', 'index.js');
|
const sourcePath = path.join(root, 'plugins', 'notes', 'frontend', 'src', 'index.js');
|
||||||
const source = fs.readFileSync(sourcePath, 'utf8');
|
const source = fs.readFileSync(sourcePath, 'utf8');
|
||||||
|
|
||||||
|
if (!source.includes('.notes-sort{width:8rem;appearance:none;')) {
|
||||||
|
throw new Error('notes sort select must use the shared custom dropdown style');
|
||||||
|
}
|
||||||
|
|
||||||
class FakeNode {
|
class FakeNode {
|
||||||
constructor(tagName) {
|
constructor(tagName) {
|
||||||
this.tagName = String(tagName || '').toUpperCase();
|
this.tagName = String(tagName || '').toUpperCase();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue