-
-
Notifications
You must be signed in to change notification settings - Fork 829
Improve _IRCLayout.scss to remove space between the avatar and info text #8858
Conversation
res/css/views/rooms/_IRCLayout.scss
Outdated
min-width: $MessageTimestamp_width; | ||
} | ||
|
||
.mx_EventTile[data-layout=irc] { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
:not()
can increase the specificity of a rule, therefore including .mx_EventTile
by .mx_IRCLayout
seems to conflict with :not([data-layout=bubble])
and has not been quite enough without [data-layout=irc]
.
res/css/views/rooms/_IRCLayout.scss
Outdated
.mx_ReactionsRow { | ||
padding-left: 0; | ||
padding-right: 0; | ||
margin-inline: 0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This works but it is redundant- removing the inline margin declaration from _EventTile.scss
looks straightforward.
Addressed with #8891
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clearing code review while draft
(@luixxiul please avoid converting things to drafts after they've been opened - if further work is needed, it's better to close and reopen the PR)
Do you mind if I would ask the reason why converting to draft has to be avoided? |
it ends up skewing our PR review latency statistics, and confuses the team trying to review the PR. Opening a PR as a draft is fine, though once marked "ready for review" the assumption is that it's ready for review - it should not be converted back to draft as we cannot clear the code review request without manual intervention. |
I understood. Is it not possible for admins to disable converting back something to draft? Otherwise a PR template should mention that at least, IMHO. Not everyone knows how PR review is conducted. |
we're working on PR review guidance, and are fixing our contributing guidelines, though both are a bit slow (sorry). |
…le]) Signed-off-by: Suguru Hirahara <[email protected]>
Signed-off-by: Suguru Hirahara <[email protected]>
…moving a default declaration Signed-off-by: Suguru Hirahara <[email protected]>
Signed-off-by: Suguru Hirahara <[email protected]>
Signed-off-by: Suguru Hirahara <[email protected]>
Signed-off-by: Suguru Hirahara <[email protected]>
Signed-off-by: Suguru Hirahara <[email protected]>
Signed-off-by: Suguru Hirahara <[email protected]>
Signed-off-by: Suguru Hirahara <[email protected]>
Signed-off-by: Suguru Hirahara <[email protected]>
Closing as stale |
This PR organizes style rules on
_IRCLayout.scss
to clarify the structure.type: task
Here's what your changelog entry will look like:
🐛 Bug Fixes