diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-04-09 20:25:56 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-04-09 20:25:56 +0200 |
commit | 454dca9ac1aaabd32513eb8f863930650c3d4332 (patch) | |
tree | 43ef933cf05a3e0b676a46ff43f316998cc7d844 | |
parent | 98be0595e88ba57e90793729a24e39b865a0695e (diff) | |
download | Ishtar-454dca9ac1aaabd32513eb8f863930650c3d4332.tar.bz2 Ishtar-454dca9ac1aaabd32513eb8f863930650c3d4332.zip |
CSS: update input width
-rw-r--r-- | ishtar_common/static/media/style.css | 12 | ||||
-rw-r--r-- | version.py | 2 |
2 files changed, 12 insertions, 2 deletions
diff --git a/ishtar_common/static/media/style.css b/ishtar_common/static/media/style.css index 178f02362..056046e95 100644 --- a/ishtar_common/static/media/style.css +++ b/ishtar_common/static/media/style.css @@ -213,14 +213,24 @@ select{ max-width:550px; } +.form select{ + width:370px; +} + /*label{display:block}*/ label:first-letter { text-transform: uppercase; } + +.form input[type="text"]{ + width: 370px; +} + textarea{ - height:80px; + height: 80px; + width: 370px; } textarea.xlarge{ diff --git a/version.py b/version.py index d0ef38afd..d45fb6cf3 100644 --- a/version.py +++ b/version.py @@ -1,4 +1,4 @@ -VERSION = (0, 99, 17) +VERSION = (0, 99, 17, 1) def get_version(): |