From 7abfeacf59fb91c8e631b1273c6c200cbe5194ae Mon Sep 17 00:00:00 2001 From: Aleks Date: Wed, 6 Jan 2016 18:20:25 +0000 Subject: [PATCH 1/2] Fix messages window scroll jumping up when hovering the dragbar --- package/bin/style.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/package/bin/style.css b/package/bin/style.css index d04e0897..6548e6ad 100644 --- a/package/bin/style.css +++ b/package/bin/style.css @@ -102,13 +102,18 @@ ul { .dragbar:hover { width: 6px; - transition: width .1s; + margin-right: -5px; + transition: width .1s, margin .1s; + position: relative; + z-index: 998; } .dragbar { height: 100%; width: 1px; cursor: col-resize; + background-color: #ECECEC; + border-right: 1px solid rgba(0, 0, 0, .15); } #ghostbar{ From 441433f6170adcc22f555a9cd30897d79451be29 Mon Sep 17 00:00:00 2001 From: Aleks Date: Fri, 8 Jan 2016 11:03:55 +0000 Subject: [PATCH 2/2] Yet another attempt to fix message logi suddenly jumping several lines up. --- package/bin/style.css | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/package/bin/style.css b/package/bin/style.css index 6548e6ad..8b927d42 100644 --- a/package/bin/style.css +++ b/package/bin/style.css @@ -145,10 +145,6 @@ ul { position: relative; } -#rooms-and-nicks:hover .room.server .content-item { - width: 130px; -} - #rooms-and-nicks .add-channel { position: absolute; right: 2px; @@ -246,13 +242,6 @@ ul { color: rgba(0, 0, 0, .5); } -#rooms-and-nicks .room.selected:not(.footer):not(.always-empty) .content-item { - width: 123px; -} -#rooms-and-nicks .room:hover:not(.footer):not(.always-empty) .content-item { - width: 123px; -} - #rooms-and-nicks .room.selected:not(.footer):not(.always-empty) .remove-button { display: inline-block; }