diff options
author | Alex Yatskov <FooSoft@users.noreply.github.com> | 2019-05-19 17:43:31 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-19 17:43:31 -0700 |
commit | 84b990cd804185c24629de0ce9694aa3dbc03c29 (patch) | |
tree | 6915bb4df3a7b1838c1f06aee8c0e94931edfd4c /ext/bg/settings.html | |
parent | 61d1168d94a7467be6e98afc375d7583c0f23cb5 (diff) | |
parent | 99a231a7738c712090a3ca3a088e3a1b22af5fea (diff) |
Merge pull request #140 from KarboniteKream/horizontal-offset
Add horizontal popup offset
Diffstat (limited to 'ext/bg/settings.html')
-rw-r--r-- | ext/bg/settings.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ext/bg/settings.html b/ext/bg/settings.html index d41d442b..1b4e5c84 100644 --- a/ext/bg/settings.html +++ b/ext/bg/settings.html @@ -117,8 +117,11 @@ </div> <div class="form-group options-advanced"> - <label for="popup-offset">Popup offset (in pixels)</label> - <input type="number" min="0" id="popup-offset" class="form-control"> + <label>Popup offset (horizontal, vertical; in pixels)</label> + <div class="row"> + <div class="col-xs-6"><input type="number" min="0" id="popup-horizontal-offset" class="form-control"></div> + <div class="col-xs-6"><input type="number" min="0" id="popup-vertical-offset" class="form-control"></div> + </div> </div> </div> |