2018-04-12 01:23:35 +02:00
|
|
|
/*
|
2024-09-09 15:57:16 +02:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2018-04-12 01:23:35 +02:00
|
|
|
Copyright 2017 Michael Telatynski <7t3chguy@gmail.com>
|
|
|
|
|
2024-09-09 15:57:16 +02:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2018-04-12 01:23:35 +02:00
|
|
|
*/
|
|
|
|
|
2022-03-23 21:17:57 +01:00
|
|
|
.mx_DevtoolsDialog_wrapper {
|
|
|
|
.mx_Dialog {
|
2022-06-02 15:59:40 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-03-23 21:17:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Dialog_fixedWidth {
|
2022-06-02 15:59:40 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
min-height: 0;
|
|
|
|
max-height: 100%;
|
|
|
|
|
|
|
|
.mx_Dialog_buttons button {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2022-03-23 21:17:57 +01:00
|
|
|
}
|
2018-05-23 18:18:33 +02:00
|
|
|
}
|
|
|
|
|
2022-03-23 21:17:57 +01:00
|
|
|
.mx_DevTools_content {
|
|
|
|
overflow-y: auto;
|
2019-03-19 00:21:21 +01:00
|
|
|
}
|
|
|
|
|
2019-06-14 00:48:47 +02:00
|
|
|
.mx_DevTools_RoomStateExplorer_query {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2022-03-23 21:17:57 +01:00
|
|
|
.mx_DevTools_button {
|
|
|
|
font-family: monospace !important;
|
|
|
|
margin-bottom: 8px !important;
|
2022-02-15 00:37:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DevTools_RoomStateExplorer_button_hasSpaces {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2022-03-23 21:17:57 +01:00
|
|
|
.mx_DevTools_button.mx_DevTools_RoomStateExplorer_button_emptyString {
|
2022-02-15 00:37:45 +01:00
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
2018-04-12 01:23:35 +02:00
|
|
|
.mx_DevTools_label_left {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DevTools_label_right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DevTools_label_bottom {
|
|
|
|
clear: both;
|
|
|
|
border-bottom: 1px solid #e5e5e5;
|
|
|
|
}
|
|
|
|
|
2019-07-09 19:15:10 +02:00
|
|
|
.mx_DevTools_inputRow {
|
2018-04-12 01:23:35 +02:00
|
|
|
display: table-row;
|
|
|
|
}
|
|
|
|
|
2019-07-09 19:15:10 +02:00
|
|
|
.mx_DevTools_inputLabelCell {
|
2018-04-12 01:23:35 +02:00
|
|
|
display: table-cell;
|
|
|
|
font-weight: bold;
|
|
|
|
padding-right: 24px;
|
|
|
|
}
|
|
|
|
|
2018-05-23 18:18:33 +02:00
|
|
|
.mx_DevTools_textarea {
|
2020-03-31 16:26:23 +02:00
|
|
|
font-size: $font-12px;
|
2019-02-25 23:12:06 +01:00
|
|
|
max-width: 684px;
|
2018-05-23 18:18:33 +02:00
|
|
|
min-height: 250px;
|
2018-05-23 18:40:15 +02:00
|
|
|
padding: 10px;
|
2018-05-23 18:18:33 +02:00
|
|
|
}
|
|
|
|
|
2019-05-16 22:55:17 +02:00
|
|
|
.mx_DevTools_eventTypeStateKeyGroup {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DevTools_content .mx_Field_input:first-of-type {
|
|
|
|
margin-right: 42px;
|
2019-02-25 23:38:33 +01:00
|
|
|
}
|
|
|
|
|
2020-02-21 18:15:53 +01:00
|
|
|
.mx_DevTools_VerificationRequest {
|
|
|
|
border: 1px solid #cccccc;
|
|
|
|
border-radius: 3px;
|
|
|
|
padding: 1px 5px;
|
|
|
|
margin-bottom: 6px;
|
2020-02-24 11:17:33 +01:00
|
|
|
font-family: $monospace-font-family;
|
2020-02-21 18:15:53 +01:00
|
|
|
|
|
|
|
dl {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: max-content auto;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
dd {
|
|
|
|
grid-column-start: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
dd:empty {
|
|
|
|
color: #666666;
|
|
|
|
&::after {
|
|
|
|
content: "(empty)";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dt {
|
|
|
|
font-weight: bold;
|
|
|
|
grid-column-start: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
dt::after {
|
|
|
|
content: ":";
|
|
|
|
}
|
2020-02-24 11:17:33 +01:00
|
|
|
}
|
2021-02-18 22:56:19 +01:00
|
|
|
|
|
|
|
.mx_DevTools_SettingsExplorer {
|
|
|
|
table {
|
|
|
|
width: 100%;
|
|
|
|
table-layout: fixed;
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
|
|
|
th {
|
2022-07-27 15:39:29 +02:00
|
|
|
/* Colour choice: first one autocomplete gave me. */
|
2021-11-11 14:37:29 +01:00
|
|
|
border-bottom: 1px solid $accent;
|
2021-02-18 22:56:19 +01:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
td,
|
|
|
|
th {
|
2022-07-27 15:39:29 +02:00
|
|
|
width: 360px; /* "feels right" number */
|
2021-02-18 22:56:19 +01:00
|
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
td + td,
|
|
|
|
th + th {
|
2021-02-18 22:56:19 +01:00
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr:hover {
|
2022-07-27 15:39:29 +02:00
|
|
|
/* Colour choice: first one autocomplete gave me. */
|
2021-11-11 14:37:29 +01:00
|
|
|
background-color: $accent;
|
2021-02-18 22:56:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DevTools_SettingsExplorer_mutable {
|
2021-11-11 14:37:29 +01:00
|
|
|
background-color: $accent;
|
2021-02-18 22:56:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DevTools_SettingsExplorer_immutable {
|
2021-11-11 14:37:29 +01:00
|
|
|
background-color: $alert;
|
2021-02-18 22:56:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DevTools_SettingsExplorer_edit {
|
|
|
|
float: right;
|
|
|
|
margin-right: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DevTools_SettingsExplorer_warning {
|
2021-11-11 14:37:29 +01:00
|
|
|
border: 2px solid $alert;
|
2021-02-18 22:56:19 +01:00
|
|
|
border-radius: 4px;
|
|
|
|
padding: 4px;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
}
|
2022-01-07 10:40:53 +01:00
|
|
|
|
|
|
|
.mx_DevTools_SettingsExplorer_setting {
|
2022-07-27 15:39:29 +02:00
|
|
|
/* override default link button color */
|
|
|
|
/* as it is the same as the background highlight */
|
|
|
|
/* used on focus */
|
2022-01-07 10:40:53 +01:00
|
|
|
color: $links !important;
|
|
|
|
}
|