2020-07-30 10:36:04 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2020-07-30 10:36:04 +08:00
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2020-07-30 10:36:04 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_ServerOfflineDialog {
|
|
|
|
.mx_ServerOfflineDialog_content {
|
|
|
|
padding-right: 85px;
|
2021-08-12 17:27:12 +08:00
|
|
|
color: $primary-content;
|
2020-07-30 10:36:04 +08:00
|
|
|
|
|
|
|
hr {
|
2021-08-12 17:27:12 +08:00
|
|
|
border-color: $primary-content;
|
2020-07-30 10:36:04 +08:00
|
|
|
opacity: 0.1;
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
padding: 16px;
|
|
|
|
|
|
|
|
li:nth-child(n + 2) {
|
|
|
|
margin-top: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_ServerOfflineDialog_content_context {
|
|
|
|
.mx_ServerOfflineDialog_content_context_timestamp {
|
|
|
|
display: inline-block;
|
|
|
|
width: 115px;
|
|
|
|
color: $muted-fg-color;
|
2022-07-27 21:39:29 +08:00
|
|
|
line-height: 24px; /* same as avatar */
|
2020-07-30 10:36:04 +08:00
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_ServerOfflineDialog_content_context_timeline {
|
|
|
|
display: inline-block;
|
2022-07-27 21:39:29 +08:00
|
|
|
width: calc(100% - 155px); /* 115px timestamp width + 40px right margin */
|
2020-07-30 10:36:04 +08:00
|
|
|
|
|
|
|
.mx_ServerOfflineDialog_content_context_timeline_header {
|
|
|
|
span {
|
|
|
|
margin-left: 8px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_ServerOfflineDialog_content_context_txn {
|
|
|
|
position: relative;
|
|
|
|
margin-top: 8px;
|
|
|
|
|
|
|
|
.mx_ServerOfflineDialog_content_context_txn_desc {
|
2022-07-27 21:39:29 +08:00
|
|
|
width: calc(100% - 100px); /* 100px is an arbitrary margin for the button */
|
2020-07-30 10:36:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AccessibleButton {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|