mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-12 01:16:19 +00:00
Hide icon in anon warning below tablet width
Bug: T307709 Change-Id: I800153cabc1ba14fd249c106d57162fd0cd9dbe1
This commit is contained in:
parent
77ce5171fb
commit
32e306f6e1
|
@ -274,6 +274,13 @@
|
|||
transform: scale( 1.5 );
|
||||
transform-origin: 0 center;
|
||||
left: 1em;
|
||||
|
||||
// Hide warning icon below tablet width
|
||||
@media all and ( max-width: @width-breakpoint-tablet ) {
|
||||
& {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -281,6 +288,13 @@
|
|||
flex-grow: 1;
|
||||
flex-basis: 20em;
|
||||
margin-left: 3em;
|
||||
|
||||
// Hide warning icon below tablet width
|
||||
@media all and ( max-width: @width-breakpoint-tablet ) {
|
||||
& {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ext-discussiontools-ui-replyWidget-actions {
|
||||
|
|
Loading…
Reference in a new issue