basic button/action iconography...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
parent
d7fc670604
commit
693a75b8bc
@ -235,6 +235,7 @@ body {
|
||||
|
||||
z-index: calc(var(--base-layer) + 1);
|
||||
|
||||
border: solid 1px var(--gallery-secondary-color);
|
||||
background: var(--gallery-background-color);
|
||||
}
|
||||
/* XXX need to hide parts of the toolbar and make it transparent... */
|
||||
@ -243,9 +244,20 @@ body {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* XXX */
|
||||
/* buttons... */
|
||||
.gallery .toolbar button {
|
||||
line-height: 1.5rem;
|
||||
min-width; 1.5rem;
|
||||
text-align: center;
|
||||
|
||||
border: solid 1px transparent;
|
||||
background: var(--gallery-background-color);
|
||||
}
|
||||
.gallery .toolbar button:hover {
|
||||
border-radius: calc(1.5rem / 5);
|
||||
border: solid 1px var(--gallery-secondary-color);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -142,17 +142,17 @@ For more info see: <a href="./README.md">README.md</a>
|
||||
<div class="gallery">
|
||||
<!-- toolbar -->
|
||||
<div class="toolbar">
|
||||
<button onclick="gallery.toggleMark()" title="toggle mark current (space)">M</button>
|
||||
<button onclick="gallery.markAll()" title="mark all (ctrl-a)">+M*</button>
|
||||
<button onclick="gallery.unmarkAll()" title="unmark all (ctrl-d)">-M*</button>
|
||||
<button onclick="gallery.markInverse()" title="reverse mark (ctrl-i)">!M</button>
|
||||
<button onclick="gallery.remove('marked')" title="remove marked">-M</button>
|
||||
<button onclick="gallery.toggleMark()" title="toggle mark current (space)">◐</button>
|
||||
<button onclick="gallery.markAll()" title="mark all (ctrl-a)">⏺*</button>
|
||||
<button onclick="gallery.unmarkAll()" title="unmark all (ctrl-d)">⭘*</button>
|
||||
<button onclick="gallery.markInverse()" title="reverse mark (ctrl-i)">◐*</button>
|
||||
<button onclick="gallery.remove('marked')" title="remove marked">⦻</button>
|
||||
|
|
||||
<button onclick="gallery.toggleQueueRemoval()" title="toggle removal (del)">D</button>
|
||||
<button onclick="gallery.queueRemoval('marked')" title="queue marked removal">+DM</button>
|
||||
<button onclick="gallery.unqueueRemoval('marked')" title="unqueue marked removal">-DM</button>
|
||||
<button onclick="gallery.toggleQueueRemoval('marked')" title="toggle marked removal">!DM</button>
|
||||
<button onclick="gallery.removeQueued()" title="remove queued (shift-del)">Remove</button>
|
||||
<button onclick="gallery.toggleQueueRemoval()" title="queue removal (del)">◧</button>
|
||||
<button onclick="gallery.queueRemoval('marked')" title="queue marked removal">◼⏺</button>
|
||||
<button onclick="gallery.unqueueRemoval('marked')" title="unqueue marked removal">◻⏺</button>
|
||||
<button onclick="gallery.toggleQueueRemoval('marked')" title="toggle marked removal">◧⏺</button>
|
||||
<button onclick="gallery.removeQueued()" title="remove queued (shift-del)">☒</button>
|
||||
|
|
||||
<button onclick="gallery.clear()" title="clear">Clear</button>
|
||||
</div>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user