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. */
|
2024-07-05 11:52:05 +02:00
|
|
|
$settings_sidebar_width: 255px;
|
2022-04-26 03:14:18 +02:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
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,
|
2024-03-19 14:22:03 +01:00
|
|
|
& th.required,
|
|
|
|
td.display_in_profile_summary_cell,
|
|
|
|
td.required-cell {
|
2022-09-21 13:29:26 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-02 20:28:36 +02:00
|
|
|
#change_email_button,
|
|
|
|
#change_password {
|
2024-07-02 20:20:15 +02:00
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
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;
|
2024-09-02 22:19:43 +02:00
|
|
|
}
|
2020-06-11 05:35:33 +02:00
|
|
|
|
2024-09-02 22:19:43 +02:00
|
|
|
.play_notification_sound {
|
|
|
|
.notification-sound-icon {
|
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),
|
2024-07-15 18:32:13 +02:00
|
|
|
#attachments-settings .upload-file-name {
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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. */
|
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 {
|
2024-02-20 14:31:55 +01:00
|
|
|
padding: 0 25px 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%);
|
2024-07-02 21:40:44 +02:00
|
|
|
|
|
|
|
/* This is reset for other browsers to use Chrome's opacity. */
|
|
|
|
opacity: 0.7;
|
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;
|
|
|
|
}
|
|
|
|
|
2024-05-30 11:28:49 +02:00
|
|
|
#admin-active-users-list,
|
2020-05-08 05:40:47 +02:00
|
|
|
#admin-bot-list {
|
|
|
|
.table tr:first-of-type td {
|
|
|
|
border-top: none;
|
|
|
|
}
|
2019-08-16 10:11:59 +02:00
|
|
|
}
|
|
|
|
|
2024-07-10 16:25:16 +02:00
|
|
|
.user_role,
|
|
|
|
.profile_field_type,
|
2024-07-16 15:25:07 +02:00
|
|
|
.bot_type,
|
|
|
|
.last_active {
|
2024-07-10 16:25:16 +02:00
|
|
|
word-break: normal;
|
|
|
|
}
|
|
|
|
|
2017-03-26 22:24:35 +02:00
|
|
|
.input-group {
|
2021-11-05 03:33:16 +01:00
|
|
|
margin: 0 0 20px;
|
2016-06-26 17:21:39 +02:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2024-03-06 17:25:31 +01:00
|
|
|
.information-density-settings {
|
|
|
|
max-width: 325px;
|
|
|
|
|
|
|
|
.input-group {
|
|
|
|
display: flex;
|
|
|
|
gap: 5px;
|
|
|
|
align-items: baseline;
|
|
|
|
|
|
|
|
label {
|
|
|
|
flex: 1 0 max-content;
|
|
|
|
}
|
|
|
|
|
|
|
|
.settings_text_input {
|
|
|
|
width: 0;
|
|
|
|
flex: 0 0 8ch;
|
|
|
|
margin-left: auto;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-23 22:39:08 +01:00
|
|
|
.advanced-configurations-container {
|
|
|
|
.advance-config-title-container {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
.stream_setting_subsection_title {
|
|
|
|
margin: 4px 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toggle-advanced-configurations-icon {
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-01 07:48:57 +02:00
|
|
|
.organization-settings-parent {
|
|
|
|
padding-top: 10px;
|
2017-05-17 19:07:00 +02:00
|
|
|
}
|
|
|
|
|
2020-06-26 22:10:27 +02:00
|
|
|
#id_org_profile_preview {
|
2024-06-14 19:35:18 +02:00
|
|
|
width: max-content;
|
|
|
|
display: flex;
|
|
|
|
gap: 5px;
|
2022-08-31 07:58:56 +02:00
|
|
|
align-items: center;
|
2024-06-14 19:35:18 +02:00
|
|
|
margin-bottom: 20px;
|
2018-03-31 01:47:06 +02:00
|
|
|
}
|
|
|
|
|
2024-08-01 07:48:57 +02:00
|
|
|
.inline-block.organization-permissions-parent {
|
|
|
|
padding-top: 10px;
|
2018-03-31 01:47:06 +02:00
|
|
|
}
|
|
|
|
|
2024-04-01 19:53:36 +02:00
|
|
|
.language_selection_widget .language_selection_button {
|
|
|
|
text-decoration: none;
|
2024-07-02 20:14:01 +02:00
|
|
|
min-width: 0;
|
2017-07-05 21:54:58 +02:00
|
|
|
}
|
|
|
|
|
2024-07-23 20:13:29 +02:00
|
|
|
#user_enter_sends_label kbd,
|
|
|
|
#realm_enter_sends_label kbd {
|
2024-07-23 19:23:25 +02:00
|
|
|
/* 14px at 15px/1em */
|
|
|
|
font-size: 0.9333em;
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 500;
|
2024-10-20 07:13:15 +02:00
|
|
|
color: var(--color-kbd-enter-sends);
|
2024-07-23 19:23:25 +02:00
|
|
|
position: relative;
|
|
|
|
bottom: 1px;
|
|
|
|
margin: 0 2px;
|
|
|
|
}
|
|
|
|
|
2024-07-01 19:37:23 +02:00
|
|
|
.edit-attachment-buttons {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
height: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.edit-attachment-buttons .remove-attachment {
|
|
|
|
margin-left: 5px;
|
2017-02-24 02:31:37 +01:00
|
|
|
}
|
|
|
|
|
2024-09-30 22:16:33 +02:00
|
|
|
.edit-attachment-buttons .download-attachment {
|
2024-07-01 19:37:23 +02:00
|
|
|
display: block;
|
|
|
|
padding: 6px 9px;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: hsl(156deg 41% 40%);
|
|
|
|
}
|
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 {
|
2024-06-18 06:08:20 +02:00
|
|
|
thead {
|
|
|
|
background-color: var(--color-background-notification-table-thead);
|
|
|
|
}
|
|
|
|
|
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 {
|
2024-06-23 17:53:14 +02:00
|
|
|
min-width: 319px;
|
2023-03-31 09:18:13 +02:00
|
|
|
}
|
2023-03-31 09:58:26 +02:00
|
|
|
|
|
|
|
& textarea {
|
|
|
|
width: 311px;
|
|
|
|
}
|
2019-07-10 22:18:45 +02:00
|
|
|
}
|
|
|
|
|
2024-03-19 14:22:03 +01:00
|
|
|
.required-symbol {
|
|
|
|
color: hsl(0deg 66% 60%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.settings-profile-user-field {
|
|
|
|
margin-top: 5px;
|
|
|
|
max-width: fit-content;
|
2024-08-15 16:38:23 +02:00
|
|
|
|
|
|
|
> .settings_url_input {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2024-03-19 14:22:03 +01:00
|
|
|
}
|
|
|
|
|
2016-06-26 17:21:39 +02:00
|
|
|
.control-label-disabled {
|
2024-06-27 05:47:02 +02:00
|
|
|
color: hsl(0deg 0% 50%);
|
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 {
|
2024-07-12 05:58:42 +02:00
|
|
|
/* We want this button to have the same height as the filter
|
|
|
|
button on its right. We're overriding the default vertical
|
2024-09-11 20:46:53 +02:00
|
|
|
button padding and setting it to 0. Having the
|
2024-07-12 05:58:42 +02:00
|
|
|
height fixed will mean that the vertical whitespace will
|
|
|
|
adjust itself for different font-sizes without changing the
|
|
|
|
height.
|
|
|
|
*/
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
height: 30px;
|
|
|
|
|
|
|
|
min-width: 0;
|
|
|
|
margin-top: 12px;
|
2022-04-01 19:22:41 +02:00
|
|
|
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 {
|
|
|
|
white-space: nowrap;
|
|
|
|
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,
|
2024-09-03 12:15:25 +02:00
|
|
|
.profile_field_choices_table,
|
2023-09-21 22:52:36 +02:00
|
|
|
.admin_linkifiers_table {
|
|
|
|
.movable-row {
|
|
|
|
.move-handle {
|
|
|
|
cursor: move;
|
|
|
|
user-select: none;
|
2024-09-03 12:15:25 +02:00
|
|
|
margin-right: 5px;
|
2023-09-21 22:52:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.fa-ellipsis-v {
|
|
|
|
color: hsl(0deg 0% 75%);
|
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
2018-07-05 19:40:26 +02:00
|
|
|
}
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2024-06-12 06:02:02 +02:00
|
|
|
#organization-permissions {
|
2023-08-03 16:06:40 +02:00
|
|
|
.dropdown-widget-button {
|
2024-07-04 16:00:37 +02:00
|
|
|
min-width: 325px;
|
|
|
|
width: auto;
|
2023-08-03 16:06:40 +02:00
|
|
|
color: hsl(0deg 0% 33%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-30 11:46:38 +02:00
|
|
|
#organization-settings {
|
|
|
|
.dropdown-widget-button {
|
|
|
|
color: hsl(0deg 0% 33%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-27 11:31:15 +01:00
|
|
|
.org-permissions-form .pill-container {
|
|
|
|
/* 319px + 2 * (2px padding) + 2 * (1px border) = 325px, which is the total
|
|
|
|
width of dropdown widget buttons */
|
|
|
|
min-width: 319px;
|
|
|
|
background-color: hsl(0deg 0% 100%);
|
|
|
|
|
|
|
|
.input {
|
|
|
|
flex-grow: 1;
|
|
|
|
|
|
|
|
&:first-child:empty::before {
|
|
|
|
opacity: 0.5;
|
|
|
|
content: attr(data-placeholder);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2024-05-15 18:22:45 +02:00
|
|
|
#admin-default-channels-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;
|
|
|
|
}
|
2024-07-05 09:38:13 +02:00
|
|
|
|
|
|
|
.ind-tab {
|
|
|
|
width: auto;
|
|
|
|
min-width: 90px;
|
|
|
|
}
|
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
|
|
|
|
2024-03-20 21:29:40 +01:00
|
|
|
.bot-card-image {
|
2020-05-10 04:17:20 +02:00
|
|
|
vertical-align: top;
|
|
|
|
}
|
2016-07-08 14:59:56 +02:00
|
|
|
|
2024-03-20 21:29:40 +01:00
|
|
|
.bot-card-name {
|
2020-05-10 04:17:20 +02:00
|
|
|
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
|
|
|
|
2024-03-20 21:29:40 +01:00
|
|
|
.bot-card-regenerate-bot-api-key {
|
2020-05-10 04:17:20 +02:00
|
|
|
position: relative;
|
|
|
|
margin-left: 5px;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 67%);
|
2024-10-23 21:41:16 +02:00
|
|
|
transition: color 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 {
|
2024-09-18 21:46:37 +02:00
|
|
|
color: 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);
|
|
|
|
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
|
|
|
|
2024-03-20 21:29:40 +01:00
|
|
|
.bot-card-details {
|
2020-05-10 04:17:20 +02:00
|
|
|
display: inline-block;
|
|
|
|
width: calc(100% - 75px);
|
|
|
|
}
|
|
|
|
}
|
2020-05-10 03:41:08 +02:00
|
|
|
|
2024-03-20 21:29:40 +01:00
|
|
|
& img.bot-card-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
|
|
|
|
2024-03-20 21:29:40 +01:00
|
|
|
.bot-card-email,
|
|
|
|
.bot-card-type {
|
2020-05-10 04:17:20 +02:00
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
2016-07-08 14:59:56 +02:00
|
|
|
|
2024-03-20 21:29:40 +01:00
|
|
|
.bot-card-email .bot-card-value,
|
|
|
|
.bot-card-api-key .bot-card-api-key-value-and-button {
|
2020-05-10 04:17:20 +02:00
|
|
|
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
|
|
|
|
2024-03-20 21:29:40 +01:00
|
|
|
.bot-card-api-key .bot-card-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
|
|
|
|
2024-03-20 21:29:40 +01:00
|
|
|
.bot-card-info {
|
2020-05-10 04:17:20 +02:00
|
|
|
padding: 10px;
|
|
|
|
}
|
2017-02-23 01:58:50 +01:00
|
|
|
|
2024-03-20 21:29:40 +01:00
|
|
|
.bot-card-field {
|
2020-05-10 04:17:20 +02:00
|
|
|
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 {
|
2024-07-17 11:48:01 +02:00
|
|
|
.settings-password-div {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2021-04-05 09:53:15 +02:00
|
|
|
|
2024-07-17 11:48:01 +02:00
|
|
|
.modal-field-label {
|
|
|
|
/* Keep the label to its own
|
|
|
|
line in the wrapping flexbox. */
|
|
|
|
flex: 0 0 100%;
|
|
|
|
}
|
|
|
|
|
2024-07-17 12:41:48 +02:00
|
|
|
.password-input-row {
|
2024-07-17 11:48:01 +02:00
|
|
|
display: flex;
|
|
|
|
margin-bottom: 10px;
|
2024-07-17 12:59:02 +02:00
|
|
|
/* This helps us in making sure that the
|
|
|
|
password_visibility_toggle does not look
|
|
|
|
misaligned in small screens where that component
|
|
|
|
increases in height on small screens. */
|
|
|
|
max-height: 2em;
|
2024-07-17 11:48:01 +02:00
|
|
|
|
2024-07-17 12:41:48 +02:00
|
|
|
.modal_password_input {
|
|
|
|
/* The usual width of input is 206px, but we reduce
|
|
|
|
it by 30px to make way for the padding. */
|
|
|
|
width: 176px;
|
|
|
|
padding-right: 30px;
|
|
|
|
/* Override the original 10px value so that we can
|
|
|
|
set the margin-bottom in the parent div instead. */
|
|
|
|
margin-bottom: 0;
|
2021-04-05 09:53:15 +02:00
|
|
|
}
|
2024-07-17 12:28:02 +02:00
|
|
|
|
2024-07-17 12:41:48 +02:00
|
|
|
.password_visibility_toggle {
|
|
|
|
/* We're going to use flexbox, not
|
|
|
|
positioning, to get the clear button
|
|
|
|
over top of the input. This -2em
|
|
|
|
margin accomplishes that, in tandem
|
|
|
|
with the 2em width of this element,
|
|
|
|
which is shared with the ending
|
|
|
|
anchor element in left sidebar header
|
|
|
|
rows. We're using em instead of pixels
|
|
|
|
so the whitespace between the input box
|
|
|
|
and the icon doesn't decrease when the
|
|
|
|
icon's font-size increases when switching
|
|
|
|
from 14px info density to 16px info density
|
|
|
|
mode. */
|
|
|
|
width: 2em;
|
|
|
|
margin-left: -2em;
|
|
|
|
|
|
|
|
/* Make the button itself a flex container,
|
|
|
|
so we can perfectly center the X icon. */
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
opacity: 0.6;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.settings-forgot-password {
|
|
|
|
/* Make the link itself a flex container,
|
|
|
|
so we can perfectly center the text
|
|
|
|
in relation to the input box. */
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
2024-07-17 12:28:02 +02:00
|
|
|
}
|
2021-04-05 09:53:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2024-07-26 01:09:14 +02:00
|
|
|
&:checked + .preferences-radio-choice-text {
|
2022-11-22 11:22:27 +01:00
|
|
|
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);
|
|
|
|
|
2024-11-12 21:12:46 +01:00
|
|
|
.preferences-radio-choice-label {
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-right: 6px;
|
|
|
|
|
|
|
|
.right {
|
|
|
|
margin-left: unset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-12 22:41:06 +02:00
|
|
|
.preview {
|
|
|
|
/* 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);
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
.user-name-and-status-text {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2024-11-12 21:12:46 +01:00
|
|
|
.user-name-and-status-emoji {
|
|
|
|
.user-name {
|
|
|
|
max-width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-12 22:41:06 +02:00
|
|
|
.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 {
|
2024-10-09 20:08:31 +02:00
|
|
|
font-size: 1em;
|
2020-05-10 08:11:41 +02:00
|
|
|
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;
|
2024-10-07 22:24:04 +02:00
|
|
|
background-color: var(--color-background-modal-bar);
|
|
|
|
border-bottom: 1px solid var(--color-border-modal-bar);
|
2024-07-05 11:52:05 +02:00
|
|
|
|
|
|
|
@media (width >= $md_min) {
|
|
|
|
.tab-switcher {
|
|
|
|
position: absolute;
|
|
|
|
display: flex;
|
|
|
|
left: 10px;
|
|
|
|
z-index: 1;
|
|
|
|
|
|
|
|
.ind-tab {
|
|
|
|
width: auto;
|
|
|
|
min-width: 95px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (width < $md_min) {
|
|
|
|
.tab-switcher {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
.ind-tab {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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;
|
2024-10-15 23:33:26 +02:00
|
|
|
border-right: 1px solid var(--color-border-modal);
|
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
|
|
|
|
2024-10-07 22:24:04 +02:00
|
|
|
background-color: var(--color-background-modal-bar);
|
|
|
|
border-bottom: 1px solid var(--color-border-modal-bar);
|
2020-05-10 08:11:41 +02:00
|
|
|
}
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2024-08-30 09:12:42 +02:00
|
|
|
.sidebar-item {
|
2024-06-11 20:50:29 +02:00
|
|
|
display: grid;
|
|
|
|
/* 3.5714em is 50px at 14px/1em -- the legacy height of these rows. */
|
|
|
|
grid-template:
|
|
|
|
"starting-anchor-element row-content ending-anchor-element" 3.5714em / 40px minmax(
|
|
|
|
0,
|
|
|
|
1fr
|
|
|
|
)
|
|
|
|
minmax(34px, auto);
|
|
|
|
align-items: center;
|
2020-05-10 08:11:41 +02:00
|
|
|
outline: none;
|
|
|
|
cursor: pointer;
|
2024-06-10 19:02:06 +02:00
|
|
|
transition:
|
|
|
|
background-color 0.2s ease,
|
|
|
|
border-bottom 0.2s ease;
|
2024-10-15 23:33:26 +02:00
|
|
|
border-bottom: 1px solid var(--color-border-modal);
|
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 {
|
2024-10-07 22:24:04 +02:00
|
|
|
/* TODO: Check with Vlad about highlight
|
|
|
|
colors such as this. */
|
|
|
|
background-color: hsl(0deg 0% 98%);
|
2020-05-10 08:11:41 +02:00
|
|
|
}
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2024-09-03 19:47:47 +02:00
|
|
|
.sidebar-item-icon {
|
2020-05-10 08:11:41 +02:00
|
|
|
font-size: 1.4em;
|
2024-06-11 20:50:29 +02:00
|
|
|
text-align: center;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 53%);
|
2024-06-11 20:50:29 +02:00
|
|
|
}
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2024-06-11 20:50:29 +02:00
|
|
|
.text {
|
|
|
|
/* Hyphenate for internationalization */
|
|
|
|
hyphens: auto;
|
2020-05-10 08:11:41 +02:00
|
|
|
}
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2020-05-10 08:11:41 +02:00
|
|
|
.locked {
|
|
|
|
font-size: 1em;
|
2024-06-11 20:50:29 +02:00
|
|
|
text-align: center;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 62%);
|
2020-05-10 08:11:41 +02:00
|
|
|
}
|
|
|
|
}
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2024-09-02 11:22:01 +02:00
|
|
|
.collapse-settings-button,
|
|
|
|
.collapse-settings-button > #toggle_collapse_chevron {
|
|
|
|
color: var(--color-text-url);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
color: var(--color-text-url-hover);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-10 08:11:41 +02:00
|
|
|
.org-settings-list {
|
|
|
|
display: none;
|
|
|
|
}
|
2020-05-10 08:16:36 +02:00
|
|
|
|
2024-06-11 20:50:29 +02:00
|
|
|
.hide-org-settings {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-05-10 08:11:41 +02:00
|
|
|
.normal-settings-list,
|
|
|
|
.org-settings-list {
|
|
|
|
position: relative;
|
2024-08-30 12:50:29 +02:00
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 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;
|
2024-10-07 22:24:04 +02:00
|
|
|
border-bottom: 1px solid var(--color-border-modal-bar);
|
|
|
|
background-color: var(--color-background-modal-bar);
|
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:
|
2024-10-23 21:41:16 +02:00
|
|
|
border-color linear 0.2s,
|
2023-07-21 23:08:07 +02:00
|
|
|
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 {
|
2024-03-19 21:35:28 +01:00
|
|
|
margin-bottom: var(--margin-bottom-field-description);
|
2023-09-19 18:10:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
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;
|
|
|
|
}
|
2024-08-15 16:38:27 +02:00
|
|
|
|
|
|
|
& input[disabled].datepicker {
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
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
|
|
|
|
2024-09-03 09:23:41 +02:00
|
|
|
.show-user-profile-icon {
|
|
|
|
padding-left: 2px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2020-05-10 08:16:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-31 09:58:26 +02:00
|
|
|
#edit-user-form {
|
|
|
|
.person_picker {
|
|
|
|
min-width: 206px;
|
|
|
|
}
|
|
|
|
|
|
|
|
& 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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2024-03-29 07:54:50 +01:00
|
|
|
.settings-field-label {
|
2024-03-19 21:35:28 +01:00
|
|
|
margin-bottom: var(--margin-bottom-field-description);
|
2018-01-20 08:31:29 +01:00
|
|
|
}
|
|
|
|
|
2024-03-20 14:32:52 +01:00
|
|
|
.settings-profile-user-field-hint {
|
|
|
|
color: var(--color-text-settings-field-hint);
|
2024-03-20 15:33:26 +01:00
|
|
|
/* We effectively eliminate the margin-bottom on
|
|
|
|
.settings-field-label by pulling .field-hint
|
|
|
|
up a corresponding negative value. This cinches
|
|
|
|
things up a little tighter, given the generous
|
|
|
|
line-height (20px) on <label> elements, though
|
|
|
|
note well that that comes care of Bootstrap. */
|
|
|
|
margin-top: calc(var(--margin-bottom-field-description) * -1.5);
|
|
|
|
/* Maintain the same margin-bottom value as appears
|
|
|
|
with .settings-field-label to display text-input
|
|
|
|
combinations uniformly throughout the settings UI. */
|
|
|
|
margin-bottom: var(--margin-bottom-field-description);
|
2024-03-20 14:32:52 +01:00
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
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;
|
2024-10-04 16:17:38 +02:00
|
|
|
display: block;
|
|
|
|
|
|
|
|
.upgrade-tip {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tip::before {
|
|
|
|
content: "\f135";
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
2019-01-17 12:05:09 +01:00
|
|
|
}
|
2019-05-13 00:43:21 +02:00
|
|
|
|
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:
|
2024-10-23 21:41:16 +02:00
|
|
|
border-color linear 0.2s,
|
2023-07-21 23:08:07 +02:00
|
|
|
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) {
|
2024-06-14 17:32:19 +02:00
|
|
|
.settings-email-column {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-10 13:25:40 +02:00
|
|
|
@media (width < 830px) and (width > $md_min) {
|
2024-07-15 18:32:13 +02:00
|
|
|
#attachments-settings .upload-file-name {
|
2024-07-10 13:25:40 +02:00
|
|
|
min-width: 10em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#user_topics_table {
|
|
|
|
.user-topic-stream {
|
|
|
|
min-width: 6em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-topic {
|
|
|
|
min-width: 10em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-15 19:36:29 +02:00
|
|
|
#admin-user-list,
|
|
|
|
#admin-bot-list {
|
|
|
|
.user_row {
|
|
|
|
.user_name,
|
|
|
|
.email {
|
|
|
|
min-width: 8em;
|
|
|
|
}
|
2024-07-10 13:25:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.admin_profile_fields_table {
|
|
|
|
.profile_field_name,
|
|
|
|
.profile_field_hint {
|
|
|
|
min-width: 8em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width < $sm_min) {
|
2024-07-15 19:36:29 +02:00
|
|
|
#admin-user-list,
|
|
|
|
#admin-bot-list {
|
|
|
|
.user_row,
|
|
|
|
.table-sticky-headers {
|
|
|
|
.bot_type,
|
|
|
|
.last_active {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user_name,
|
|
|
|
.email {
|
|
|
|
min-width: 8em;
|
|
|
|
}
|
2022-10-11 14:20:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
2024-07-10 13:25:40 +02:00
|
|
|
|
2024-07-15 18:32:13 +02:00
|
|
|
#attachments-settings .upload-file-name {
|
2024-07-10 13:25:40 +02:00
|
|
|
min-width: 10em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#user_topics_table {
|
|
|
|
.user-topic {
|
|
|
|
min-width: 10em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-topic-stream {
|
|
|
|
min-width: 6em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.admin_profile_fields_table {
|
|
|
|
.profile_field_name,
|
|
|
|
.profile_field_hint {
|
|
|
|
min-width: 8em;
|
|
|
|
}
|
|
|
|
}
|
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);
|
|
|
|
}
|
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
|
2024-04-05 19:11:54 +02:00
|
|
|
.user_filters {
|
|
|
|
display: flex;
|
|
|
|
float: right;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
& .dropdown-widget-button {
|
|
|
|
height: 30px;
|
|
|
|
max-width: 160px;
|
|
|
|
margin-right: 12px;
|
|
|
|
margin-top: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& input.search {
|
2024-04-05 19:11:54 +02:00
|
|
|
/* Without explicitly mentioning the height, it used be just a little
|
|
|
|
bit short of 20px, since we need to maintain the same height with
|
|
|
|
.dropdown-widget-button, we need to explicitly set the height here.
|
|
|
|
We could set the height inside .user_filters but that would make
|
|
|
|
the height a tiny bit inconsistent on pages without .user_filters. */
|
|
|
|
height: 20px;
|
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;
|
|
|
|
}
|
2024-08-15 16:38:27 +02:00
|
|
|
|
|
|
|
/* Needed for settings_checkbox partial. */
|
|
|
|
.inline {
|
|
|
|
display: inline;
|
|
|
|
}
|
2022-08-17 14:16:15 +02:00
|
|
|
}
|
2023-06-19 11:31:39 +02:00
|
|
|
|
2023-06-28 19:43:23 +02:00
|
|
|
#admin_users_table .deactivated_user,
|
2024-07-10 11:12:55 +02:00
|
|
|
#admin_deactivated_users_table .active-user {
|
2023-06-28 19:43:23 +02:00
|
|
|
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:
|
2024-10-23 21:41:16 +02:00
|
|
|
border-color linear 0.2s,
|
2023-07-21 23:08:07 +02:00
|
|
|
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
|
|
|
|
2024-03-19 14:22:03 +01:00
|
|
|
.empty-required-field {
|
|
|
|
border: 1px solid hsl(3deg 57% 33%);
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
|
|
.settings_url_input,
|
|
|
|
.settings_text_input,
|
|
|
|
.settings_textarea,
|
|
|
|
.pill-container {
|
|
|
|
border-color: hsl(0deg 0% 100%);
|
2024-03-25 11:21:25 +01:00
|
|
|
margin-bottom: 0;
|
2024-03-19 14:22:03 +01:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
border-color: hsl(206deg 80% 62% / 80%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2024-05-30 11:28:49 +02:00
|
|
|
|
|
|
|
.tab-switcher.org-user-settings-switcher {
|
|
|
|
margin-bottom: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#admin-user-list .tab-switcher .ind-tab {
|
|
|
|
width: 110px;
|
|
|
|
}
|
2024-10-10 14:38:44 +02:00
|
|
|
|
|
|
|
#data-exports .tab-switcher .ind-tab {
|
|
|
|
width: 160px;
|
|
|
|
}
|