diff options
Diffstat (limited to 'src/client/views/nodes/scrapbook/ScrapbookPicker.scss')
| -rw-r--r-- | src/client/views/nodes/scrapbook/ScrapbookPicker.scss | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/client/views/nodes/scrapbook/ScrapbookPicker.scss b/src/client/views/nodes/scrapbook/ScrapbookPicker.scss new file mode 100644 index 000000000..237274433 --- /dev/null +++ b/src/client/views/nodes/scrapbook/ScrapbookPicker.scss @@ -0,0 +1,40 @@ +/* ScrapbookPicker.scss */ + +.scrapbook-picker-popup { + background: rgba(255, 0, 0, 0.5); /* semi-transparent red */ + position: absolute; /* ← make it float */ + z-index: 10000; /* so it sits above the overlay‐window’s background */ + border: 1px solid #ccc; + border-radius: 4px; + box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); + padding: 8px; + min-width: 200px; /* at least give it some size */ +} + +.scrapbook-picker-close { + position: absolute; + top: 4px; + right: 8px; + cursor: pointer; + font-size: 14px; +} + +.scrapbook-picker-thumbnails { + margin-top: 24px; /* room under the close button */ + display: flex; + flex-wrap: wrap; + gap: 8px; +} + +.scrapbook-picker-thumb { + cursor: pointer; + border: 1px solid #ddd; + border-radius: 2px; + padding: 4px; + background: #f9f9f9; +} + +.scrapbook-picker-thumb-inner { + font-size: 12px; + text-align: center; +} |
