2022-04-26 03:14:18 +02:00
|
|
|
/* The height of the settings header (including tab switcher). */
|
|
|
|
$settings_header_height: 45px;
|
|
|
|
/* The width of the settings sidebar. */
|
|
|
|
$settings_sidebar_width: 250px;
|
|
|
|
|
2016-09-14 02:20:13 +02:00
|
|
|
label {
|
|
|
|
margin: 0;
|
2020-05-08 04:43:21 +02:00
|
|
|
}
|
|
|
|
|
2019-09-05 20:41:42 +02:00
|
|
|
label,
|
2020-02-08 03:28:35 +01:00
|
|
|
h4,
|
2022-03-08 13:21:34 +01:00
|
|
|
h3,
|
|
|
|
/* We need settings-section-title here because some legacy settings
|
|
|
|
widgets use a <div> with this class for their heading. */
|
|
|
|
.settings-section-title {
|
2022-08-05 12:13:21 +02:00
|
|
|
.fa-info-circle {
|
|
|
|
top: 1px;
|
|
|
|
position: relative;
|
|
|
|
}
|
2019-09-05 20:41:42 +02:00
|
|
|
}
|
|
|
|
|
2022-03-08 13:21:34 +01:00
|
|
|
/* TODO: This should ideally be added to help_link_widget.hbs,
|
|
|
|
allowing us to deduplicate at least the opacity CSS with the
|
|
|
|
fa-question-circle-o logic above. */
|
|
|
|
.settings-info-icon {
|
|
|
|
padding-left: 3px;
|
2023-05-17 01:52:19 +02:00
|
|
|
opacity: 0.7;
|
2022-03-08 13:21:34 +01:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-01 05:35:40 +01:00
|
|
|
a.help_link_widget {
|
2023-12-01 02:07:51 +01:00
|
|
|
opacity: 0.7;
|
|
|
|
color: inherit;
|
|
|
|
margin-left: 3px;
|
|
|
|
|
|
|
|
.fa-question-circle-o {
|
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2023-12-01 05:35:40 +01:00
|
|
|
color: inherit;
|
2023-12-01 02:07:51 +01:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-08 13:21:34 +01:00
|
|
|
h3,
|
|
|
|
.settings-section-title {
|
2023-12-01 02:07:51 +01:00
|
|
|
.help_link_widget {
|
|
|
|
margin-left: 5px;
|
2022-03-08 13:21:34 +01:00
|
|
|
}
|
2019-09-05 20:41:42 +02:00
|
|
|
}
|
|
|
|
|
2019-06-16 15:51:37 +02:00
|
|
|
.new-style {
|
|
|
|
.block {
|
|
|
|
display: block;
|
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2019-06-16 15:51:37 +02:00
|
|
|
.center-block {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2019-06-16 15:51:37 +02:00
|
|
|
.center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2019-06-16 15:51:37 +02:00
|
|
|
.w-200 {
|
|
|
|
width: 200px;
|
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2019-06-16 15:51:37 +02:00
|
|
|
.grid {
|
2023-03-17 22:10:10 +01:00
|
|
|
& label {
|
2019-06-16 15:51:37 +02:00
|
|
|
min-width: 200px;
|
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2019-06-16 15:51:37 +02:00
|
|
|
.warning {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
width: 150px;
|
|
|
|
padding: 5px 10px;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2021-06-17 18:42:31 +02:00
|
|
|
#account-settings,
|
|
|
|
#profile-field-settings {
|
2019-06-16 15:51:37 +02:00
|
|
|
.grid {
|
2023-03-17 22:10:10 +01:00
|
|
|
& label {
|
2019-06-16 15:51:37 +02:00
|
|
|
min-width: 120px;
|
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2019-06-16 15:51:37 +02:00
|
|
|
.warning {
|
|
|
|
display: block;
|
|
|
|
width: calc(100% - 20px - 5px);
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2019-06-16 15:51:37 +02:00
|
|
|
.warning {
|
|
|
|
#pw_strength {
|
|
|
|
width: 140px;
|
|
|
|
height: 8px;
|
2021-11-05 03:33:16 +01:00
|
|
|
margin: 6px 0 0;
|
2019-06-16 15:51:37 +02:00
|
|
|
}
|
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2019-06-16 15:51:37 +02:00
|
|
|
.button {
|
2023-03-17 22:10:10 +01:00
|
|
|
& ul {
|
2019-06-16 15:51:37 +02:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
}
|
2016-12-02 21:42:11 +01:00
|
|
|
}
|
|
|
|
|
2022-02-13 15:37:49 +01:00
|
|
|
.profile-settings-form {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
flex-wrap: wrap-reverse;
|
|
|
|
}
|
|
|
|
|
2022-02-25 22:00:26 +01:00
|
|
|
.profile-main-panel {
|
|
|
|
margin-right: 20px;
|
|
|
|
}
|
2017-07-05 21:54:58 +02:00
|
|
|
|
2022-02-25 22:00:26 +01:00
|
|
|
.profile-side-panel {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
2023-07-27 09:26:04 +02:00
|
|
|
.admin_profile_fields_table {
|
2023-03-17 22:10:10 +01:00
|
|
|
& th.display,
|
2022-09-21 13:29:26 +02:00
|
|
|
td.display_in_profile_summary_cell {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-25 22:00:26 +01:00
|
|
|
.user-details-title {
|
|
|
|
display: inline-block;
|
|
|
|
min-width: 80px;
|
|
|
|
font-weight: 600;
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-avatar-section {
|
2020-05-08 05:04:29 +02:00
|
|
|
.inline-block {
|
2023-03-20 22:08:47 +01:00
|
|
|
box-shadow: 0 0 10px hsl(0deg 0% 0% / 10%);
|
2020-05-08 05:04:29 +02:00
|
|
|
}
|
2020-05-08 05:00:56 +02:00
|
|
|
}
|
|
|
|
|
2021-04-20 16:44:17 +02:00
|
|
|
#change_password_modal,
|
2021-06-17 18:42:31 +02:00
|
|
|
#change_email_modal {
|
2020-07-02 07:30:15 +02:00
|
|
|
max-width: 480px;
|
2019-07-19 06:22:33 +02:00
|
|
|
}
|
|
|
|
|
2021-07-20 15:51:31 +02:00
|
|
|
#change_email_modal {
|
2022-12-14 13:45:08 +01:00
|
|
|
#change_email_form {
|
2021-07-20 15:51:31 +02:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-25 18:50:46 +01:00
|
|
|
.disabled_setting_tooltip {
|
|
|
|
cursor: not-allowed;
|
2022-12-20 16:52:25 +01:00
|
|
|
}
|
|
|
|
|
2022-10-11 14:20:27 +02:00
|
|
|
#account-settings .deactivate_realm_button {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
|
2023-01-25 18:47:19 +01:00
|
|
|
#change_email_button,
|
2023-01-14 21:28:39 +01:00
|
|
|
#user_deactivate_account_button,
|
2023-01-20 17:49:58 +01:00
|
|
|
.deactivate_realm_button,
|
2023-02-13 20:48:33 +01:00
|
|
|
#api_key_button,
|
|
|
|
#user_email_address_visibility {
|
2022-12-20 16:52:25 +01:00
|
|
|
&:disabled {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-11 22:52:14 +02:00
|
|
|
.admin-realm-description {
|
|
|
|
height: 16em;
|
2018-03-13 01:56:44 +01:00
|
|
|
width: 100%;
|
|
|
|
max-width: 500px;
|
|
|
|
box-sizing: border-box;
|
2017-05-11 22:52:14 +02:00
|
|
|
}
|
|
|
|
|
2021-08-10 12:56:28 +02:00
|
|
|
.setting_notification_sound,
|
2021-08-09 13:26:49 +02:00
|
|
|
.play_notification_sound {
|
2020-06-11 05:35:33 +02:00
|
|
|
margin-right: 4px;
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& i {
|
2020-06-11 05:35:33 +02:00
|
|
|
font-size: 22px;
|
2023-08-29 21:23:43 +02:00
|
|
|
/* Visually center with chevron in select */
|
|
|
|
line-height: 26px;
|
2020-06-11 05:35:33 +02:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
2018-01-11 21:36:11 +01:00
|
|
|
}
|
|
|
|
|
2021-08-10 12:56:28 +02:00
|
|
|
.setting_notification_sound {
|
2021-04-28 01:43:28 +02:00
|
|
|
text-transform: capitalize;
|
|
|
|
}
|
|
|
|
|
2020-05-12 06:05:35 +02:00
|
|
|
.table {
|
2023-03-17 22:10:10 +01:00
|
|
|
& tbody {
|
2023-03-20 22:08:47 +01:00
|
|
|
border-bottom: 1px solid hsl(0deg 0% 87%);
|
2020-05-12 06:05:35 +02:00
|
|
|
}
|
2016-10-20 23:30:45 +02:00
|
|
|
}
|
|
|
|
|
2016-12-13 11:17:08 +01:00
|
|
|
.wrapped-table {
|
2018-04-26 16:30:11 +02:00
|
|
|
word-break: break-word;
|
2016-12-13 11:17:08 +01:00
|
|
|
word-wrap: break-word;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
white-space: normal;
|
|
|
|
}
|
|
|
|
|
2020-05-08 05:33:59 +02:00
|
|
|
#settings_content {
|
2023-03-17 22:10:10 +01:00
|
|
|
& table + .progressive-table-wrapper table tr.user_row td:first-of-type {
|
2020-05-08 05:33:59 +02:00
|
|
|
width: 20%;
|
|
|
|
}
|
2020-05-08 05:32:16 +02:00
|
|
|
}
|
|
|
|
|
2017-12-08 14:24:32 +01:00
|
|
|
#uploaded_files_table > tr > td:nth-of-type(1),
|
|
|
|
.upload-file-name {
|
2022-10-11 14:20:27 +02:00
|
|
|
width: 43%;
|
2018-02-05 02:51:53 +01:00
|
|
|
word-break: break-all;
|
2017-12-08 14:24:32 +01:00
|
|
|
}
|
|
|
|
|
2022-10-11 14:20:27 +02:00
|
|
|
.upload-mentioned-in,
|
|
|
|
.upload-date {
|
|
|
|
word-break: normal;
|
|
|
|
}
|
|
|
|
|
2021-03-13 18:15:14 +01:00
|
|
|
#linkifier-settings {
|
|
|
|
#linkifier_pattern,
|
2022-10-05 22:52:26 +02:00
|
|
|
#linkifier_template {
|
2018-12-19 18:15:06 +01:00
|
|
|
width: calc(100% - 10em - 6em);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-17 11:39:02 +02:00
|
|
|
#playground-settings {
|
|
|
|
#playground_pygments_language,
|
|
|
|
#playground_name,
|
2023-05-27 05:04:50 +02:00
|
|
|
#playground_url_template {
|
2021-04-17 11:39:02 +02:00
|
|
|
width: calc(100% - 10em - 6em);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-14 02:20:13 +02:00
|
|
|
td .button {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 2px 0;
|
2016-09-14 02:20:13 +02:00
|
|
|
box-shadow: none;
|
2016-06-26 17:21:39 +02:00
|
|
|
}
|
|
|
|
|
2022-05-30 14:15:41 +02:00
|
|
|
#language_selection_modal {
|
2023-03-17 22:10:10 +01:00
|
|
|
& table {
|
2022-05-30 14:15:41 +02:00
|
|
|
width: 90%;
|
|
|
|
margin-top: 20px;
|
|
|
|
border-collapse: separate;
|
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& td {
|
2022-05-30 14:15:41 +02:00
|
|
|
padding-top: 1px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-14 02:20:13 +02:00
|
|
|
.settings-section {
|
2016-12-03 01:12:52 +01:00
|
|
|
display: none;
|
2017-05-09 22:09:31 +02:00
|
|
|
width: calc(100% - 40px);
|
2016-09-14 02:20:13 +02:00
|
|
|
margin: 20px;
|
2019-08-16 10:24:32 +02:00
|
|
|
|
2019-08-16 11:59:15 +02:00
|
|
|
&.show {
|
|
|
|
display: block;
|
|
|
|
}
|
2019-08-16 10:24:32 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& form {
|
2019-08-16 11:59:15 +02:00
|
|
|
margin: 0;
|
|
|
|
}
|
2019-08-16 10:11:59 +02:00
|
|
|
|
2019-08-16 11:59:15 +02:00
|
|
|
.no-padding {
|
|
|
|
padding: 0;
|
|
|
|
}
|
2016-06-26 17:21:39 +02:00
|
|
|
|
2019-08-16 11:59:15 +02:00
|
|
|
.settings-section-title {
|
|
|
|
font-size: 1.4em;
|
2023-03-27 09:01:23 +02:00
|
|
|
font-weight: 400;
|
2021-11-05 03:33:16 +01:00
|
|
|
margin: 10px 0;
|
2019-08-16 10:03:27 +02:00
|
|
|
|
2019-08-16 11:59:15 +02:00
|
|
|
&.transparent {
|
|
|
|
background-color: transparent;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
}
|
2017-07-03 14:22:56 +02:00
|
|
|
|
2021-02-23 06:23:24 +01:00
|
|
|
.table-sticky-headers th {
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
2021-07-01 19:17:19 +02:00
|
|
|
z-index: 1;
|
2021-02-23 06:23:24 +01:00
|
|
|
}
|
|
|
|
|
2020-05-20 20:42:59 +02:00
|
|
|
#admin_page_users_loading_indicator,
|
|
|
|
#attachments_loading_indicator,
|
|
|
|
#admin_page_deactivated_users_loading_indicator,
|
|
|
|
#admin_page_bots_loading_indicator {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loading_indicator_text {
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: 400;
|
|
|
|
vertical-align: middle;
|
|
|
|
line-height: 20px;
|
|
|
|
display: inline-block;
|
|
|
|
float: none;
|
|
|
|
margin-top: 9px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loading_indicator_spinner {
|
|
|
|
width: 30%;
|
2023-03-04 12:42:56 +01:00
|
|
|
height: 20px;
|
2020-05-20 20:42:59 +02:00
|
|
|
margin-top: 7px;
|
|
|
|
vertical-align: middle;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline {
|
|
|
|
display: inline !important;
|
|
|
|
}
|
2021-05-10 05:29:06 +02:00
|
|
|
|
|
|
|
/* Messy implementation of buttons with text and a pencil icon in them
|
|
|
|
having spacing before the pencil icon. */
|
2023-03-17 22:10:10 +01:00
|
|
|
& button.btn-link i.fa-pencil,
|
2024-02-02 12:26:41 +01:00
|
|
|
button[data-dismiss="modal"] i.fa-pencil {
|
2021-05-10 05:29:06 +02:00
|
|
|
margin-left: 3px;
|
|
|
|
}
|
2021-11-06 14:33:09 +01:00
|
|
|
|
|
|
|
.hidden-email {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
2021-12-02 19:18:32 +01:00
|
|
|
|
|
|
|
/* Originally the icon inherits the color of label, but when the setting
|
|
|
|
is disabled, the color of the label is changed and thus the icon becomes
|
|
|
|
too light. So, we set the color explicitly to original color of label to
|
|
|
|
keep the color of the icon same even when the setting is disabled. */
|
|
|
|
#id_realm_enable_spectator_access_label a {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 20%);
|
2021-12-02 19:18:32 +01:00
|
|
|
}
|
2022-12-25 11:25:38 +01:00
|
|
|
|
2024-02-02 12:11:22 +01:00
|
|
|
.settings_select {
|
2022-12-25 11:25:38 +01:00
|
|
|
height: 30px;
|
2023-02-27 12:21:23 +01:00
|
|
|
min-width: 325px;
|
|
|
|
max-width: 100%;
|
2023-02-16 11:28:32 +01:00
|
|
|
}
|
2023-03-05 07:32:08 +01:00
|
|
|
|
|
|
|
.account-settings-heading {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
2023-02-16 11:28:32 +01:00
|
|
|
}
|
2022-12-25 11:25:38 +01:00
|
|
|
|
2023-04-14 18:13:13 +02:00
|
|
|
/* list_select is similar to settings_select, but without the height styling. */
|
|
|
|
.settings_select,
|
|
|
|
.list_select {
|
2023-03-31 09:21:02 +02:00
|
|
|
padding: 0 6px;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 33%);
|
2023-02-16 11:28:32 +01:00
|
|
|
border-radius: 4px;
|
2023-03-20 22:08:47 +01:00
|
|
|
border: 1px solid hsl(0deg 0% 80%);
|
2023-02-16 11:28:32 +01:00
|
|
|
cursor: pointer;
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 100%);
|
2023-02-16 11:28:32 +01:00
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
cursor: not-allowed;
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 93%);
|
2022-12-25 11:25:38 +01:00
|
|
|
}
|
2019-07-21 02:31:24 +02:00
|
|
|
}
|
|
|
|
|
2023-11-06 10:45:30 +01:00
|
|
|
/* For consistent custom select dropdowns that match with dropdown-widget */
|
|
|
|
select.modal_select,
|
|
|
|
select.list_select,
|
|
|
|
select.settings_select {
|
|
|
|
appearance: none;
|
|
|
|
background-image: var(--icon-chevron-down);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 98%;
|
|
|
|
background-size: 14px;
|
|
|
|
}
|
|
|
|
|
2020-05-08 05:40:47 +02:00
|
|
|
#admin-user-list,
|
|
|
|
#admin-bot-list {
|
|
|
|
.table tr:first-of-type td {
|
|
|
|
border-top: none;
|
|
|
|
}
|
2019-08-16 10:11:59 +02:00
|
|
|
}
|
|
|
|
|
2022-10-13 16:50:40 +02:00
|
|
|
.user_role {
|
|
|
|
min-width: 95px;
|
|
|
|
}
|
|
|
|
|
2017-03-26 22:24:35 +02:00
|
|
|
.button,
|
|
|
|
.input-group {
|
2021-11-05 03:33:16 +01:00
|
|
|
margin: 0 0 20px;
|
2016-06-26 17:21:39 +02:00
|
|
|
}
|
|
|
|
|
2020-05-09 13:48:05 +02:00
|
|
|
.input-group {
|
2021-10-25 19:17:19 +02:00
|
|
|
/* Class to use when the following input-group is related and should
|
2022-12-25 11:25:38 +01:00
|
|
|
appear just after this element. Normally the margin is 20px, but
|
|
|
|
for related settings, we set it to 10px. */
|
2021-10-25 19:17:19 +02:00
|
|
|
&.thinner {
|
2022-12-25 11:25:38 +01:00
|
|
|
margin-bottom: 10px;
|
2020-05-09 13:48:05 +02:00
|
|
|
}
|
2016-06-26 17:21:39 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& label.checkbox + label {
|
2020-05-09 13:48:05 +02:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
2018-05-22 14:07:10 +02:00
|
|
|
}
|
|
|
|
|
2023-08-29 21:23:43 +02:00
|
|
|
/* Class for displaying an input with an
|
|
|
|
auxiliary control, e.g., the play button
|
|
|
|
next to the notification sound dropdown. */
|
|
|
|
.input-element-with-control {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
/* Preserve the effective space allotted
|
|
|
|
inside the input group.
|
|
|
|
|
|
|
|
Select element: 325px
|
|
|
|
Button element: ~29px
|
|
|
|
Right margin: 4px
|
|
|
|
TOTAL 358px */
|
|
|
|
max-width: 358px;
|
|
|
|
|
|
|
|
.settings_select {
|
|
|
|
/* Hold the settings select to its usual 325px;
|
|
|
|
a TODO would be to fix up the min- and max-
|
|
|
|
width values on the parent class, as the
|
|
|
|
min-width always applies, and max-width: 100%
|
|
|
|
has no meaning without an actual width:
|
|
|
|
declaration. */
|
|
|
|
max-width: 325px;
|
|
|
|
/* Disregard the min-width from the main
|
|
|
|
.settings_select selector. */
|
|
|
|
min-width: 0;
|
|
|
|
/* Allow the select to grow within the flex
|
|
|
|
container to keep the play button in the
|
|
|
|
viewport, and not force dodgy looking wrap
|
|
|
|
onto a second line. */
|
|
|
|
flex: 1 0 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-14 02:20:13 +02:00
|
|
|
.no-margin {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0;
|
2016-06-26 17:21:39 +02:00
|
|
|
}
|
|
|
|
|
2020-08-04 23:58:56 +02:00
|
|
|
input[type="checkbox"] {
|
2020-05-09 13:54:28 +02:00
|
|
|
+ .inline-block {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
2016-06-26 17:21:39 +02:00
|
|
|
|
2020-05-09 13:54:28 +02:00
|
|
|
.inline-block {
|
2021-11-05 03:33:16 +01:00
|
|
|
margin: -2px 0 0;
|
2020-05-09 13:54:28 +02:00
|
|
|
}
|
2020-05-09 13:53:29 +02:00
|
|
|
}
|
|
|
|
|
2017-12-02 18:44:39 +01:00
|
|
|
.allow-subdomains,
|
|
|
|
.new-realm-domain-allow-subdomains {
|
|
|
|
margin: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.realm_domains_info {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin-bottom: 0;
|
2017-12-02 18:44:39 +01:00
|
|
|
}
|
|
|
|
|
2020-05-12 06:01:12 +02:00
|
|
|
.admin-realm-form {
|
2023-03-17 22:10:10 +01:00
|
|
|
& h3 {
|
2020-05-12 06:01:12 +02:00
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2017-05-17 19:07:00 +02:00
|
|
|
|
2020-05-12 06:01:12 +02:00
|
|
|
.subsection-header h3 {
|
|
|
|
display: inline;
|
|
|
|
}
|
2020-05-12 06:00:02 +02:00
|
|
|
}
|
|
|
|
|
2024-01-17 09:24:09 +01:00
|
|
|
.preferences-settings-form,
|
2021-09-27 13:30:24 +02:00
|
|
|
.notification-settings-form {
|
2021-09-27 12:59:09 +02:00
|
|
|
.subsection-header h3 {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2023-11-28 20:48:12 +01:00
|
|
|
|
|
|
|
.tip {
|
|
|
|
width: fit-content;
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2021-09-27 12:59:09 +02:00
|
|
|
}
|
|
|
|
|
2021-11-20 11:51:35 +01:00
|
|
|
#stream-specific-notify-table .unmute_stream {
|
|
|
|
position: relative;
|
|
|
|
left: 3px;
|
2022-04-21 17:31:34 +02:00
|
|
|
top: 2px;
|
2021-11-20 11:51:35 +01:00
|
|
|
|
|
|
|
&:hover {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 20%);
|
2021-11-20 11:51:35 +01:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-11 17:18:50 +02:00
|
|
|
.organization-settings-parent > div:first-of-type {
|
2017-05-17 19:07:00 +02:00
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
2020-06-26 22:10:27 +02:00
|
|
|
#id_org_profile_preview {
|
2018-03-31 01:47:06 +02:00
|
|
|
margin-bottom: 20px;
|
2022-08-31 07:58:56 +02:00
|
|
|
display: inline-flex;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
align-items: center;
|
2018-03-31 01:47:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.inline-block.organization-permissions-parent div:first-of-type {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
2022-05-03 08:06:40 +02:00
|
|
|
.language_selection_widget {
|
|
|
|
.title {
|
|
|
|
margin-bottom: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.language_selection_button {
|
|
|
|
text-decoration: none;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 20%);
|
2022-05-03 08:06:40 +02:00
|
|
|
|
|
|
|
.fa.fa-pencil {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
}
|
2017-07-05 21:54:58 +02:00
|
|
|
}
|
|
|
|
|
2017-12-08 14:24:32 +01:00
|
|
|
.remove-attachment {
|
2018-07-27 00:58:50 +02:00
|
|
|
margin-right: 5px !important;
|
|
|
|
font-size: 1.1em !important;
|
2020-08-06 02:42:07 +02:00
|
|
|
padding-left: 0 !important;
|
2017-02-24 02:31:37 +01:00
|
|
|
}
|
|
|
|
|
2017-12-04 23:25:06 +01:00
|
|
|
#download_attachment {
|
2020-08-06 02:42:07 +02:00
|
|
|
padding-left: 0;
|
|
|
|
border-left: 0;
|
2017-12-04 23:25:06 +01:00
|
|
|
}
|
|
|
|
|
2016-09-14 02:20:13 +02:00
|
|
|
.remove-alert-word {
|
2016-09-28 03:06:44 +02:00
|
|
|
margin-top: 1px;
|
2016-06-26 17:21:39 +02:00
|
|
|
}
|
|
|
|
|
2021-04-28 18:34:30 +02:00
|
|
|
.alert_word_status_text {
|
|
|
|
word-break: break-word;
|
|
|
|
}
|
|
|
|
|
2020-03-28 06:29:02 +01:00
|
|
|
.alert-notification {
|
2020-07-14 22:31:10 +02:00
|
|
|
display: inline-block;
|
2020-03-28 06:30:13 +01:00
|
|
|
vertical-align: top;
|
|
|
|
height: auto !important;
|
|
|
|
width: auto !important;
|
2023-03-05 07:31:44 +01:00
|
|
|
white-space: break-spaces !important;
|
2020-03-28 06:29:02 +01:00
|
|
|
|
2023-03-05 07:31:44 +01:00
|
|
|
overflow-wrap: anywhere;
|
2020-03-28 06:30:13 +01:00
|
|
|
background-color: transparent;
|
|
|
|
border-radius: 4px;
|
|
|
|
margin-top: 14px;
|
|
|
|
margin-left: 10px;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(156deg 30% 50%);
|
2020-03-28 06:30:13 +01:00
|
|
|
padding: 3px 10px;
|
|
|
|
|
2023-03-05 07:32:08 +01:00
|
|
|
&.account-alert-notification {
|
|
|
|
margin: 0 0 10px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2020-03-28 06:30:13 +01:00
|
|
|
&:not(:empty) {
|
2023-03-20 22:08:47 +01:00
|
|
|
border: 1px solid hsl(156deg 30% 50%);
|
2020-03-28 06:29:02 +01:00
|
|
|
}
|
2018-02-06 17:03:03 +01:00
|
|
|
|
2020-04-30 21:44:38 +02:00
|
|
|
&.alert-error {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(2deg 46% 68%);
|
|
|
|
border-color: hsl(2deg 46% 68%);
|
2020-03-28 06:29:02 +01:00
|
|
|
}
|
2018-02-06 17:03:03 +01:00
|
|
|
|
2020-03-28 06:29:02 +01:00
|
|
|
.loading_indicator_spinner {
|
|
|
|
width: 13px;
|
|
|
|
height: 20px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2018-04-19 22:00:35 +02:00
|
|
|
|
2020-03-28 06:29:02 +01:00
|
|
|
/* make the spinner green like the text and box. */
|
|
|
|
.loading_indicator_spinner svg path {
|
2023-03-20 22:08:47 +01:00
|
|
|
fill: hsl(178deg 100% 40%);
|
2020-03-28 06:29:02 +01:00
|
|
|
}
|
2018-02-06 17:03:03 +01:00
|
|
|
|
2020-03-28 06:29:02 +01:00
|
|
|
.loading_indicator_text {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin-top: 0;
|
2020-03-28 06:29:02 +01:00
|
|
|
font-size: inherit;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
2018-02-06 17:03:03 +01:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& img {
|
2020-03-28 06:29:02 +01:00
|
|
|
margin-right: 6px;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-top: -2px;
|
|
|
|
}
|
2018-02-06 17:03:03 +01:00
|
|
|
}
|
|
|
|
|
2019-07-10 14:32:27 +02:00
|
|
|
#profile-field-settings #admin-add-profile-field-status {
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
|
2022-06-13 14:39:59 +02:00
|
|
|
#add-custom-profile-field-btn {
|
|
|
|
float: right;
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
|
2021-08-09 13:26:49 +02:00
|
|
|
#user-notification-settings {
|
|
|
|
.notification-table {
|
2023-03-17 22:10:10 +01:00
|
|
|
& th,
|
2020-03-23 08:29:48 +01:00
|
|
|
td {
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
2020-03-12 17:40:38 +01:00
|
|
|
cursor: default;
|
|
|
|
|
|
|
|
.stream-privacy span.hashtag,
|
|
|
|
.filter-icon i {
|
2020-08-06 02:42:07 +02:00
|
|
|
padding-right: 0;
|
2020-03-12 17:40:38 +01:00
|
|
|
}
|
2021-11-20 11:51:35 +01:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& label {
|
2021-11-20 11:51:35 +01:00
|
|
|
cursor: default;
|
|
|
|
}
|
2020-03-23 08:29:48 +01:00
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& td:first-child {
|
2020-03-12 17:40:38 +01:00
|
|
|
text-align: left;
|
2020-03-23 08:29:48 +01:00
|
|
|
font-weight: bold;
|
2020-03-12 17:40:38 +01:00
|
|
|
word-break: break-all;
|
2020-03-23 08:29:48 +01:00
|
|
|
}
|
|
|
|
}
|
2016-07-07 20:07:01 +02:00
|
|
|
}
|
|
|
|
|
2021-09-16 18:51:42 +02:00
|
|
|
#convert-demo-organization-form {
|
|
|
|
.domain_label {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-17 18:42:31 +02:00
|
|
|
#profile-settings {
|
|
|
|
.custom-profile-fields-form .custom_user_field label,
|
2022-09-13 14:12:32 +02:00
|
|
|
.full-name-change-container label,
|
2021-06-30 19:46:27 +02:00
|
|
|
.timezone-setting-form label {
|
2020-05-09 14:09:26 +02:00
|
|
|
min-width: fit-content;
|
|
|
|
}
|
2019-07-10 22:18:45 +02:00
|
|
|
|
2021-06-17 18:42:31 +02:00
|
|
|
.alert-notification.custom-field-status,
|
2021-06-30 19:46:27 +02:00
|
|
|
.alert-notification.full-name-status,
|
2022-06-09 07:54:55 +02:00
|
|
|
.alert-notification.timezone-setting-status {
|
2020-08-06 02:42:07 +02:00
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
margin-top: 0;
|
|
|
|
padding-left: 0;
|
2020-05-09 14:09:26 +02:00
|
|
|
margin-left: 5px;
|
|
|
|
border: none;
|
|
|
|
}
|
2023-03-31 09:18:13 +02:00
|
|
|
|
|
|
|
.person_picker {
|
|
|
|
min-width: 311px;
|
|
|
|
}
|
2023-03-31 09:58:26 +02:00
|
|
|
|
|
|
|
& textarea {
|
|
|
|
width: 311px;
|
|
|
|
}
|
2019-07-10 22:18:45 +02:00
|
|
|
}
|
|
|
|
|
2016-06-26 17:21:39 +02:00
|
|
|
.control-label-disabled {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 82%);
|
2016-06-26 17:21:39 +02:00
|
|
|
|
2020-05-09 14:14:10 +02:00
|
|
|
&.enabled {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 20%);
|
2020-05-09 14:14:10 +02:00
|
|
|
}
|
2018-08-05 02:43:03 +02:00
|
|
|
}
|
|
|
|
|
2016-11-30 10:42:58 +01:00
|
|
|
.admin-realm-message-retention-days {
|
|
|
|
width: 5ch;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2022-04-01 19:22:41 +02:00
|
|
|
#add-default-stream-modal {
|
|
|
|
.dropdown-widget-button {
|
|
|
|
display: inline-flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.default_stream_choices_table {
|
|
|
|
margin-top: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.choice-row {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
&:last-of-type {
|
|
|
|
.delete-choice {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.add_default_streams_button_container {
|
|
|
|
float: right;
|
|
|
|
|
|
|
|
#show-add-default-streams-modal {
|
|
|
|
padding: 5px 0;
|
|
|
|
min-width: 100px;
|
|
|
|
margin-top: 11px;
|
|
|
|
margin-right: 6px;
|
2020-05-12 05:52:48 +02:00
|
|
|
}
|
2017-08-31 00:05:52 +02:00
|
|
|
}
|
|
|
|
|
2022-03-29 18:46:59 +02:00
|
|
|
#add-custom-emoji-modal {
|
2023-03-17 22:10:10 +01:00
|
|
|
& form {
|
2022-03-29 18:46:59 +02:00
|
|
|
margin: 0;
|
|
|
|
}
|
2017-08-31 00:05:52 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& input[type="text"] {
|
2022-03-29 18:46:59 +02:00
|
|
|
padding: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.emoji_name_input {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#emoji-file-name {
|
|
|
|
font-size: 14px;
|
|
|
|
white-space: nowrap;
|
|
|
|
height: 1rem;
|
|
|
|
font-style: italic;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 67%);
|
2022-03-29 18:46:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#emoji_preview_text {
|
|
|
|
margin-top: 6px;
|
|
|
|
}
|
2017-08-31 00:05:52 +02:00
|
|
|
}
|
|
|
|
|
2018-03-29 07:21:46 +02:00
|
|
|
#emoji_file_input_error {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2021-04-17 11:39:02 +02:00
|
|
|
.add-new-linkifier-box,
|
|
|
|
.add-new-playground-box {
|
2023-03-17 22:10:10 +01:00
|
|
|
& button {
|
2020-05-28 00:58:41 +02:00
|
|
|
margin-left: calc(10em + 20px) !important;
|
2020-05-12 05:49:42 +02:00
|
|
|
}
|
2022-03-04 13:06:28 +01:00
|
|
|
margin-bottom: 15px;
|
2022-08-17 14:16:15 +02:00
|
|
|
|
|
|
|
.checkbox {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
2017-08-31 00:06:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.grey-box .wrapper {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 10px 0;
|
2017-08-31 00:06:17 +02:00
|
|
|
}
|
|
|
|
|
2018-08-02 19:31:17 +02:00
|
|
|
.admin_profile_fields_table,
|
2022-07-16 20:54:04 +02:00
|
|
|
.edit_profile_field_choices_container,
|
2018-08-02 19:31:17 +02:00
|
|
|
.profile_field_choices_table {
|
2023-08-10 04:57:23 +02:00
|
|
|
.movable-row {
|
2018-07-05 19:40:26 +02:00
|
|
|
cursor: move;
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2018-08-02 22:20:28 +02:00
|
|
|
.fa-ellipsis-v {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 75%);
|
2018-07-05 19:40:26 +02:00
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
2023-09-21 22:52:36 +02:00
|
|
|
|
|
|
|
+ i {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.admin_linkifiers_table {
|
|
|
|
.movable-row {
|
|
|
|
.move-handle {
|
|
|
|
cursor: move;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fa-ellipsis-v {
|
|
|
|
color: hsl(0deg 0% 75%);
|
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2018-07-05 19:40:26 +02:00
|
|
|
+ i {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-13 19:17:15 +01:00
|
|
|
}
|
|
|
|
|
2021-03-13 18:15:14 +01:00
|
|
|
#admin-linkifier-pattern-status,
|
2022-10-05 22:52:26 +02:00
|
|
|
#admin-linkifier-template-status {
|
2021-11-05 03:33:16 +01:00
|
|
|
margin: 20px 0 0;
|
2016-02-13 19:17:15 +01:00
|
|
|
}
|
|
|
|
|
2023-11-23 10:14:35 +01:00
|
|
|
#org-join-settings,
|
|
|
|
#org-guest-settings {
|
2023-08-03 16:06:40 +02:00
|
|
|
.dropdown-widget-button {
|
|
|
|
width: 325px;
|
|
|
|
color: hsl(0deg 0% 33%);
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
cursor: not-allowed;
|
|
|
|
background-color: hsl(0deg 0% 93%);
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-17 23:28:41 +02:00
|
|
|
.progressive-table-wrapper {
|
2017-09-15 23:01:36 +02:00
|
|
|
position: relative;
|
2017-09-26 22:05:53 +02:00
|
|
|
max-height: calc(95vh - 220px);
|
2017-04-17 23:28:41 +02:00
|
|
|
overflow: auto;
|
2019-08-22 10:33:44 +02:00
|
|
|
width: 100%;
|
2017-04-17 23:28:41 +02:00
|
|
|
}
|
|
|
|
|
2017-09-15 23:01:36 +02:00
|
|
|
#admin-default-streams-list .progressive-table-wrapper {
|
2017-09-26 22:05:53 +02:00
|
|
|
max-height: calc(95vh - 280px);
|
2017-09-15 23:01:36 +02:00
|
|
|
}
|
|
|
|
|
2024-01-11 12:16:28 +01:00
|
|
|
#bot-settings {
|
|
|
|
.add-a-new-bot {
|
|
|
|
margin-bottom: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
margin: 10px 0;
|
|
|
|
border-color: hsl(0deg 0% 85%);
|
|
|
|
}
|
2024-01-18 10:21:23 +01:00
|
|
|
|
|
|
|
.config-download-text {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
2022-09-15 14:07:39 +02:00
|
|
|
}
|
|
|
|
|
2017-02-25 20:14:47 +01:00
|
|
|
.bots_list {
|
2016-07-08 14:59:56 +02:00
|
|
|
list-style-type: none;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin-left: 0;
|
2016-07-08 14:59:56 +02:00
|
|
|
|
2020-05-10 04:17:20 +02:00
|
|
|
.image {
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
2016-07-08 14:59:56 +02:00
|
|
|
|
2020-05-10 04:17:20 +02:00
|
|
|
.name {
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 1.1rem;
|
|
|
|
margin: 7px 5px;
|
2017-02-23 01:58:50 +01:00
|
|
|
|
2020-05-10 04:17:20 +02:00
|
|
|
overflow: hidden;
|
|
|
|
line-height: 1.3em;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: pre;
|
|
|
|
}
|
2016-07-08 14:59:56 +02:00
|
|
|
|
2020-05-10 04:17:20 +02:00
|
|
|
.regenerate_bot_api_key {
|
|
|
|
position: relative;
|
|
|
|
margin-left: 5px;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 67%);
|
2020-05-10 04:17:20 +02:00
|
|
|
transition: all 0.3s ease;
|
2016-07-08 14:59:56 +02:00
|
|
|
|
2020-05-10 04:17:20 +02:00
|
|
|
&:hover {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 27%);
|
2020-05-10 04:17:20 +02:00
|
|
|
}
|
|
|
|
}
|
2016-07-08 14:59:56 +02:00
|
|
|
|
2020-05-10 04:17:20 +02:00
|
|
|
.edit-bot-buttons {
|
|
|
|
padding-top: 5px;
|
2017-02-23 01:58:50 +01:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& button {
|
2020-05-10 04:17:20 +02:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
2017-02-23 01:58:50 +01:00
|
|
|
|
2020-05-10 04:17:20 +02:00
|
|
|
.btn {
|
|
|
|
padding: 4px;
|
|
|
|
}
|
2017-02-23 01:58:50 +01:00
|
|
|
|
2020-05-10 04:17:20 +02:00
|
|
|
.sea-green {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(177deg 70% 46%);
|
2020-05-10 04:17:20 +02:00
|
|
|
}
|
2017-02-23 01:58:50 +01:00
|
|
|
|
2020-05-10 04:17:20 +02:00
|
|
|
.blue {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(203deg 77% 56%);
|
2020-05-10 04:17:20 +02:00
|
|
|
}
|
2017-02-23 01:58:50 +01:00
|
|
|
|
2020-05-10 04:17:20 +02:00
|
|
|
.danger-red {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 56% 73%);
|
2020-05-10 04:17:20 +02:00
|
|
|
}
|
2017-02-23 01:58:50 +01:00
|
|
|
|
2023-09-18 09:54:49 +02:00
|
|
|
.copy_zuliprc {
|
|
|
|
padding: 0 4px;
|
|
|
|
|
|
|
|
#clipboard_image {
|
|
|
|
margin: 0 -2px 0 0;
|
|
|
|
|
|
|
|
path {
|
|
|
|
fill: hsl(51deg 90% 50%);
|
|
|
|
}
|
|
|
|
}
|
2020-05-10 04:17:20 +02:00
|
|
|
}
|
2022-08-24 10:54:02 +02:00
|
|
|
|
|
|
|
.purple {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(278deg 62% 68%);
|
2022-08-24 10:54:02 +02:00
|
|
|
}
|
2023-06-27 11:14:31 +02:00
|
|
|
|
|
|
|
.steel-blue {
|
|
|
|
color: hsl(207deg 44% 49%);
|
|
|
|
}
|
2020-05-10 04:17:20 +02:00
|
|
|
}
|
2018-06-27 09:35:30 +02:00
|
|
|
|
2020-05-10 04:17:20 +02:00
|
|
|
.bot-information-box {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
width: calc(50% - 10px);
|
|
|
|
max-height: 220px;
|
|
|
|
margin: 5px;
|
2017-02-23 01:58:50 +01:00
|
|
|
|
2020-05-10 04:17:20 +02:00
|
|
|
border-radius: 4px;
|
|
|
|
box-sizing: border-box;
|
2017-02-23 01:58:50 +01:00
|
|
|
|
2020-05-10 04:17:20 +02:00
|
|
|
overflow: auto;
|
2016-07-08 14:59:56 +02:00
|
|
|
|
2020-05-10 04:17:20 +02:00
|
|
|
.details {
|
|
|
|
display: inline-block;
|
|
|
|
width: calc(100% - 75px);
|
|
|
|
}
|
|
|
|
}
|
2020-05-10 03:41:08 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& img.avatar {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 10px 5px 0 10px;
|
2020-05-10 04:17:20 +02:00
|
|
|
height: 50px;
|
|
|
|
width: 50px;
|
|
|
|
border-radius: 4px;
|
|
|
|
vertical-align: top;
|
2023-03-20 22:08:47 +01:00
|
|
|
box-shadow: 0 0 4px hsl(0deg 0% 0% / 10%);
|
2020-05-10 04:17:20 +02:00
|
|
|
}
|
2017-02-23 01:58:50 +01:00
|
|
|
|
2020-05-10 04:17:20 +02:00
|
|
|
.email,
|
|
|
|
.type {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
2016-07-08 14:59:56 +02:00
|
|
|
|
2020-05-10 04:17:20 +02:00
|
|
|
.email .value,
|
|
|
|
.api_key .api-key-value-and-button {
|
|
|
|
display: block;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin-left: 0;
|
2020-05-10 04:17:20 +02:00
|
|
|
word-wrap: break-word;
|
|
|
|
word-break: break-all;
|
|
|
|
white-space: normal;
|
|
|
|
}
|
2016-07-08 14:59:56 +02:00
|
|
|
|
2020-05-10 04:17:20 +02:00
|
|
|
.api_key .api-key-value-and-button {
|
2021-04-03 04:01:40 +02:00
|
|
|
font-family: "Source Code Pro", monospace;
|
2020-05-10 04:17:20 +02:00
|
|
|
font-size: 0.85em;
|
|
|
|
display: flex;
|
|
|
|
}
|
2017-02-23 01:58:50 +01:00
|
|
|
|
2020-05-10 04:17:20 +02:00
|
|
|
.bot_info {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
2017-02-23 01:58:50 +01:00
|
|
|
|
2020-05-10 04:17:20 +02:00
|
|
|
.field {
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 600;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 67%);
|
2020-05-10 04:17:20 +02:00
|
|
|
}
|
2016-07-08 14:59:56 +02:00
|
|
|
}
|
|
|
|
|
2017-02-25 22:57:06 +01:00
|
|
|
#inactive_bots_list .bot_info .reactivate_bot {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
2017-03-01 01:31:33 +01:00
|
|
|
.edit_bot_form {
|
2016-07-08 14:59:56 +02:00
|
|
|
font-size: 100%;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2017-02-23 01:58:50 +01:00
|
|
|
|
2020-05-10 04:21:26 +02:00
|
|
|
.buttons {
|
2021-11-05 03:33:16 +01:00
|
|
|
margin: 10px 0 5px;
|
2020-05-10 04:21:26 +02:00
|
|
|
}
|
2016-07-08 14:59:56 +02:00
|
|
|
|
2023-01-02 19:19:52 +01:00
|
|
|
#current_bot_avatar_image {
|
|
|
|
margin: 5px 0 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.edit_bot_avatar_preview_text {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#add_bot_preview_text {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.edit_bot_avatar_preview_image,
|
|
|
|
#add_bot_preview_image {
|
|
|
|
height: 100px;
|
|
|
|
width: 100px;
|
|
|
|
margin: 2px 0 8px;
|
2016-07-08 14:59:56 +02:00
|
|
|
}
|
|
|
|
|
2022-07-21 06:24:16 +02:00
|
|
|
#add-alert-word {
|
2023-03-17 22:10:10 +01:00
|
|
|
& form {
|
2022-07-21 06:24:16 +02:00
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
2023-01-10 16:04:43 +01:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& input {
|
2023-01-10 16:04:43 +01:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2022-07-21 06:24:16 +02:00
|
|
|
}
|
|
|
|
|
2021-03-13 18:15:14 +01:00
|
|
|
.admin-linkifier-form,
|
2022-08-09 09:02:23 +02:00
|
|
|
.admin-playground-form {
|
2023-03-17 22:10:10 +01:00
|
|
|
& label {
|
2022-08-09 09:10:53 +02:00
|
|
|
float: left;
|
|
|
|
padding-top: 5px;
|
2020-05-12 05:48:10 +02:00
|
|
|
width: 10em;
|
|
|
|
text-align: right;
|
|
|
|
margin-right: 20px;
|
|
|
|
}
|
2016-07-08 14:59:56 +02:00
|
|
|
}
|
|
|
|
|
2023-03-27 12:55:00 +02:00
|
|
|
.admin-profile-field-form #custom_external_account_url_pattern input,
|
|
|
|
#edit-custom-profile-field-form-modal .custom_external_account_detail input {
|
2019-07-10 22:40:06 +02:00
|
|
|
width: 70%;
|
|
|
|
}
|
|
|
|
|
2022-02-21 18:23:21 +01:00
|
|
|
#alert-words-table {
|
2017-05-11 02:25:48 +02:00
|
|
|
margin: 0;
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& li {
|
2020-05-10 04:26:33 +02:00
|
|
|
list-style-type: none;
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2020-05-10 04:26:33 +02:00
|
|
|
&.alert-word-item:first-child {
|
|
|
|
background: none;
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
}
|
2016-07-09 16:59:47 +02:00
|
|
|
|
2020-05-10 04:26:33 +02:00
|
|
|
.alert_word_listing .value {
|
|
|
|
word-wrap: break-word;
|
|
|
|
word-break: break-all;
|
|
|
|
white-space: normal;
|
|
|
|
}
|
2020-05-10 04:24:30 +02:00
|
|
|
|
2020-05-12 05:46:35 +02:00
|
|
|
.edit-attachment-buttons {
|
|
|
|
position: absolute;
|
|
|
|
right: 20px;
|
2020-08-06 02:42:07 +02:00
|
|
|
top: 0;
|
2020-05-12 05:46:35 +02:00
|
|
|
}
|
2020-05-10 04:24:30 +02:00
|
|
|
}
|
2016-09-27 14:25:52 +02:00
|
|
|
|
2021-07-22 17:50:43 +02:00
|
|
|
#change_password_modal {
|
|
|
|
#change_password_container {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-20 14:52:50 +02:00
|
|
|
#api_key_status {
|
2021-11-24 07:05:47 +01:00
|
|
|
margin: 0 0 10px;
|
2021-07-20 14:52:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#download_zuliprc {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 100%);
|
2021-07-20 14:52:50 +02:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2021-07-20 14:51:48 +02:00
|
|
|
#realm_domains_table {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2021-04-05 09:53:15 +02:00
|
|
|
#api_key_form,
|
|
|
|
#change_password_modal {
|
|
|
|
.password-div {
|
|
|
|
position: relative;
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& input[type="text"] {
|
2021-04-05 09:53:15 +02:00
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.password_visibility_toggle {
|
|
|
|
position: absolute;
|
2021-07-22 17:50:43 +02:00
|
|
|
left: 194px;
|
|
|
|
top: 32px;
|
2021-04-05 09:53:15 +02:00
|
|
|
width: 14px;
|
|
|
|
opacity: 0.6;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-12 22:41:06 +02:00
|
|
|
.emojiset_choices,
|
|
|
|
.user_list_style_values {
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 0 10px;
|
2022-11-22 11:22:27 +01:00
|
|
|
}
|
2017-11-02 21:25:36 +01:00
|
|
|
|
2024-01-20 01:00:48 +01:00
|
|
|
label.preferences-radio-choice-label {
|
2023-03-20 22:08:47 +01:00
|
|
|
border-bottom: 1px solid hsl(0deg 0% 0% / 20%);
|
2022-11-22 11:22:27 +01:00
|
|
|
padding: 8px 0 10px;
|
2023-09-18 21:35:53 +02:00
|
|
|
display: flex;
|
2017-11-11 01:55:40 +01:00
|
|
|
|
2022-11-22 11:22:27 +01:00
|
|
|
&:last-of-type {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
2017-11-11 01:55:40 +01:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& input[type="radio"] {
|
2022-11-22 11:22:27 +01:00
|
|
|
position: relative;
|
|
|
|
top: -2px;
|
|
|
|
margin: 0 5px 0 0;
|
|
|
|
width: auto;
|
|
|
|
cursor: pointer;
|
2017-11-11 01:55:40 +01:00
|
|
|
|
2022-11-22 11:22:27 +01:00
|
|
|
&:focus {
|
2023-03-20 22:08:47 +01:00
|
|
|
outline: 1px dotted hsl(0deg 0% 20%);
|
2022-11-22 11:22:27 +01:00
|
|
|
outline: 5px auto -webkit-focus-ring-color;
|
|
|
|
outline-offset: -2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
cursor: not-allowed;
|
2020-05-10 04:31:01 +02:00
|
|
|
}
|
2022-08-12 22:41:06 +02:00
|
|
|
|
2022-11-22 11:22:27 +01:00
|
|
|
&:checked + span {
|
|
|
|
font-weight: 600;
|
2022-08-12 22:41:06 +02:00
|
|
|
}
|
|
|
|
}
|
2022-11-22 11:22:27 +01:00
|
|
|
|
|
|
|
.right {
|
2023-09-18 21:35:53 +02:00
|
|
|
/* Push to far right in flex container. */
|
|
|
|
margin-left: auto;
|
2022-11-22 11:22:27 +01:00
|
|
|
}
|
2022-08-12 22:41:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.emojiset_choices {
|
2022-05-19 21:37:54 +02:00
|
|
|
width: 350px;
|
2022-08-12 22:41:06 +02:00
|
|
|
|
|
|
|
.emoji {
|
|
|
|
height: 22px;
|
|
|
|
width: 22px;
|
2020-05-10 04:31:01 +02:00
|
|
|
}
|
2022-08-12 22:41:06 +02:00
|
|
|
}
|
2017-11-02 21:25:36 +01:00
|
|
|
|
2022-08-12 22:41:06 +02:00
|
|
|
$right_sidebar_width: 170px;
|
|
|
|
$option_title_width: 180px;
|
|
|
|
|
|
|
|
.user_list_style_values {
|
|
|
|
max-width: calc($right_sidebar_width + $option_title_width);
|
|
|
|
|
|
|
|
.preview {
|
|
|
|
background-color: inherit !important;
|
|
|
|
/* Match the 170px width of the right sidebar region for the name/status,
|
|
|
|
doing something reasonable if the window shrinks. */
|
|
|
|
width: calc(100% - $option_title_width);
|
|
|
|
text-align: left;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
2023-11-09 00:35:32 +01:00
|
|
|
overflow: hidden visible;
|
2022-08-12 22:41:06 +02:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.user-name-and-status-text {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-text {
|
|
|
|
opacity: 0.75;
|
|
|
|
font-size: 90%;
|
|
|
|
|
|
|
|
&:not(:empty) {
|
|
|
|
margin-top: -3px;
|
|
|
|
}
|
|
|
|
}
|
2020-05-10 04:31:01 +02:00
|
|
|
}
|
2017-11-02 21:25:36 +01:00
|
|
|
}
|
|
|
|
|
2016-09-27 14:25:52 +02:00
|
|
|
.open-user-form {
|
|
|
|
min-width: initial !important;
|
|
|
|
}
|
2016-11-15 17:55:20 +01:00
|
|
|
|
2018-09-30 22:00:09 +02:00
|
|
|
#api_key_buttons {
|
|
|
|
display: inline-flex;
|
|
|
|
|
2020-05-10 04:31:47 +02:00
|
|
|
.regenerate_api_key {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
2018-09-30 22:00:09 +02:00
|
|
|
}
|
|
|
|
|
2018-01-02 13:02:13 +01:00
|
|
|
.right.show .emoji_alt_code {
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
|
|
|
|
2023-10-13 12:51:35 +02:00
|
|
|
.invite-user-link .fa-user-plus {
|
2017-10-21 03:15:12 +02:00
|
|
|
text-decoration: none;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
2017-11-13 17:26:11 +01:00
|
|
|
|
2016-12-03 01:12:52 +01:00
|
|
|
/* -- new settings overlay -- */
|
|
|
|
#settings_page {
|
|
|
|
height: 95vh;
|
|
|
|
width: 97vw;
|
2017-05-11 02:25:48 +02:00
|
|
|
max-width: 1024px;
|
|
|
|
margin: 2.5vh auto;
|
2016-12-03 01:12:52 +01:00
|
|
|
overflow: hidden;
|
|
|
|
border-radius: 4px;
|
2019-04-20 01:04:22 +02:00
|
|
|
|
2023-01-16 10:46:45 +01:00
|
|
|
.time-limit-custom-input {
|
2020-08-06 02:34:58 +02:00
|
|
|
width: 5ch;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.realm-time-limit-label {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& h3 {
|
2020-05-10 08:11:41 +02:00
|
|
|
font-size: 1.5em;
|
|
|
|
font-weight: normal;
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
2017-04-24 21:14:30 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& h5 {
|
2020-05-10 08:11:41 +02:00
|
|
|
font-size: 1.2em;
|
|
|
|
font-weight: normal;
|
|
|
|
line-height: 1.2;
|
2022-11-21 05:12:10 +01:00
|
|
|
margin: 10px 0;
|
2020-05-10 08:11:41 +02:00
|
|
|
}
|
2017-03-01 01:31:33 +01:00
|
|
|
|
2022-03-14 13:28:30 +01:00
|
|
|
.sidebar-wrapper {
|
2020-05-10 08:11:41 +02:00
|
|
|
float: left;
|
|
|
|
position: relative;
|
2022-04-26 03:14:18 +02:00
|
|
|
width: $settings_sidebar_width;
|
2020-05-10 08:11:41 +02:00
|
|
|
height: 100%;
|
2022-03-14 13:28:30 +01:00
|
|
|
|
|
|
|
.tab-container {
|
|
|
|
box-sizing: border-box;
|
2022-04-26 03:14:18 +02:00
|
|
|
height: $settings_header_height;
|
2022-03-14 13:28:30 +01:00
|
|
|
padding: 6px;
|
2023-03-20 22:08:47 +01:00
|
|
|
border-bottom: 1px solid hsl(0deg 0% 87%);
|
2022-03-14 13:28:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar {
|
2022-04-26 03:14:18 +02:00
|
|
|
height: calc(100% - $settings_header_height);
|
2020-05-10 08:11:41 +02:00
|
|
|
overflow-y: auto;
|
2023-03-20 22:08:47 +01:00
|
|
|
border-right: 1px solid hsl(0deg 0% 93%);
|
2016-12-03 01:12:52 +01:00
|
|
|
|
2020-05-10 08:11:41 +02:00
|
|
|
.header {
|
|
|
|
height: auto;
|
|
|
|
position: relative;
|
|
|
|
width: calc(100% - 20px);
|
|
|
|
padding: 10px;
|
|
|
|
text-align: center;
|
|
|
|
text-transform: uppercase;
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(180deg 6% 93%);
|
|
|
|
border-bottom: 1px solid hsl(0deg 0% 87%);
|
2020-05-10 08:11:41 +02:00
|
|
|
}
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& ul {
|
2020-05-10 08:11:41 +02:00
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& li {
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 5px 0;
|
2020-05-10 08:11:41 +02:00
|
|
|
outline: none;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: all 0.2s ease;
|
2023-03-20 22:08:47 +01:00
|
|
|
border-bottom: 1px solid hsl(0deg 0% 93%);
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2020-05-10 08:11:41 +02:00
|
|
|
&:last-of-type .text {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2020-05-10 08:11:41 +02:00
|
|
|
&.active {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 93%);
|
2020-05-10 08:11:41 +02:00
|
|
|
border-bottom: 1px solid transparent;
|
|
|
|
}
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2020-05-10 08:11:41 +02:00
|
|
|
.text,
|
|
|
|
.icon,
|
|
|
|
.locked {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2020-05-10 08:11:41 +02:00
|
|
|
.text {
|
|
|
|
width: calc(100% - 90px);
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 10px 12px 10px 0;
|
2020-05-10 08:11:41 +02:00
|
|
|
}
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2020-05-10 08:11:41 +02:00
|
|
|
.icon {
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
2021-11-05 03:33:16 +01:00
|
|
|
margin: 10px;
|
2020-05-10 08:11:41 +02:00
|
|
|
text-align: center;
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2020-05-10 08:11:41 +02:00
|
|
|
font-size: 1.4em;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 53%);
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2020-05-10 08:11:41 +02:00
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2022-10-06 19:17:49 +02:00
|
|
|
.zulip-icon-smart-toy {
|
|
|
|
font-size: 1.6em;
|
|
|
|
margin: 8px 11px 10px 9px;
|
|
|
|
}
|
|
|
|
|
2020-05-10 08:11:41 +02:00
|
|
|
.locked {
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
margin: 14px 8px 6px;
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2020-05-10 08:11:41 +02:00
|
|
|
font-size: 1em;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 62%);
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2020-05-10 08:11:41 +02:00
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
}
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2020-05-10 08:11:41 +02:00
|
|
|
.org-settings-list {
|
|
|
|
display: none;
|
|
|
|
}
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2020-05-10 08:11:41 +02:00
|
|
|
.normal-settings-list,
|
|
|
|
.org-settings-list {
|
|
|
|
position: relative;
|
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2021-10-15 19:22:21 +02:00
|
|
|
.settings-sticky-bar {
|
|
|
|
position: sticky;
|
|
|
|
z-index: 1;
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 100%);
|
2021-10-15 19:22:21 +02:00
|
|
|
top: 0;
|
|
|
|
}
|
2020-05-10 08:11:41 +02:00
|
|
|
}
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2020-05-10 08:11:41 +02:00
|
|
|
.settings-header {
|
|
|
|
padding-top: 1px;
|
2016-12-03 01:12:52 +01:00
|
|
|
|
2020-05-10 08:11:41 +02:00
|
|
|
&.mobile {
|
|
|
|
display: none;
|
2023-03-20 22:08:47 +01:00
|
|
|
border-bottom: 1px solid hsl(0deg 0% 87%);
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2020-05-10 08:11:41 +02:00
|
|
|
.fa-chevron-left {
|
|
|
|
float: left;
|
|
|
|
position: relative;
|
|
|
|
top: 14px;
|
|
|
|
left: 10px;
|
|
|
|
}
|
|
|
|
}
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& h1 {
|
2020-05-10 08:11:41 +02:00
|
|
|
text-align: center;
|
|
|
|
font-size: 1.1em;
|
|
|
|
line-height: 1;
|
|
|
|
margin: 15px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
2016-12-03 01:12:52 +01:00
|
|
|
|
2020-05-10 08:11:41 +02:00
|
|
|
.exit {
|
|
|
|
font-weight: 600;
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
right: 10px;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 67%);
|
2020-05-10 08:11:41 +02:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
2016-12-03 01:12:52 +01:00
|
|
|
|
2020-05-10 08:11:41 +02:00
|
|
|
.exit-sign {
|
|
|
|
float: right;
|
|
|
|
position: relative;
|
2021-06-11 23:14:08 +02:00
|
|
|
top: 1px;
|
2020-05-10 08:11:41 +02:00
|
|
|
margin-left: 3px;
|
|
|
|
font-size: 1.5rem;
|
2021-06-11 23:14:08 +02:00
|
|
|
line-height: 1;
|
2020-05-10 08:11:41 +02:00
|
|
|
font-weight: 600;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
2016-12-03 01:12:52 +01:00
|
|
|
|
2020-05-10 08:11:41 +02:00
|
|
|
.content-wrapper {
|
|
|
|
position: absolute;
|
2022-04-26 03:14:18 +02:00
|
|
|
left: $settings_sidebar_width;
|
|
|
|
width: calc(100% - $settings_sidebar_width);
|
2020-05-10 08:11:41 +02:00
|
|
|
height: 100%;
|
|
|
|
overflow: hidden;
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2020-05-10 08:11:41 +02:00
|
|
|
.settings-header {
|
|
|
|
width: 100%;
|
2022-04-26 03:14:18 +02:00
|
|
|
height: $settings_header_height;
|
2022-03-14 13:28:30 +01:00
|
|
|
box-sizing: border-box;
|
2023-03-20 22:08:47 +01:00
|
|
|
border-bottom: 1px solid hsl(0deg 0% 87%);
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& h1 .section {
|
2020-05-10 08:11:41 +02:00
|
|
|
font-weight: 400;
|
|
|
|
color: inherit;
|
|
|
|
opacity: 0.6;
|
|
|
|
}
|
|
|
|
}
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2020-05-10 08:11:41 +02:00
|
|
|
#settings_content {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
2022-04-26 03:14:18 +02:00
|
|
|
height: calc(100% - $settings_header_height);
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2020-05-10 08:11:41 +02:00
|
|
|
float: left;
|
2023-02-28 07:32:22 +01:00
|
|
|
overflow: auto;
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 0% / 2%);
|
2020-05-10 08:11:41 +02:00
|
|
|
}
|
|
|
|
}
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2024-01-17 09:24:09 +01:00
|
|
|
.preferences-settings-form select {
|
2020-05-10 08:11:41 +02:00
|
|
|
width: 245px;
|
|
|
|
}
|
2017-12-24 19:00:29 +01:00
|
|
|
}
|
|
|
|
|
2023-09-19 18:10:23 +02:00
|
|
|
.time-limit-custom-input,
|
|
|
|
.realm_jitsi_server_url_custom_input {
|
2023-06-22 16:43:42 +02:00
|
|
|
padding: 4px 6px;
|
|
|
|
color: hsl(0deg 0% 33%);
|
|
|
|
border: 1px solid hsl(0deg 0% 80%);
|
2023-07-21 23:08:07 +02:00
|
|
|
transition:
|
|
|
|
border linear 0.2s,
|
|
|
|
box-shadow linear 0.2s;
|
2023-06-22 16:43:42 +02:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
border-color: hsl(206deg 80% 62% / 80%);
|
|
|
|
outline: 0;
|
2023-07-21 23:08:07 +02:00
|
|
|
box-shadow:
|
|
|
|
inset 0 1px 1px hsl(0deg 0% 0% / 7.5%),
|
2023-06-22 16:43:42 +02:00
|
|
|
0 0 8px hsl(206deg 80% 62% / 60%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-19 18:10:23 +02:00
|
|
|
#realm_jitsi_server_url_setting {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
gap: 15px;
|
|
|
|
|
|
|
|
.jitsi_server_url_custom_input_label {
|
|
|
|
margin-bottom: 3px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-17 18:42:31 +02:00
|
|
|
#profile-settings,
|
2021-06-28 13:48:38 +02:00
|
|
|
#edit-user-form {
|
2021-10-29 08:26:59 +02:00
|
|
|
.custom_user_field {
|
|
|
|
padding-bottom: 20px;
|
|
|
|
|
|
|
|
.field_hint {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 67%);
|
2021-10-29 08:26:59 +02:00
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& textarea {
|
2021-10-29 08:26:59 +02:00
|
|
|
height: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover .remove_date {
|
|
|
|
display: inline-flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.remove_date {
|
|
|
|
opacity: 0.5;
|
|
|
|
display: none;
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
top: 2px;
|
|
|
|
left: -20px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.datepicker {
|
|
|
|
cursor: default;
|
|
|
|
}
|
2020-05-10 08:16:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#show_my_user_profile_modal {
|
2022-11-07 23:35:23 +01:00
|
|
|
width: 100%;
|
|
|
|
top: 20px;
|
|
|
|
position: sticky;
|
2020-05-10 08:16:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#show_my_user_profile_modal i {
|
|
|
|
padding-left: 2px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-31 09:58:26 +02:00
|
|
|
#edit-user-form {
|
|
|
|
.person_picker {
|
|
|
|
min-width: 206px;
|
2023-08-03 21:10:38 +02:00
|
|
|
margin-top: 5px;
|
2023-03-31 09:58:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
& textarea {
|
|
|
|
width: max(206px, 25vw);
|
|
|
|
max-width: 320px;
|
|
|
|
}
|
2023-03-31 09:18:13 +02:00
|
|
|
}
|
|
|
|
|
2023-08-03 21:10:38 +02:00
|
|
|
#manage-profile-tab {
|
|
|
|
#edit-user-form,
|
|
|
|
#bot-edit-form {
|
|
|
|
.name-setting {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
& input,
|
|
|
|
input[type="url"],
|
|
|
|
& textarea,
|
|
|
|
& select {
|
|
|
|
/* Override undesired Bootstrap default. */
|
|
|
|
margin-bottom: 0;
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-30 15:27:35 +02:00
|
|
|
.subsection-failed-status p {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 43% 91%);
|
2018-04-30 15:27:35 +02:00
|
|
|
padding: 2px 6px;
|
|
|
|
border-radius: 4px;
|
|
|
|
margin: 0 0 0 5px;
|
|
|
|
}
|
|
|
|
|
2016-11-26 04:39:53 +01:00
|
|
|
#muted_topics_table {
|
|
|
|
width: 90%;
|
|
|
|
margin: 0 auto;
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& tbody {
|
2020-05-12 06:10:32 +02:00
|
|
|
border-bottom: none;
|
|
|
|
}
|
2016-11-26 04:39:53 +01:00
|
|
|
}
|
2017-03-26 15:39:12 +02:00
|
|
|
|
2017-05-11 02:35:18 +02:00
|
|
|
#admin-user-list .last_active {
|
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
|
2023-06-20 08:37:27 +02:00
|
|
|
#payload_url_inputbox {
|
2023-03-17 22:10:10 +01:00
|
|
|
& input[type="text"] {
|
2020-05-12 06:26:41 +02:00
|
|
|
width: 340px;
|
|
|
|
}
|
2017-07-15 18:23:44 +02:00
|
|
|
}
|
|
|
|
|
2018-01-20 08:31:29 +01:00
|
|
|
.dropdown-title {
|
|
|
|
margin-bottom: 3px;
|
|
|
|
}
|
|
|
|
|
2018-04-12 11:17:52 +02:00
|
|
|
.profile-field-choices {
|
|
|
|
display: inline-block;
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& hr {
|
2020-05-12 06:29:47 +02:00
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
2018-04-12 11:17:52 +02:00
|
|
|
|
2020-05-12 06:29:47 +02:00
|
|
|
.choice-row {
|
2022-06-13 14:39:59 +02:00
|
|
|
margin-top: 8px;
|
2018-04-12 11:17:52 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& input {
|
2020-05-12 06:29:47 +02:00
|
|
|
width: 190px;
|
|
|
|
}
|
2018-04-12 11:17:52 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& button {
|
2022-06-13 14:39:59 +02:00
|
|
|
margin-left: 2px;
|
2020-05-12 06:29:47 +02:00
|
|
|
}
|
|
|
|
}
|
2018-06-19 23:22:05 +02:00
|
|
|
|
2020-05-12 06:29:47 +02:00
|
|
|
> .choice-row:first-of-type {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2020-05-12 06:28:25 +02:00
|
|
|
}
|
|
|
|
|
2022-08-24 13:46:25 +02:00
|
|
|
.custom_user_field,
|
|
|
|
.bot_owner_user_field {
|
|
|
|
.pill-container {
|
|
|
|
padding: 2px 6px;
|
|
|
|
min-height: 24px;
|
|
|
|
max-width: 206px;
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 100%);
|
2022-08-24 13:46:25 +02:00
|
|
|
|
|
|
|
&:focus-within {
|
2023-03-20 22:08:47 +01:00
|
|
|
border-color: hsl(206deg 80% 62% / 80%);
|
2022-08-24 13:46:25 +02:00
|
|
|
outline: 0;
|
|
|
|
outline: 1px dotted \9;
|
|
|
|
|
2023-07-21 23:08:07 +02:00
|
|
|
box-shadow:
|
|
|
|
inset 0 1px 1px hsl(0deg 0% 0% / 7.5%),
|
2023-03-20 22:08:47 +01:00
|
|
|
0 0 8px hsl(206deg 80% 62% / 60%);
|
2022-08-24 13:46:25 +02:00
|
|
|
}
|
2020-05-12 06:31:16 +02:00
|
|
|
}
|
2018-06-19 23:22:05 +02:00
|
|
|
}
|
2019-01-03 21:22:51 +01:00
|
|
|
|
|
|
|
#get_api_key_button {
|
|
|
|
display: block;
|
|
|
|
}
|
2019-01-17 12:05:09 +01:00
|
|
|
|
|
|
|
#attachment-stats-holder {
|
|
|
|
position: relative;
|
|
|
|
margin-top: 13px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2019-05-13 00:43:21 +02:00
|
|
|
|
|
|
|
.hide-org-settings {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.collapse-settings-btn {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 10px 0 0 10px;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(200deg 100% 40%);
|
2019-05-13 00:43:21 +02:00
|
|
|
|
2020-05-12 06:32:52 +02:00
|
|
|
&:hover {
|
|
|
|
cursor: pointer;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(208deg 56% 38%);
|
2020-05-12 06:32:52 +02:00
|
|
|
}
|
2019-05-13 00:43:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#toggle_collapse {
|
|
|
|
margin-left: 2px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2019-04-09 21:49:07 +02:00
|
|
|
|
|
|
|
.admin_exports_table {
|
2021-11-21 06:15:44 +01:00
|
|
|
margin-bottom: 20px;
|
2019-04-09 21:49:07 +02:00
|
|
|
}
|
2019-10-24 05:38:18 +02:00
|
|
|
|
2022-11-25 12:12:51 +01:00
|
|
|
.settings_textarea {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 33%);
|
|
|
|
background-color: hsl(0deg 0% 100%);
|
2022-11-25 12:12:51 +01:00
|
|
|
border-radius: 4px;
|
|
|
|
vertical-align: middle;
|
2023-03-20 22:08:47 +01:00
|
|
|
border: 1px solid hsl(0deg 0% 80%);
|
2022-11-25 12:12:51 +01:00
|
|
|
padding: 4px 6px;
|
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
box-shadow: inset 0 1px 1px hsl(0deg 0% 0% / 7.5%);
|
2023-07-21 23:08:07 +02:00
|
|
|
transition:
|
|
|
|
border linear 0.2s,
|
|
|
|
box-shadow linear 0.2s;
|
2022-11-25 12:12:51 +01:00
|
|
|
|
|
|
|
&:focus {
|
2023-03-20 22:08:47 +01:00
|
|
|
border-color: hsl(206.5deg 80% 62% / 80%);
|
2022-11-25 12:12:51 +01:00
|
|
|
outline: 0;
|
|
|
|
|
2023-07-21 23:08:07 +02:00
|
|
|
box-shadow:
|
|
|
|
inset 0 1px 1px hsl(0deg 0% 0% / 7.5%),
|
2023-03-20 22:08:47 +01:00
|
|
|
0 0 8px hsl(206.5deg 80% 62% / 60%);
|
2022-11-25 12:12:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
cursor: not-allowed;
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 93%);
|
2022-11-25 12:12:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width < $lg_min) {
|
2022-10-11 14:20:27 +02:00
|
|
|
.upload-size {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-05-12 07:25:14 +02:00
|
|
|
.user-avatar-section,
|
|
|
|
.realm-icon-section {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#settings_content .warning {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.subsection-failed-status p {
|
2021-11-05 03:33:16 +01:00
|
|
|
margin: 5px 0 0;
|
2020-05-12 07:25:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-15 22:23:01 +02:00
|
|
|
/* This value needs to match with the same in subscriptions.css, as
|
|
|
|
we have some shared styles declared there */
|
2021-02-26 06:55:12 +01:00
|
|
|
@media (width < $md_min) {
|
2022-02-13 15:37:49 +01:00
|
|
|
.profile-settings-form {
|
|
|
|
.user-avatar-section {
|
|
|
|
flex: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-24 07:46:43 +02:00
|
|
|
#settings_overlay_container {
|
2020-09-15 22:23:01 +02:00
|
|
|
/* this variable allows JavaScript to detect this media query */
|
2020-06-24 07:46:43 +02:00
|
|
|
--single-column: yes;
|
|
|
|
}
|
|
|
|
|
2020-05-12 07:25:14 +02:00
|
|
|
#settings_page {
|
|
|
|
.settings-header.mobile {
|
|
|
|
display: block;
|
2020-06-24 07:46:43 +02:00
|
|
|
|
|
|
|
&:not(.slide-left) .section {
|
2020-09-15 22:23:01 +02:00
|
|
|
/* When viewing the settings list we hide the active section. */
|
2020-06-24 07:46:43 +02:00
|
|
|
display: none;
|
|
|
|
}
|
2020-05-12 07:25:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.content-wrapper {
|
|
|
|
.settings-header {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#settings_content {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.right {
|
|
|
|
top: 47px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-14 13:28:30 +01:00
|
|
|
.sidebar-wrapper {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2020-06-24 07:46:43 +02:00
|
|
|
|
2022-03-14 13:28:30 +01:00
|
|
|
.sidebar {
|
2022-10-14 16:58:16 +02:00
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
border: none;
|
|
|
|
/* 48px is the height of settings header and 45px is the height of tab-container */
|
|
|
|
height: calc(100% - 93px);
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& li.active {
|
2020-09-15 22:23:01 +02:00
|
|
|
/* Don't highlight the active section in the settings list. */
|
2020-06-24 07:46:43 +02:00
|
|
|
background: inherit;
|
2023-03-20 22:08:47 +01:00
|
|
|
border-bottom: 1px solid hsl(0deg 0% 93%);
|
2020-06-24 07:46:43 +02:00
|
|
|
}
|
2020-05-12 07:25:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width < $sm_min) {
|
2022-10-11 14:20:27 +02:00
|
|
|
.user_row,
|
|
|
|
.settings-section {
|
|
|
|
.bot_type,
|
|
|
|
.last_active {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-12 07:25:14 +02:00
|
|
|
#pw_strength {
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
2022-08-14 02:02:16 +02:00
|
|
|
#linkifier-settings .new-linkifier-form input,
|
|
|
|
#playground-settings .new-playground-form input,
|
|
|
|
#profile-field-settings .new-profile-field-form input {
|
|
|
|
width: calc(100% - 20px) !important;
|
2020-05-12 07:25:14 +02:00
|
|
|
}
|
|
|
|
|
2022-08-14 02:02:16 +02:00
|
|
|
#linkifier-settings .new-linkifier-form label,
|
|
|
|
#playground-settings .new-playground-form label,
|
|
|
|
#profile-field-settings .new-profile-field-form label {
|
2020-05-12 07:25:14 +02:00
|
|
|
display: block;
|
|
|
|
width: 120px;
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 0;
|
2020-05-12 07:25:14 +02:00
|
|
|
padding-top: 0;
|
|
|
|
text-align: center;
|
|
|
|
margin: auto;
|
|
|
|
float: none;
|
|
|
|
}
|
2022-10-11 14:20:27 +02:00
|
|
|
|
|
|
|
#change_password_modal,
|
|
|
|
#change_email_modal {
|
|
|
|
width: 400px;
|
|
|
|
}
|
2020-05-12 07:25:14 +02:00
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width < $ml_min) {
|
2020-05-12 07:25:14 +02:00
|
|
|
#api_key_buttons,
|
|
|
|
#download_zuliprc {
|
|
|
|
flex-direction: column;
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2021-10-29 08:26:59 +02:00
|
|
|
#edit-user-form {
|
|
|
|
.custom_user_field textarea {
|
|
|
|
width: calc(100% - 25px);
|
|
|
|
}
|
2020-12-03 20:26:25 +01:00
|
|
|
}
|
2022-10-11 14:20:27 +02:00
|
|
|
|
2023-04-12 16:26:22 +02:00
|
|
|
.topic_date_updated {
|
2022-10-11 14:20:27 +02:00
|
|
|
display: none;
|
|
|
|
}
|
2022-10-11 14:20:27 +02:00
|
|
|
|
|
|
|
#change_password_modal,
|
|
|
|
#change_email_modal {
|
|
|
|
width: 300px;
|
|
|
|
}
|
2020-05-12 07:25:14 +02:00
|
|
|
}
|
|
|
|
|
2022-10-11 14:20:27 +02:00
|
|
|
@media (width < $mm_min) {
|
|
|
|
.deactivate_realm_button {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media only screen and (width < $lg_min) {
|
2020-11-01 03:44:55 +01:00
|
|
|
/* Show bot-information-box at full width on small
|
|
|
|
screen sizes. Not having this media query breaks the
|
|
|
|
information box */
|
2019-10-24 05:38:18 +02:00
|
|
|
.bots_list .bot-information-box {
|
|
|
|
width: calc(100% - 10px);
|
|
|
|
max-height: unset;
|
|
|
|
}
|
|
|
|
}
|
2021-04-14 23:33:54 +02:00
|
|
|
|
2021-06-09 10:01:20 +02:00
|
|
|
#edit-linkifier-form {
|
2021-04-14 23:33:54 +02:00
|
|
|
#edit-linkifier-pattern,
|
2022-10-05 22:52:26 +02:00
|
|
|
#edit-linkifier-url-template {
|
2021-04-14 23:33:54 +02:00
|
|
|
width: 400px;
|
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& label {
|
2021-05-12 19:30:25 +02:00
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
2021-04-14 23:33:54 +02:00
|
|
|
#edit-linkifier-pattern-status,
|
2022-10-05 22:52:26 +02:00
|
|
|
#edit-linkifier-template-status {
|
2021-04-14 23:33:54 +02:00
|
|
|
margin-top: 10px;
|
|
|
|
}
|
2023-01-10 16:04:43 +01:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& input {
|
2023-01-10 16:04:43 +01:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-04 13:06:28 +01:00
|
|
|
.settings_panel_list_header {
|
|
|
|
position: relative;
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& h3 {
|
2022-03-04 13:06:28 +01:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& input.search {
|
2022-03-04 13:06:28 +01:00
|
|
|
float: right;
|
|
|
|
font-size: 1em;
|
|
|
|
max-width: 160px;
|
|
|
|
margin-top: 12px;
|
|
|
|
}
|
|
|
|
}
|
2022-08-17 14:16:15 +02:00
|
|
|
|
|
|
|
#add-new-custom-profile-field-form,
|
|
|
|
#edit-custom-profile-field-form-modal {
|
|
|
|
.disabled_label {
|
|
|
|
cursor: default;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
}
|
2023-06-19 11:31:39 +02:00
|
|
|
|
2023-06-28 19:43:23 +02:00
|
|
|
#admin_users_table .deactivated_user,
|
|
|
|
#admin_deactivated_users_table .reactivated_user {
|
|
|
|
color: hsl(0deg 0% 64%);
|
|
|
|
|
|
|
|
& a {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-22 16:06:19 +02:00
|
|
|
.settings_url_input,
|
|
|
|
.settings_text_input {
|
2023-06-19 11:31:39 +02:00
|
|
|
padding: 4px 6px;
|
|
|
|
color: hsl(0deg 0% 33%);
|
|
|
|
border-radius: 4px;
|
|
|
|
border: 1px solid hsl(0deg 0% 80%);
|
|
|
|
box-shadow: inset 0 1px 1px hsl(0deg 0% 0% / 7.5%);
|
2023-07-21 23:08:07 +02:00
|
|
|
transition:
|
|
|
|
border linear 0.2s,
|
|
|
|
box-shadow linear 0.2s;
|
2023-06-19 11:31:39 +02:00
|
|
|
margin-bottom: 10px;
|
|
|
|
|
2023-06-22 16:06:19 +02:00
|
|
|
/* 311px + 2 * 6px (padding) + 2 * 1px (border) = 325px (min width of select
|
|
|
|
elements in settings) */
|
|
|
|
width: 311px;
|
|
|
|
|
2023-06-19 11:31:39 +02:00
|
|
|
&:focus {
|
|
|
|
border-color: hsl(206deg 80% 62% / 80%);
|
|
|
|
outline: 0;
|
2023-07-21 23:08:07 +02:00
|
|
|
box-shadow:
|
|
|
|
inset 0 1px 1px hsl(0deg 0% 0% / 7.5%),
|
2023-06-19 11:31:39 +02:00
|
|
|
0 0 8px hsl(206deg 80% 62% / 60%);
|
|
|
|
}
|
|
|
|
}
|
2023-06-27 11:14:31 +02:00
|
|
|
|
|
|
|
#generate-integration-url-modal {
|
|
|
|
.inline {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.integration-url {
|
|
|
|
font-family: "Source Code Pro", monospace;
|
|
|
|
padding: 10px;
|
|
|
|
font-size: 0.85rem;
|
|
|
|
border: 1px solid hsl(0deg 0% 87%);
|
|
|
|
border-radius: 4px;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
|
|
|
|
2023-09-28 12:35:13 +02:00
|
|
|
.integration-url-name-wrapper .dropdown-widget-button {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.integration-url-name-wrapper .dropdown_widget_value,
|
2023-06-27 11:14:31 +02:00
|
|
|
.integration-url-stream-wrapper .dropdown_widget_value {
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.integration-url-stream-wrapper .dropdown-widget-button {
|
|
|
|
width: 75%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#stream-not-specified-notice {
|
|
|
|
margin-top: -10px;
|
|
|
|
}
|
|
|
|
}
|