diff options
author | Kevin Chabowski <kevin@kch42.de> | 2014-05-31 17:19:52 +0200 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2014-05-31 17:19:52 +0200 |
commit | e9fa4b6c8a552bfe715f048f189e813d7026b442 (patch) | |
tree | 7cd06d9ea5b03453ed6cf707353f754c85cc6195 /static | |
parent | 811e377f45042a616af272e3b86201b6e5fb1734 (diff) | |
download | simplechat-e9fa4b6c8a552bfe715f048f189e813d7026b442.tar.gz simplechat-e9fa4b6c8a552bfe715f048f189e813d7026b442.tar.bz2 simplechat-e9fa4b6c8a552bfe715f048f189e813d7026b442.zip |
Input field of dialog now matches the overall look and feel better.
Diffstat (limited to 'static')
-rw-r--r-- | static/chat.css | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/static/chat.css b/static/chat.css index 3a834b9..e5a2949 100644 --- a/static/chat.css +++ b/static/chat.css @@ -58,8 +58,14 @@ h1, #chatlogwrap, #buddiescontainer { background: #eee; } #dialoginner input { - width: calc(100% - 2px); - border: 1px solid #aaa; + width: calc(100% - 4mm); + border: none; + background: #ddd; + padding: 2mm; + border-radius: 4mm; +} +#dialoginner input:hover, #dialoginner input:focus { + background: #eee; } #dialoginner h2 { |