summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThanos Doukoudakis <thanos.doukoudakis@isode.com>2017-03-20 13:31:41 (GMT)
committerTobias Markmann <tm@ayena.de>2017-04-18 12:11:00 (GMT)
commit476e2b32106449dc52a0b237caeb0492fe6c9c32 (patch)
tree46ec06edcdb4b9c92851ec7b34abc7dad58a06c1
parent4656f05cc6e0db2bddb3ec1409c530f1d334e949 (diff)
downloadswift-476e2b32106449dc52a0b237caeb0492fe6c9c32.zip
swift-476e2b32106449dc52a0b237caeb0492fe6c9c32.tar.bz2
Fix for grey gap in the blue/green CSS blobs in chats
The grey gap was being created due to the relative sizes of the css elements myavatar, myright, otheravatar, otherright. Depending on the font size, and due to round ups, the elements ended with a gap between them, resolving to the grey line. The fix moves one of the elements slighly and works with newer versions of Qt. Test-Information: Tested with with windows (qt5.4.2), Windows (qt5.7), Linux (qt5.5) Change-Id: Ib4fb7fc8a5ef8bed1868a0d65707ca034309cf04
-rw-r--r--Swift/resources/themes/Default/main.css8
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
@@ -113,6 +113,8 @@ div.time {
background-color: #92c47e;
border-top-left-radius: 50%;
border-bottom-left-radius: 50%;
+ position: relative;
+ left: 1px;
}
.otheravatar {
@@ -123,20 +125,22 @@ div.time {
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 {