mirror of
https://github.com/ankitects/anki.git
synced 2025-11-06 12:47:11 -05:00
Added: Extra button width disappearing
This commit is contained in:
parent
e86c42c735
commit
9fe2c70e66
1 changed files with 12 additions and 2 deletions
|
|
@ -19,7 +19,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
|
|
||||||
<div id="outer" class="fancy">
|
<div id="outer" class="fancy">
|
||||||
<div id="tableinner">
|
<div id="tableinner">
|
||||||
<div>
|
<div class="edit">
|
||||||
<button
|
<button
|
||||||
title={tr.actionsShortcutKey({ val: "E" })}
|
title={tr.actionsShortcutKey({ val: "E" })}
|
||||||
on:click={() => bridgeCommand("edit")}
|
on:click={() => bridgeCommand("edit")}
|
||||||
|
|
@ -49,7 +49,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
</button>
|
</button>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div class="more">
|
||||||
<button
|
<button
|
||||||
on:click={() => bridgeCommand("more")}
|
on:click={() => bridgeCommand("more")}
|
||||||
title={tr.actionsShortcutKey({ val: "M" })}
|
title={tr.actionsShortcutKey({ val: "M" })}
|
||||||
|
|
@ -79,4 +79,14 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
.remaining-count {
|
.remaining-count {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 583px) {
|
||||||
|
.edit, .more {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tableinner {
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue