jenkins-bot has submitted this change and it was merged.

Change subject: Make the collapsible control inline-block
......................................................................


Make the collapsible control inline-block

Changed the CSS rule of the .thread-collapse-control a from display:block
to display:inline-block.

display:block was needed to be able to specify a width and height, but
this causes that, when the thread is collapsed, the text "Show X more
replies" appears below the collapsible control. Changing it to be
inline-block has the same benefits of a block element, but also the text
following it (Show X more replies) will be placed next to it instead of
below, being more intuitive to have it next to the collapse control.

Change-Id: Idd48958feedb8a93f21227f263a5466d7463891e
---
M jquery/jquery.thread_collapse.css
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  Siebrand: Looks good to me, approved
  Nischayn22: Looks good to me, but someone else must approve
  jenkins-bot: Verified



diff --git a/jquery/jquery.thread_collapse.css 
b/jquery/jquery.thread_collapse.css
index 08d84cc..8647db5 100644
--- a/jquery/jquery.thread_collapse.css
+++ b/jquery/jquery.thread_collapse.css
@@ -1,5 +1,5 @@
 .thread-collapse-control a {
-       display: block;
+       display: inline-block;
        outline: none;
        width: 17px;
        height: 17px;

-- 
To view, visit https://gerrit.wikimedia.org/r/37237
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Idd48958feedb8a93f21227f263a5466d7463891e
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/LiquidThreads
Gerrit-Branch: master
Gerrit-Owner: Martineznovo <[email protected]>
Gerrit-Reviewer: Martineznovo <[email protected]>
Gerrit-Reviewer: Nischayn22 <[email protected]>
Gerrit-Reviewer: Siebrand <[email protected]>
Gerrit-Reviewer: jenkins-bot

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to