FIX: Remove extra margin from share topic modal (#13549)
The styling between the "Create Invite" and "Share Topic" modals is shared. The margin that was used to organize inputs in a list is not needed for the "Share Topic" modal.
This commit is contained in:
parent
3dda926cb2
commit
d015907668
|
@ -856,8 +856,7 @@
|
|||
.group-chooser,
|
||||
.user-chooser,
|
||||
.future-date-input-selector {
|
||||
margin-left: 25px;
|
||||
width: calc(100% - 25px);
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
&.invite-to-topic input[type="radio"] {
|
||||
|
@ -956,6 +955,19 @@
|
|||
}
|
||||
}
|
||||
|
||||
.create-invite-modal {
|
||||
.input-group {
|
||||
textarea#invite-message,
|
||||
&.invite-to-topic input[type="text"],
|
||||
.group-chooser,
|
||||
.user-chooser,
|
||||
.future-date-input-selector {
|
||||
margin-left: 25px;
|
||||
width: calc(100% - 25px);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.share-topic-modal {
|
||||
.sources {
|
||||
align-items: center;
|
||||
|
|
Loading…
Reference in New Issue