Float the toggle in the top right of MELS
This is so that it stays put when the MELS is toggled. Added style for a line that appears below "collapse" to indicate start of events. Not possible to put "collapse" next to the expanded events because of read receipts.
This commit is contained in:
parent
f2a6d2cc5a
commit
36b08fece7
|
@ -14,6 +14,10 @@ See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
.mx_MemberEventListSummary {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
.mx_TextualEvent.mx_MemberEventListSummary_summary {
|
.mx_TextualEvent.mx_MemberEventListSummary_summary {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
@ -31,6 +35,15 @@ limitations under the License.
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_MemberEventListSummary_toggle {
|
.mx_MemberEventListSummary_toggle {
|
||||||
color:$accent-color;
|
color: $accent-color;
|
||||||
cursor:pointer;
|
cursor: pointer;
|
||||||
|
float: right;
|
||||||
|
margin-right: 10px;
|
||||||
|
margin-top: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mx_MemberEventListSummary_line {
|
||||||
|
border-bottom: 1px solid $primary-hairline-color;
|
||||||
|
margin-left: 63px;
|
||||||
|
line-height: 30px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue