diff options
author | Andrea Lepori <alepori@student.ethz.ch> | 2020-08-31 17:35:31 +0200 |
---|---|---|
committer | Andrea Lepori <alepori@student.ethz.ch> | 2020-08-31 17:35:31 +0200 |
commit | 093c9cac7d1683fbb4ffaf517b9787078b7ae8c2 (patch) | |
tree | ec449121b89f9629fff9b03898be65fe0f7779b4 /client | |
parent | variables for accent color (diff) | |
download | scout-subs-093c9cac7d1683fbb4ffaf517b9787078b7ae8c2.tar.gz scout-subs-093c9cac7d1683fbb4ffaf517b9787078b7ae8c2.zip |
change accent color, apply color to more component
Diffstat (limited to 'client')
-rw-r--r-- | client/templates/client/doc_create.html | 8 | ||||
-rw-r--r-- | client/templates/client/doc_edit.html | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/client/templates/client/doc_create.html b/client/templates/client/doc_create.html index d7c3edd..18940d8 100644 --- a/client/templates/client/doc_create.html +++ b/client/templates/client/doc_create.html @@ -26,10 +26,10 @@ <label>Documento</label> </div> </div> - <a class="btn waves-effect waves-light" onclick="window.history.back();" > + <a class="btn waves-effect waves-light {{color}}" onclick="window.history.back();" > <i class="material-icons left">navigate_before</i>Indietro </a> - <a class="btn waves-effect waves-light" onclick="send('details')" >Avanti + <a class="btn waves-effect waves-light {{color}}" onclick="send('details')" >Avanti <i class="material-icons right">navigate_next</i> </a> {% else %} @@ -94,10 +94,10 @@ <div class="row"> <div class="col s12"> <br> - <a class="btn waves-effect waves-light" onclick="window.history.back();" > + <a class="btn waves-effect waves-light {{color}}" onclick="window.history.back();" > <i class="material-icons left">navigate_before</i>Indietro </a> - <a class="btn waves-effect waves-light" onclick="send('save')" >Crea + <a class="btn waves-effect waves-light {{color}}" onclick="send('save')" >Crea <i class="material-icons right">create</i> </a> </div> diff --git a/client/templates/client/doc_edit.html b/client/templates/client/doc_edit.html index 87efee4..278f34c 100644 --- a/client/templates/client/doc_edit.html +++ b/client/templates/client/doc_edit.html @@ -74,10 +74,10 @@ <div class="row"> <div class="col s12"> <br> - <a class="btn waves-effect waves-light" onclick="window.history.back();" > + <a class="btn waves-effect waves-light {{color}}" onclick="window.history.back();" > <i class="material-icons left">navigate_before</i>Indietro </a> - <a class="btn waves-effect waves-light" onclick="send('save')" >Salva + <a class="btn waves-effect waves-light {{color}}" onclick="send('save')" >Salva <i class="material-icons right">save</i> </a> </div> |