diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-12-19 20:07:55 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-19 20:07:55 -0500 |
commit | 443d6d1956691861a5e0203e33726b8c2aa93eef (patch) | |
tree | c302124766dde3f87454682508331b4647c71e8f /ext/fg | |
parent | 8454431cdbc026e56c4879c5fc0133647a6f75ca (diff) |
Popup action bar options (#1140)
* Add options for action bar visibility and location
* Add settings
* Update styles
* Expose properties
* Update styles
* Update tests
Diffstat (limited to 'ext/fg')
-rw-r--r-- | ext/fg/float.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/fg/float.html b/ext/fg/float.html index 41e73a7e..4dc0696e 100644 --- a/ext/fg/float.html +++ b/ext/fg/float.html @@ -56,8 +56,10 @@ </div> <div class="content-sidebar scrollbar" id="content-sidebar" hidden> <div class="content-sidebar-inner"> - <div class="content-sidebar-top"> + <div class="content-sidebar-top-pre"> <button class="sidebar-button danger" id="close-button" title="Close popup"><span class="sidebar-button-icon" data-icon="cross"></span></button> + </div> + <div class="content-sidebar-top"> <button class="sidebar-button" disabled id="navigate-previous-button" title="Previous definition (Alt + B)"><span class="sidebar-button-icon" data-icon="left-chevron"></span></button> <button class="sidebar-button" disabled id="navigate-next-button" title="Next definition (Alt + F)"><span class="sidebar-button-icon" data-icon="right-chevron"></span></button> </div> |