diff options
author | Jose M. Guisado <jguisado@soleta.eu> | 2021-02-16 13:21:24 +0000 |
---|---|---|
committer | Jose M. Guisado <jguisado@soleta.eu> | 2021-02-16 13:21:24 +0000 |
commit | 55d923431d45e1388227d45ecd11c01ab8a7a824 (patch) | |
tree | 890f15d5523454e944d2fe22b6361ac7c3cbaa15 /ogcp/templates/scopes.html | |
parent | 199854f1e90335ea37987a58efcde2ee6a3dd38a (diff) |
Add some minor cosmetic changes
This commit may serve for future reference as to how some cosmetic
changes have been applied to the web.
Primarily using bootstrap classes in order to adjust margin or padding,
there are mechanisms that allow modifying the class of an
underlying html element in WTForms. Bootstrap classes are written
directly in html templates for Flask.
Also add a Soleta branded footer.
Diffstat (limited to 'ogcp/templates/scopes.html')
-rw-r--r-- | ogcp/templates/scopes.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ogcp/templates/scopes.html b/ogcp/templates/scopes.html index d810b2a..8eba78c 100644 --- a/ogcp/templates/scopes.html +++ b/ogcp/templates/scopes.html @@ -2,7 +2,7 @@ {% macro print_scopes_tree(scopes) -%} - <ul class="list-group"> + <ul class="list-group list-group-flush mx-5"> {% for scope in scopes %} <li class="list-group-item"> <input class="form-check-input" type="checkbox" @@ -25,7 +25,7 @@ <input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/> {{ print_scopes_tree(scopes["scope"]) }} - <div class="dropdown"> + <div class="dropdown mt-2"> <button class="btn btn-primary dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> |