diff options
-rw-r--r-- | Swift/resources/themes/Default/main.css | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Swift/resources/themes/Default/main.css b/Swift/resources/themes/Default/main.css index bd69596..2fe7374 100644 --- a/Swift/resources/themes/Default/main.css +++ b/Swift/resources/themes/Default/main.css @@ -86,84 +86,88 @@ body { min-width: 4.6em; background-color: #595959; } div.time { color: #ffffff; font-size: 80%; font-weight: 300; float: right; background-color: #595959; border-top-left-radius: 3ex 3ex; border-bottom-left-radius: 3ex 3ex; /* min-width: 50px; */ text-align: right; padding-left: 0.5em; padding-right: 0.5em; padding-top: 0.05ex; padding-bottom: 0.05ex; margin-left: 0.5em; } .myavatar { height: 2.5em; width: 2.5em; display: inline-block; margin: 0 auto; background-color: #92c47e; border-top-left-radius: 50%; border-bottom-left-radius: 50%; + position: relative; + left: 1px; } .otheravatar { height: 2.5em; width: 2.5em; display: inline-block; margin: 0 auto; background-color: #6eb6ce; border-top-left-radius: 50%; border-bottom-left-radius: 50%; + position: relative; + left: 1px; } .myavatar img { border-radius: 50%; height: 2.5em; position: relative; - left: -1px; + left: -2px; } .otheravatar img { border-radius: 50%; height: 2.5em; position: relative; - left: -1px; + left: -2px; } .myright { float: right; width: 1.05em; /* myuser width/2 - ( other avatar width/2) = 1.05em*/ height: 2.5em; background: #92c47e; } .otherright { float: right; width: 1.05em; /* myuser width/2 - ( other avatar width/2) = 1.05em*/ height: 2.5em; background: #6eb6ce; } :not(.additional) > div > .systemavatar { height: 2.5em; } .systemavatar { width: 2.5em; display: inline-block; margin: 0 auto; background-color: #595959; border-top-left-radius: 50%; border-bottom-left-radius: 50%; } :not(.additional) > div > .systemright { |