diff options
author | Tobias Markmann <tm@ayena.de> | 2016-05-23 16:00:36 (GMT) |
---|---|---|
committer | Kevin Smith <kevin.smith@isode.com> | 2016-05-27 15:02:17 (GMT) |
commit | 2b54d28e975cb5fe36850b633f948952b58ef628 (patch) | |
tree | 01114014306e0ec5c38db3b1c0a602615f49fb17 /Swift | |
parent | 4e1089eb6efc0488fd020f95cabad63db67c228c (diff) | |
download | swift-2b54d28e975cb5fe36850b633f948952b58ef628.zip swift-2b54d28e975cb5fe36850b633f948952b58ef628.tar.bz2 |
Move avatars slightly to left in chat view to overlay swatch
Without this adjustment the blue/green swatches are slightly
visible left of the circled avatars.
Test-Information:
Tested with Qt 5.4.2 on OS X 10.11.5 in MUCs and 1-to-1 chats.
Change-Id: Id86d9228a0eeacfe9a7d86831537795ce4d5d461
Diffstat (limited to 'Swift')
-rw-r--r-- | Swift/resources/themes/Default/main.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Swift/resources/themes/Default/main.css b/Swift/resources/themes/Default/main.css index 5db69d7..529f6f5 100644 --- a/Swift/resources/themes/Default/main.css +++ b/Swift/resources/themes/Default/main.css @@ -148,12 +148,15 @@ body { .myavatar img { border-radius: 50%; height: 32px; + position: relative; + left: -1px; } .otheravatar img { border-radius: 50%; height: 32px; - margin-left: -1px; + position: relative; + left: -1px; } .myright { |