diff --git a/maloja/proccontrol/setup.py b/maloja/proccontrol/setup.py index 1d0fb72..93d1e43 100644 --- a/maloja/proccontrol/setup.py +++ b/maloja/proccontrol/setup.py @@ -37,13 +37,13 @@ def setup(): for k in apikeys: key = malojaconfig[k] if key is False: - print("\t" + "Currently not using a " + apikeys[k] + " for image display.") + print("\t" + "Currently not using a " + col['red'](apikeys[k]) + " for image display.") elif key is None or key == "ASK": print("\t" + "Please enter your " + col['gold'](apikeys[k]) + ". If you do not want to use one at this moment, simply leave this empty and press Enter.") key = prompt("",types=(str,),default=False,skip=SKIP) malojaconfig[k] = key else: - print("\t" + apikeys[k] + " found.") + print("\t" + col['green'](apikeys[k]) + " found.") # OWN API KEY diff --git a/maloja/web/static/css/grisons.css b/maloja/web/static/css/grisons.css index ea11e4d..625b877 100644 --- a/maloja/web/static/css/grisons.css +++ b/maloja/web/static/css/grisons.css @@ -138,6 +138,20 @@ a.hidelink:hover { +/** INPUTS **/ + +input[type="text"], input[type="number"] { + background-color: transparent; + border: 0px; + border-bottom: 1px solid var(--text-color); + color: white; +} + +input:focus { + outline: 0; + background-color: var(--base-color-accent-light); +} +