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);
|
z-index: calc(var(--base-layer) + 1);
|
||||||
|
|
||||||
|
border: solid 1px var(--gallery-secondary-color);
|
||||||
background: var(--gallery-background-color);
|
background: var(--gallery-background-color);
|
||||||
}
|
}
|
||||||
/* XXX need to hide parts of the toolbar and make it transparent... */
|
/* XXX need to hide parts of the toolbar and make it transparent... */
|
||||||
@ -243,9 +244,20 @@ body {
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* XXX */
|
/* buttons... */
|
||||||
.gallery .toolbar button {
|
.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">
|
<div class="gallery">
|
||||||
<!-- toolbar -->
|
<!-- toolbar -->
|
||||||
<div class="toolbar">
|
<div class="toolbar">
|
||||||
<button onclick="gallery.toggleMark()" title="toggle mark current (space)">M</button>
|
<button onclick="gallery.toggleMark()" title="toggle mark current (space)">◐</button>
|
||||||
<button onclick="gallery.markAll()" title="mark all (ctrl-a)">+M*</button>
|
<button onclick="gallery.markAll()" title="mark all (ctrl-a)">⏺*</button>
|
||||||
<button onclick="gallery.unmarkAll()" title="unmark all (ctrl-d)">-M*</button>
|
<button onclick="gallery.unmarkAll()" title="unmark all (ctrl-d)">⭘*</button>
|
||||||
<button onclick="gallery.markInverse()" title="reverse mark (ctrl-i)">!M</button>
|
<button onclick="gallery.markInverse()" title="reverse mark (ctrl-i)">◐*</button>
|
||||||
<button onclick="gallery.remove('marked')" title="remove marked">-M</button>
|
<button onclick="gallery.remove('marked')" title="remove marked">⦻</button>
|
||||||
|
|
|
|
||||||
<button onclick="gallery.toggleQueueRemoval()" title="toggle removal (del)">D</button>
|
<button onclick="gallery.toggleQueueRemoval()" title="queue removal (del)">◧</button>
|
||||||
<button onclick="gallery.queueRemoval('marked')" title="queue marked removal">+DM</button>
|
<button onclick="gallery.queueRemoval('marked')" title="queue marked removal">◼⏺</button>
|
||||||
<button onclick="gallery.unqueueRemoval('marked')" title="unqueue marked removal">-DM</button>
|
<button onclick="gallery.unqueueRemoval('marked')" title="unqueue marked removal">◻⏺</button>
|
||||||
<button onclick="gallery.toggleQueueRemoval('marked')" title="toggle marked removal">!DM</button>
|
<button onclick="gallery.toggleQueueRemoval('marked')" title="toggle marked removal">◧⏺</button>
|
||||||
<button onclick="gallery.removeQueued()" title="remove queued (shift-del)">Remove</button>
|
<button onclick="gallery.removeQueued()" title="remove queued (shift-del)">☒</button>
|
||||||
|
|
|
|
||||||
<button onclick="gallery.clear()" title="clear">Clear</button>
|
<button onclick="gallery.clear()" title="clear">Clear</button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user