diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2016-06-27 03:57:30 +0800 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2016-06-27 17:15:41 +0800 |
commit | 6ec34291a8db6be51368dfd863695943a6c0b58f (patch) | |
tree | a6c38dd95c020c5d3289518439cf63fc23fa967d /static/mywatch.css | |
parent | a1617ebaeb256b3d359cc9fe389b8001235100c2 (diff) | |
download | mywatch-6ec34291a8db6be51368dfd863695943a6c0b58f.tar.gz |
Fixed alignment in tables cells
Diffstat (limited to 'static/mywatch.css')
-rw-r--r-- | static/mywatch.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/static/mywatch.css b/static/mywatch.css index aa0a761..5eb1df8 100644 --- a/static/mywatch.css +++ b/static/mywatch.css @@ -1,7 +1,8 @@ #serverList li { display: inline-block; } +table td { text-align:center; } table td.btn { opacity:0; max-width:1em; } table th { text-align: center; } table tr:hover td.btn { opacity:1; } table#processList td { white-space: nowrap; } table#processList td.mywatch-number { text-align: right; } -table#processList td.mywatch-query { white-space: pre-wrap; } +table#processList td.mywatch-query { text-align: left; white-space: pre-wrap; } |