2021-08-10 11:08:42 +02:00
|
|
|
@import "flatpickr/dist/themes/dark.css";
|
|
|
|
|
2021-11-26 09:02:57 +01:00
|
|
|
body.dark-theme {
|
2021-08-10 11:08:42 +02:00
|
|
|
/* the following block(s) are generated by the import statements.
|
|
|
|
See postcss.config.js for details.
|
|
|
|
*/
|
2021-11-26 11:00:13 +01:00
|
|
|
@extend %dark-theme-block;
|
2021-08-10 11:08:42 +02:00
|
|
|
|
2017-12-07 05:33:16 +01:00
|
|
|
background-color: hsl(212, 28%, 18%);
|
|
|
|
color: hsl(236, 33%, 90%);
|
2017-11-14 18:50:06 +01:00
|
|
|
|
2021-05-08 11:36:52 +02:00
|
|
|
.placeholder {
|
|
|
|
color: hsl(0, 0%, 55%);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
textarea::placeholder,
|
|
|
|
input::placeholder {
|
|
|
|
@extend .placeholder;
|
|
|
|
}
|
|
|
|
|
2019-03-07 18:09:20 +01:00
|
|
|
a:hover {
|
|
|
|
color: hsl(200, 79%, 66%);
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.filters a:hover {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
2021-12-05 08:26:24 +01:00
|
|
|
/************************* MODAL DARK THEME *******************/
|
|
|
|
.dialog_cancel_button {
|
|
|
|
background-color: hsl(211, 29%, 14%);
|
|
|
|
color: hsl(0, 0%, 100%);
|
|
|
|
border: 1px solid hsla(0, 0%, 0%, 0.6);
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal__btn:disabled {
|
|
|
|
opacity: 1;
|
|
|
|
background-color: hsla(0, 0%, 83%, 0.5);
|
|
|
|
}
|
|
|
|
|
2021-12-05 08:29:52 +01:00
|
|
|
.modal-bg,
|
|
|
|
.modal__container {
|
|
|
|
background-color: hsl(212, 28%, 18%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal__close {
|
|
|
|
&::before {
|
|
|
|
color: hsl(236, 33%, 90%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: hsla(0, 0%, 91%, 0.1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-footer {
|
|
|
|
box-shadow: inset 0 1px 0 hsla(0, 0%, 0%, 0.2);
|
|
|
|
}
|
|
|
|
|
|
|
|
#invite_user_form .modal-footer {
|
|
|
|
/* no transparency prevents overlap issues */
|
|
|
|
background-color: hsl(211, 28%, 14%);
|
|
|
|
}
|
2021-12-05 08:26:24 +01:00
|
|
|
|
2021-12-10 09:07:42 +01:00
|
|
|
.enter_sends,
|
|
|
|
.enter_sends_choices {
|
2021-12-02 05:59:26 +01:00
|
|
|
color: hsl(236, 33%, 90%);
|
2021-12-10 09:07:42 +01:00
|
|
|
|
|
|
|
kbd {
|
|
|
|
background-color: hsl(211, 29%, 14%);
|
|
|
|
border-color: hsl(211, 29%, 14%);
|
|
|
|
box-shadow: inset 0 -1px 0 hsl(210, 5%, 34%, 0.2);
|
|
|
|
text-shadow: none;
|
|
|
|
color: hsl(236, 33%, 90%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.enter_sends_minor {
|
|
|
|
color: hsl(0, 0%, 80%);
|
|
|
|
}
|
2021-12-02 05:59:26 +01:00
|
|
|
}
|
|
|
|
|
2021-02-23 06:23:24 +01:00
|
|
|
table.table-striped thead.table-sticky-headers th {
|
|
|
|
background-color: hsl(0, 0%, 0%);
|
|
|
|
|
2022-06-20 17:22:48 +02:00
|
|
|
&[data-sort]:hover {
|
|
|
|
background-color: hsl(211, 29%, 14%) !important;
|
2021-02-23 06:23:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-26 14:53:41 +01:00
|
|
|
/* Extend the 'light-border' TippyJS theme, which is intended for
|
|
|
|
popovers/menus that should use default background colors, to use
|
2021-11-26 10:31:52 +01:00
|
|
|
our dark theme colors in Zulip's dark theme.
|
2021-02-26 14:53:41 +01:00
|
|
|
*/
|
|
|
|
.tippy-box[data-theme~="light-border"] {
|
|
|
|
.tippy-content a {
|
|
|
|
color: hsl(236, 33%, 90%);
|
2021-11-23 19:01:36 +01:00
|
|
|
|
|
|
|
&.compose_control_button:hover {
|
|
|
|
color: hsl(200, 79%, 66%);
|
|
|
|
}
|
2021-02-26 14:53:41 +01:00
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2021-02-26 14:53:41 +01:00
|
|
|
&[data-placement^="top"] {
|
|
|
|
> .tippy-arrow {
|
|
|
|
&::before {
|
|
|
|
border-top-color: hsl(235, 18%, 7%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2021-02-26 14:53:41 +01:00
|
|
|
&[data-placement^="bottom"] {
|
|
|
|
> .tippy-arrow {
|
|
|
|
&::before {
|
|
|
|
border-bottom-color: hsl(235, 18%, 7%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2021-02-26 14:53:41 +01:00
|
|
|
&[data-placement^="left"] {
|
|
|
|
> .tippy-arrow {
|
|
|
|
&::before {
|
|
|
|
border-left-color: hsl(235, 18%, 7%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2021-02-26 14:53:41 +01:00
|
|
|
&[data-placement^="right"] {
|
|
|
|
> .tippy-arrow {
|
|
|
|
&::before {
|
|
|
|
border-right-color: hsl(235, 18%, 7%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.app-main,
|
|
|
|
.header-main,
|
2020-07-08 23:44:01 +02:00
|
|
|
#message_view_header_underpadding,
|
2018-08-01 02:40:49 +02:00
|
|
|
.floating_recipient .message-header-wrapper,
|
|
|
|
.column-middle,
|
|
|
|
#compose,
|
|
|
|
.column-left .left-sidebar,
|
|
|
|
.column-right .right-sidebar,
|
2022-08-31 19:21:19 +02:00
|
|
|
#groups_overlay .right,
|
2018-08-01 02:40:49 +02:00
|
|
|
#subscription_overlay .right,
|
|
|
|
#settings_page .right {
|
|
|
|
background-color: hsl(212, 28%, 18%);
|
|
|
|
}
|
2017-12-06 03:37:16 +01:00
|
|
|
|
2022-02-14 17:43:32 +01:00
|
|
|
#scroll-to-bottom-button-container {
|
|
|
|
background: transparent;
|
|
|
|
|
|
|
|
span {
|
|
|
|
color: hsl(0, 0%, 27%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-07 01:21:05 +02:00
|
|
|
.compose-send-status-close {
|
|
|
|
color: hsl(0, 0%, 100%);
|
2020-08-04 23:58:56 +02:00
|
|
|
opacity: 1;
|
2020-04-27 22:02:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.compose-send-status-close:hover {
|
2020-08-04 23:58:56 +02:00
|
|
|
opacity: 0.4;
|
2020-04-07 01:21:05 +02:00
|
|
|
}
|
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.message_embed .data-container::after {
|
2019-06-23 15:45:52 +02:00
|
|
|
background: linear-gradient(0deg, hsl(212, 28%, 18%), transparent 100%);
|
2018-08-01 02:40:49 +02:00
|
|
|
}
|
2018-01-09 23:19:58 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.column-left .left-sidebar,
|
2020-04-20 22:41:03 +02:00
|
|
|
.stream_name_search_section,
|
2022-08-21 16:43:08 +02:00
|
|
|
.group_name_search_section,
|
2018-08-01 02:40:49 +02:00
|
|
|
.column-right .right-sidebar {
|
|
|
|
border-color: hsla(0, 0%, 0%, 0.2);
|
|
|
|
}
|
2017-12-06 03:37:16 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.dark .message_label_clickable.stream_label,
|
|
|
|
.dark .stream_label,
|
|
|
|
.stream_label {
|
|
|
|
color: hsl(212, 28%, 18%);
|
|
|
|
}
|
2017-11-14 18:50:06 +01:00
|
|
|
|
2020-08-04 23:58:56 +02:00
|
|
|
.new-style label.checkbox input[type="checkbox"] ~ span {
|
2018-08-01 02:40:49 +02:00
|
|
|
border-color: hsla(0, 0%, 100%, 0.4);
|
|
|
|
}
|
2017-11-16 01:43:43 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.streams_popover .sp-container {
|
2018-10-08 22:31:26 +02:00
|
|
|
background-color: transparent;
|
2020-05-01 03:03:43 +02:00
|
|
|
|
|
|
|
button {
|
|
|
|
background-color: hsl(208, 35%, 11%);
|
|
|
|
border: 1px solid hsl(210, 36%, 4%);
|
|
|
|
color: hsl(236, 31%, 90%);
|
|
|
|
}
|
2020-05-01 03:34:10 +02:00
|
|
|
|
|
|
|
.sp-picker-container {
|
|
|
|
border-left: solid 1px hsl(210, 36%, 4%);
|
|
|
|
}
|
2018-08-01 02:40:49 +02:00
|
|
|
}
|
2017-11-16 01:43:43 +01:00
|
|
|
|
2021-11-26 08:32:40 +01:00
|
|
|
/* this one is because in the app we have blue and in dark-theme it should be white. */
|
2018-08-01 02:40:49 +02:00
|
|
|
.popover a {
|
|
|
|
color: inherit;
|
|
|
|
}
|
2017-11-16 01:43:43 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.dark_background a,
|
|
|
|
a.dark_background:hover,
|
|
|
|
.dark_background,
|
|
|
|
.message_reactions .message_reaction_count,
|
|
|
|
.message_reactions .reaction_button i,
|
|
|
|
.message_reactions:hover .message_reaction + .reaction_button {
|
|
|
|
color: inherit !important;
|
|
|
|
}
|
2017-11-14 18:50:06 +01:00
|
|
|
|
2019-02-15 16:00:58 +01:00
|
|
|
/* It's a little annoying that we need to specify the different
|
|
|
|
background colors for these, but this alert feature can't use a
|
|
|
|
transparent background without creating other problems */
|
|
|
|
.alert-msg {
|
|
|
|
background-color: hsl(212, 28%, 18%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.private-message .alert-msg {
|
|
|
|
background-color: hsl(208, 17%, 29%);
|
|
|
|
}
|
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
/* do not turn the .message_header .stream_label text dark on hover because they're
|
2021-07-13 08:15:05 +02:00
|
|
|
on a dark background, and don't change the dark labels dark either. */
|
2020-08-04 23:58:56 +02:00
|
|
|
.message_header:not(.dark_background)
|
|
|
|
a.stream_label:not(.dark_background):hover {
|
2020-02-03 17:01:11 +01:00
|
|
|
color: hsl(212, 28%, 18%);
|
2018-08-01 02:40:49 +02:00
|
|
|
}
|
2018-01-30 06:15:18 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
/* these are converting grey things to "new grey" */
|
2020-10-30 00:26:54 +01:00
|
|
|
:disabled,
|
2021-12-07 23:32:10 +01:00
|
|
|
input:not([type="radio"]):read-only,
|
2020-10-30 00:38:24 +01:00
|
|
|
textarea:read-only,
|
2018-08-01 02:40:49 +02:00
|
|
|
.sidebar-title,
|
|
|
|
.recipient_row_date {
|
|
|
|
color: inherit;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2018-04-19 05:10:49 +02:00
|
|
|
|
2020-05-06 15:45:52 +02:00
|
|
|
.rendered_markdown button,
|
2019-06-11 05:38:39 +02:00
|
|
|
.new-style .button {
|
|
|
|
background-color: hsla(0, 0%, 0%, 0.2);
|
2019-07-19 09:36:10 +02:00
|
|
|
|
2022-07-06 04:54:06 +02:00
|
|
|
&:not(.sea-green, .btn-danger, .btn-warning, .btn-link, .poll-vote) {
|
2019-07-19 09:36:10 +02:00
|
|
|
border-color: hsla(0, 0%, 0%, 0.6);
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.btn-link {
|
|
|
|
border-color: hsla(0, 0%, 0%, 0.6);
|
|
|
|
color: hsl(200, 79%, 66%);
|
|
|
|
}
|
2019-06-11 05:38:39 +02:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background-color: hsla(0, 0%, 0%, 0.15);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-08 16:33:10 +01:00
|
|
|
.rendered_markdown .message_inline_image {
|
|
|
|
background: hsla(0, 0%, 100%, 0.03);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: hsla(0, 0%, 100%, 0.15);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
input[type="text"],
|
|
|
|
input[type="email"],
|
|
|
|
input[type="password"],
|
|
|
|
input[type="number"],
|
|
|
|
input[type="url"],
|
|
|
|
input[type="date"],
|
|
|
|
textarea,
|
|
|
|
.new-style .tab-switcher .ind-tab:not(.selected),
|
|
|
|
select,
|
2021-06-28 10:02:45 +02:00
|
|
|
.pill-container,
|
|
|
|
.user_status_content_wrapper {
|
2018-08-01 02:40:49 +02:00
|
|
|
background-color: hsla(0, 0%, 0%, 0.2);
|
|
|
|
border-color: hsla(0, 0%, 0%, 0.6);
|
|
|
|
color: inherit;
|
|
|
|
}
|
2018-03-06 15:07:55 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
select option {
|
|
|
|
background-color: hsl(212, 28%, 18%);
|
|
|
|
color: hsl(236, 33%, 90%);
|
|
|
|
}
|
2018-03-06 15:07:55 +01:00
|
|
|
|
2022-08-29 13:21:09 +02:00
|
|
|
.unread_count {
|
2018-08-01 02:40:49 +02:00
|
|
|
background-color: hsla(105, 2%, 50%, 0.5);
|
|
|
|
}
|
2017-11-30 22:44:45 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.pill-container {
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
|
|
|
}
|
2017-11-14 18:50:06 +01:00
|
|
|
|
2021-07-23 00:27:09 +02:00
|
|
|
.deactivated-pill {
|
|
|
|
background-color: hsl(0, 86%, 14%) !important;
|
|
|
|
}
|
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
#search_arrows .pill,
|
|
|
|
.pm_recipient .pill-container .pill {
|
|
|
|
color: inherit;
|
2020-08-04 23:58:56 +02:00
|
|
|
border: 1px solid hsla(0, 0%, 0%, 0.5);
|
2018-10-08 22:31:26 +02:00
|
|
|
background-color: hsla(0, 0%, 0%, 0.25);
|
2018-08-01 02:40:49 +02:00
|
|
|
font-weight: 600;
|
|
|
|
}
|
2017-11-14 18:50:06 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
#search_arrows .pill:focus,
|
|
|
|
.pm_recipient .pill-container .pill:focus {
|
2018-09-27 21:57:07 +02:00
|
|
|
color: hsl(0, 0%, 100%);
|
2018-08-01 02:40:49 +02:00
|
|
|
border: 1px solid hsla(176, 78%, 28%, 0.6);
|
2018-10-08 22:31:26 +02:00
|
|
|
background-color: hsla(176, 49%, 42%, 0.4);
|
2018-08-01 02:40:49 +02:00
|
|
|
}
|
2017-11-14 18:50:06 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.new-style .button.no-style {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
2017-11-16 01:43:43 +01:00
|
|
|
|
2021-10-06 13:27:54 +02:00
|
|
|
.create_stream_plus_button {
|
|
|
|
color: hsl(0, 0%, 100%);
|
|
|
|
background-color: hsla(0, 0%, 0%, 0.2);
|
|
|
|
border-color: hsla(0, 0%, 0%, 0.6);
|
|
|
|
}
|
|
|
|
|
2020-08-04 23:58:56 +02:00
|
|
|
.emoji-info-popover
|
|
|
|
.emoji-popover
|
|
|
|
.emoji-popover-category-tabs
|
|
|
|
.emoji-popover-tab-item.active {
|
2019-02-19 04:49:17 +01:00
|
|
|
background-color: hsla(0, 0%, 0%, 0.5);
|
|
|
|
}
|
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.new-style .tab-switcher .ind-tab.selected,
|
|
|
|
div.message_content thead,
|
|
|
|
.table-striped thead th,
|
2019-02-18 23:20:42 +01:00
|
|
|
.emoji-popover .reaction.reacted,
|
|
|
|
.message_reactions .message_reaction.reacted {
|
2018-08-01 02:40:49 +02:00
|
|
|
background-color: hsla(0, 0%, 0%, 0.5);
|
|
|
|
border-color: hsla(0, 0%, 0%, 0.9);
|
|
|
|
}
|
2017-11-14 18:50:06 +01:00
|
|
|
|
2022-01-26 13:11:47 +01:00
|
|
|
.ind-tab.disabled {
|
|
|
|
color: hsla(0, 0%, 42%, 0.9) !important;
|
|
|
|
}
|
|
|
|
|
2019-02-18 23:20:42 +01:00
|
|
|
.message_reactions:hover .message_reaction + .reaction_button,
|
2018-08-01 02:40:49 +02:00
|
|
|
.message_reactions .message_reaction {
|
2019-02-18 23:20:42 +01:00
|
|
|
background-color: transparent;
|
|
|
|
border-color: hsla(0, 0%, 0%, 0.8);
|
2018-08-01 02:40:49 +02:00
|
|
|
color: inherit;
|
2019-02-18 23:20:42 +01:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
border-color: hsl(236, 33%, 90%);
|
|
|
|
}
|
2018-08-01 02:40:49 +02:00
|
|
|
}
|
2017-11-14 18:50:06 +01:00
|
|
|
|
2021-06-15 21:30:10 +02:00
|
|
|
/* Disable blue link styling for the message timestamp link. */
|
|
|
|
.message_time {
|
|
|
|
color: hsl(236, 33%, 90%);
|
|
|
|
}
|
|
|
|
|
2019-02-19 04:49:17 +01:00
|
|
|
.emoji-popover .reaction:focus {
|
|
|
|
box-shadow: 0 0 1px hsl(0, 0%, 98%);
|
|
|
|
}
|
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
input[type="text"]:focus,
|
|
|
|
input[type="email"]:focus,
|
|
|
|
input[type="number"]:focus,
|
|
|
|
textarea:focus,
|
|
|
|
textarea.new_message_textarea:focus,
|
|
|
|
.compose_table .recipient_box:focus {
|
|
|
|
border-color: hsla(0, 0%, 0%, 0.9);
|
|
|
|
}
|
2017-11-22 21:34:04 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.message-header-contents,
|
2020-02-03 17:01:11 +01:00
|
|
|
.message_header_private_message .message-header-contents {
|
2018-10-08 22:31:26 +02:00
|
|
|
background-color: hsla(0, 0%, 0%, 0.2);
|
2018-08-01 02:40:49 +02:00
|
|
|
border-color: transparent;
|
|
|
|
}
|
2017-11-14 18:50:06 +01:00
|
|
|
|
2021-11-13 05:44:28 +01:00
|
|
|
.compose_control_buttons_container .divider {
|
|
|
|
color: hsla(236, 33%, 90%, 0.5);
|
|
|
|
}
|
|
|
|
|
2021-11-26 10:58:51 +01:00
|
|
|
/* Not that .message_row (below) needs to be more contrast on dark theme */
|
2021-06-10 16:52:29 +02:00
|
|
|
#compose-content,
|
2018-08-01 02:40:49 +02:00
|
|
|
.message_list .recipient_row,
|
|
|
|
.message_row,
|
|
|
|
.draft-row .draft-info-box,
|
2019-02-05 14:44:16 +01:00
|
|
|
.preview_message_area {
|
2018-08-01 02:40:49 +02:00
|
|
|
border-color: hsla(0, 0%, 0%, 0.2);
|
|
|
|
}
|
2017-11-14 18:50:06 +01:00
|
|
|
|
2020-02-21 20:02:49 +01:00
|
|
|
.top-navbar-border {
|
2018-08-01 02:40:49 +02:00
|
|
|
border-color: hsla(0, 0%, 0%, 0.6);
|
|
|
|
}
|
2020-05-12 09:14:14 +02:00
|
|
|
|
2020-07-08 23:44:01 +02:00
|
|
|
#message_view_header .sub_count {
|
2020-05-12 09:14:14 +02:00
|
|
|
&::before,
|
|
|
|
&::after {
|
|
|
|
color: hsla(0, 0%, 100%, 0.5);
|
|
|
|
}
|
2020-02-03 17:01:11 +01:00
|
|
|
}
|
|
|
|
|
2020-07-08 23:44:01 +02:00
|
|
|
#message_view_header .stream {
|
2020-06-12 17:21:30 +02:00
|
|
|
color: hsl(236, 33%, 90%);
|
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2020-07-08 23:44:01 +02:00
|
|
|
#message_view_header .sub_count,
|
|
|
|
#message_view_header .narrow_description {
|
2020-06-05 15:11:49 +02:00
|
|
|
color: hsla(0, 0%, 90%, 1);
|
2020-02-03 17:01:11 +01:00
|
|
|
}
|
2018-02-02 03:17:59 +01:00
|
|
|
|
2021-04-14 17:18:29 +02:00
|
|
|
div.overlay,
|
2020-08-04 23:58:56 +02:00
|
|
|
#subscription_overlay
|
|
|
|
#stream-creation
|
|
|
|
#stream_creation_form
|
|
|
|
#stream_creating_indicator:not(:empty),
|
2022-08-21 17:59:39 +02:00
|
|
|
#groups_overlay
|
|
|
|
#user-group-creation
|
|
|
|
#user_group_creation_form
|
|
|
|
#user_group_creating_indicator:not(:empty),
|
2020-08-04 23:58:56 +02:00
|
|
|
.emoji-info-popover
|
|
|
|
.emoji-popover
|
|
|
|
.emoji-popover-emoji:not(.reacted):focus {
|
2018-08-01 02:40:49 +02:00
|
|
|
background-color: hsla(212, 28%, 8%, 0.75);
|
|
|
|
}
|
2017-11-14 18:50:06 +01:00
|
|
|
|
2021-04-14 17:18:29 +02:00
|
|
|
div.overlay .flex.overlay-content > div,
|
2019-07-26 12:26:57 +02:00
|
|
|
.dropdown-menu.typeahead,
|
2018-08-01 02:40:49 +02:00
|
|
|
#settings_page,
|
|
|
|
.informational-overlays .overlay-content {
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 0 30px hsl(212, 32%, 7%);
|
2018-08-01 02:40:49 +02:00
|
|
|
}
|
2017-11-14 18:50:06 +01:00
|
|
|
|
2021-02-26 14:53:41 +01:00
|
|
|
.tippy-box[data-theme~="light-border"],
|
2019-07-26 12:26:57 +02:00
|
|
|
.dropdown-menu ul,
|
2018-08-01 02:40:49 +02:00
|
|
|
.dropdown .dropdown-menu,
|
|
|
|
.popover,
|
|
|
|
.popover-title,
|
|
|
|
.popover-content {
|
|
|
|
background-color: hsl(212, 32%, 14%);
|
|
|
|
}
|
2018-02-01 06:12:12 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.dropdown-menu a {
|
|
|
|
color: inherit;
|
|
|
|
}
|
2017-11-29 23:29:01 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.dropdown .dropdown-menu li.divider,
|
|
|
|
.popover hr,
|
|
|
|
hr {
|
|
|
|
color: hsl(212, 28%, 18%);
|
|
|
|
opacity: 0.2;
|
|
|
|
}
|
2018-02-01 06:12:12 +01:00
|
|
|
|
2021-02-09 11:16:52 +01:00
|
|
|
#gear_menu_about_zulip {
|
|
|
|
.white_zulip_icon_without_text {
|
|
|
|
filter: invert(10%) sepia(16%) saturate(175%) hue-rotate(194deg)
|
|
|
|
brightness(99%) contrast(89%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-10 16:06:55 +01:00
|
|
|
#gear-menu {
|
|
|
|
.dark-theme {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.light-theme {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.nav .dropdown-menu::after,
|
|
|
|
.popover.bottom .arrow {
|
|
|
|
border-bottom-color: hsl(235, 18%, 7%);
|
|
|
|
}
|
2017-12-20 05:49:24 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.popover.left .arrow {
|
|
|
|
border-left-color: hsl(235, 18%, 7%);
|
|
|
|
}
|
2017-12-20 05:49:24 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.popover.top .arrow {
|
|
|
|
border-top-color: hsl(235, 18%, 7%);
|
|
|
|
}
|
2017-11-14 18:50:06 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.popover.right .arrow {
|
|
|
|
border-right-color: hsl(235, 18%, 7%);
|
|
|
|
}
|
2017-11-14 18:50:06 +01:00
|
|
|
|
2021-08-16 17:10:43 +02:00
|
|
|
.narrow_to_compose_recipients,
|
2021-07-08 07:21:37 +02:00
|
|
|
.expand_composebox_button,
|
|
|
|
.collapse_composebox_button,
|
2018-08-24 02:42:46 +02:00
|
|
|
#message_edit_tooltip,
|
2018-08-03 02:42:41 +02:00
|
|
|
.clear_search_button,
|
|
|
|
.clear_search_button:focus,
|
|
|
|
.clear_search_button:active,
|
2020-10-30 00:26:54 +01:00
|
|
|
.clear_search_button:disabled:hover,
|
2018-08-23 00:32:00 +02:00
|
|
|
#user-groups .save-instructions,
|
2018-08-01 02:40:49 +02:00
|
|
|
.close,
|
2020-04-16 16:15:39 +02:00
|
|
|
#user_presences li:hover .user-list-sidebar-menu-icon,
|
|
|
|
li.top_left_all_messages:hover .all-messages-sidebar-menu-icon,
|
|
|
|
li.top_left_starred_messages:hover .starred-messages-sidebar-menu-icon,
|
2022-07-12 18:29:31 +02:00
|
|
|
li.top_left_drafts:hover .drafts-sidebar-menu-icon,
|
2020-04-16 16:15:39 +02:00
|
|
|
#stream_filters li:hover .stream-sidebar-menu-icon,
|
|
|
|
li.topic-list-item:hover .topic-sidebar-menu-icon {
|
2018-08-01 02:40:49 +02:00
|
|
|
color: hsl(236, 33%, 80%);
|
|
|
|
}
|
2017-11-14 18:50:06 +01:00
|
|
|
|
2021-08-16 17:10:43 +02:00
|
|
|
.narrow_to_compose_recipients:hover,
|
2021-07-08 07:21:37 +02:00
|
|
|
.expand_composebox_button:hover,
|
|
|
|
.collapse_composebox_button:hover,
|
2018-08-24 02:42:46 +02:00
|
|
|
#message_edit_tooltip:hover,
|
2018-08-03 02:42:41 +02:00
|
|
|
.clear_search_button:hover,
|
2019-03-01 21:06:53 +01:00
|
|
|
.close:hover {
|
2018-08-01 02:40:49 +02:00
|
|
|
color: hsl(0, 0%, 100%);
|
|
|
|
}
|
2017-11-14 18:50:06 +01:00
|
|
|
|
2020-04-16 16:15:39 +02:00
|
|
|
#user_presences li .user-list-sidebar-menu-icon:hover,
|
|
|
|
.all-messages-sidebar-menu-icon:hover,
|
|
|
|
.starred-messages-sidebar-menu-icon:hover,
|
2022-07-12 18:29:31 +02:00
|
|
|
.drafts-sidebar-menu-icon:hover,
|
2020-04-16 16:15:39 +02:00
|
|
|
.stream-sidebar-menu-icon:hover,
|
|
|
|
.topic-sidebar-menu-icon:hover {
|
2019-03-01 21:06:53 +01:00
|
|
|
color: hsl(0, 0%, 100%) !important;
|
|
|
|
}
|
|
|
|
|
2018-08-16 02:03:52 +02:00
|
|
|
#streamlist-toggle,
|
|
|
|
#userlist-toggle {
|
2020-05-10 22:52:49 +02:00
|
|
|
color: inherit;
|
|
|
|
border-color: hsla(0, 0%, 0%, 0.6);
|
2018-08-16 02:03:52 +02:00
|
|
|
}
|
|
|
|
|
2020-05-10 22:52:49 +02:00
|
|
|
#streamlist-toggle-button {
|
2018-08-16 02:03:52 +02:00
|
|
|
color: inherit;
|
|
|
|
background-color: inherit;
|
|
|
|
}
|
|
|
|
|
2020-05-10 22:52:49 +02:00
|
|
|
#userlist-toggle-button {
|
|
|
|
color: hsl(221, 9%, 54%);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
li.active-filter,
|
|
|
|
li.active-sub-filter {
|
|
|
|
background-color: hsla(199, 33%, 46%, 0.2);
|
|
|
|
}
|
2017-11-16 01:43:43 +01:00
|
|
|
|
2020-07-04 12:11:27 +02:00
|
|
|
:not(.active-sub-filter) {
|
|
|
|
&.top_left_row:hover,
|
|
|
|
&.bottom_left_row:hover,
|
|
|
|
&#stream_filters li.highlighted_stream {
|
|
|
|
background-color: hsla(136, 25%, 73%, 0.2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
#user_presences li:hover,
|
|
|
|
#user_presences li.highlighted_user {
|
|
|
|
background-color: hsla(136, 25%, 73%, 0.2);
|
|
|
|
}
|
2017-11-14 18:50:06 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.floating_recipient .recipient_row {
|
|
|
|
border-top: none;
|
|
|
|
}
|
2017-11-14 18:50:06 +01:00
|
|
|
|
2022-08-21 17:18:00 +02:00
|
|
|
.group-row.active,
|
2018-08-01 02:40:49 +02:00
|
|
|
.stream-row.active,
|
2019-06-05 13:33:51 +02:00
|
|
|
.emoji-info-popover .emoji-showcase-container,
|
|
|
|
.emoji-info-popover .emoji-popover .emoji-popover-category-tabs,
|
|
|
|
.emoji-info-popover .emoji-popover .emoji-popover-top {
|
2018-08-01 02:40:49 +02:00
|
|
|
background-color: hsla(0, 0%, 0%, 0.2);
|
|
|
|
}
|
2017-11-14 18:50:06 +01:00
|
|
|
|
2021-05-12 16:31:52 +02:00
|
|
|
.recent_topics_participant_overflow {
|
2020-06-21 09:57:54 +02:00
|
|
|
color: hsl(0, 0%, 100%) !important;
|
2020-07-15 08:02:27 +02:00
|
|
|
background-color: hsl(211, 18%, 25%) !important;
|
2020-06-21 09:57:54 +02:00
|
|
|
}
|
|
|
|
|
2020-05-23 09:04:51 +02:00
|
|
|
.btn-recent-filters {
|
2020-06-01 14:52:54 +02:00
|
|
|
background-color: hsl(211, 29%, 14%);
|
2020-05-23 09:04:51 +02:00
|
|
|
border-color: hsl(0, 0%, 0%);
|
|
|
|
color: hsl(0, 0%, 100%);
|
2020-06-24 16:06:25 +02:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background-color: hsla(0, 0%, 0%, 0.5) !important;
|
|
|
|
outline: 0;
|
|
|
|
}
|
2020-05-23 09:04:51 +02:00
|
|
|
}
|
|
|
|
|
2020-07-05 12:19:09 +02:00
|
|
|
.recent_topics_container {
|
|
|
|
background-color: hsl(212, 28%, 18%) !important;
|
|
|
|
}
|
|
|
|
|
2020-07-05 12:20:53 +02:00
|
|
|
#recent_topics_table tr {
|
|
|
|
background-color: hsl(212, 28%, 18%);
|
|
|
|
|
|
|
|
&:hover {
|
2020-07-16 08:29:00 +02:00
|
|
|
background-color: hsl(208, 26%, 11%, 0.6);
|
2020-07-05 12:20:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-05 12:20:53 +02:00
|
|
|
#recent_topics_table .unread_topic {
|
2020-07-05 12:19:09 +02:00
|
|
|
background-color: hsla(212, 30%, 22%, 0.6);
|
2020-07-05 12:20:53 +02:00
|
|
|
}
|
|
|
|
|
2020-06-01 14:52:54 +02:00
|
|
|
.btn-recent-selected,
|
2020-07-05 12:19:09 +02:00
|
|
|
#recent_topics_table thead th {
|
2020-05-23 09:04:51 +02:00
|
|
|
background-color: hsl(0, 0%, 0%) !important;
|
2022-02-15 17:55:56 +01:00
|
|
|
|
|
|
|
&[data-sort]:hover {
|
|
|
|
background-color: hsl(211, 29%, 14%) !important;
|
|
|
|
}
|
2020-06-01 14:52:54 +02:00
|
|
|
}
|
|
|
|
|
2020-07-05 12:19:09 +02:00
|
|
|
#recent_topics_table td a {
|
2020-06-01 14:52:54 +02:00
|
|
|
color: hsl(206, 89%, 74%);
|
|
|
|
text-decoration: none;
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2020-06-01 14:52:54 +02:00
|
|
|
&:hover {
|
|
|
|
color: hsl(208, 64%, 52%);
|
|
|
|
}
|
2020-05-23 09:04:51 +02:00
|
|
|
}
|
|
|
|
|
2020-07-05 12:19:09 +02:00
|
|
|
#recent_topics_table {
|
2020-07-30 16:18:47 +02:00
|
|
|
border-color: hsla(0, 0%, 0%, 0.6);
|
2020-07-05 12:19:09 +02:00
|
|
|
}
|
|
|
|
|
2019-04-27 09:16:12 +02:00
|
|
|
thead,
|
2019-08-16 03:42:45 +02:00
|
|
|
.drafts-container .drafts-header,
|
2021-02-24 21:20:29 +01:00
|
|
|
.nav > li > a:focus,
|
2018-08-01 02:40:49 +02:00
|
|
|
.nav > li > a:hover,
|
2019-07-18 18:22:58 +02:00
|
|
|
.subscriptions-container .subscriptions-header,
|
2022-08-21 16:34:56 +02:00
|
|
|
.user-groups-container .user-groups-header,
|
2018-08-01 02:40:49 +02:00
|
|
|
.grey-box,
|
|
|
|
.white-box,
|
|
|
|
.stream-email,
|
|
|
|
#settings_page .settings-header,
|
|
|
|
#settings_page .sidebar li.active,
|
2022-03-14 13:28:30 +01:00
|
|
|
#settings_page .sidebar-wrapper .tab-container,
|
2019-04-27 09:16:12 +02:00
|
|
|
.table-striped tbody tr:nth-child(even) td,
|
2018-08-01 02:40:49 +02:00
|
|
|
.table-striped tbody tr:nth-child(odd) th,
|
|
|
|
.modal-footer,
|
|
|
|
.modal-bg .modal-header {
|
|
|
|
border-color: hsla(0, 0%, 0%, 0.2);
|
|
|
|
background-color: hsla(0, 0%, 0%, 0.2);
|
|
|
|
}
|
2017-11-14 18:50:06 +01:00
|
|
|
|
2019-04-27 09:16:12 +02:00
|
|
|
.table-striped tbody tr:nth-child(odd) td {
|
|
|
|
background-color: hsl(212, 28%, 18%);
|
|
|
|
}
|
|
|
|
|
2022-07-09 16:37:13 +02:00
|
|
|
.user-groups-container .right .display-type,
|
2018-08-01 02:40:49 +02:00
|
|
|
.subscriptions-container .right .display-type,
|
|
|
|
.stream-row,
|
2022-08-21 16:37:32 +02:00
|
|
|
.group-row,
|
2018-08-01 02:40:49 +02:00
|
|
|
.subscriptions-container .left .search-container,
|
|
|
|
.subscriptions-container .left,
|
2022-08-21 16:37:32 +02:00
|
|
|
.user-groups-container .left,
|
2018-08-01 02:40:49 +02:00
|
|
|
.subscriber-list-box,
|
2019-07-11 14:04:22 +02:00
|
|
|
.subscriber-list-box .subscriber_list_container .subscriber-list tr,
|
2022-08-21 17:59:39 +02:00
|
|
|
.member-list-box,
|
|
|
|
.member-list-box .member_list_container .member-list tr,
|
2021-11-22 18:00:02 +01:00
|
|
|
#subscription_overlay .subsection-parent div,
|
2021-11-22 17:11:57 +01:00
|
|
|
#subscription_overlay .radio-input-parent,
|
2021-11-21 17:06:31 +01:00
|
|
|
#stream_privacy_modal .radio-input-parent,
|
2022-03-14 13:28:30 +01:00
|
|
|
#settings_page .sidebar-wrapper,
|
|
|
|
#settings_page .sidebar-wrapper *,
|
2018-08-01 02:40:49 +02:00
|
|
|
table,
|
|
|
|
table th,
|
|
|
|
table td {
|
|
|
|
border-color: hsla(0, 0%, 0%, 0.2);
|
|
|
|
}
|
2017-11-29 23:07:07 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.draft-row .draft-info-box,
|
|
|
|
.message_header_private_message .message-header-contents {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
2017-11-29 23:07:07 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.draft-row .message_header_private_message .message_label_clickable {
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 4px 6px 3px;
|
2018-08-01 02:40:49 +02:00
|
|
|
color: inherit;
|
|
|
|
}
|
2017-11-29 23:07:07 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.nav-list > li > a,
|
|
|
|
.nav-list .nav-header {
|
|
|
|
text-shadow: none;
|
|
|
|
}
|
2017-11-29 23:40:42 +01:00
|
|
|
|
2019-02-14 00:30:19 +01:00
|
|
|
.mention .messagebox {
|
2018-08-01 02:40:49 +02:00
|
|
|
background-color: hsla(8, 78%, 43%, 0.15);
|
|
|
|
}
|
2018-01-24 21:34:57 +01:00
|
|
|
|
2020-03-25 19:18:02 +01:00
|
|
|
.rendered_markdown {
|
|
|
|
.user-mention,
|
|
|
|
.user-group-mention {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
to bottom,
|
|
|
|
hsla(0, 0%, 0%, 0.2) 0%,
|
|
|
|
hsla(0, 0%, 0%, 0.1) 100%
|
|
|
|
);
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 0 0 1px hsla(0, 0%, 0%, 0.4);
|
2020-03-25 19:18:02 +01:00
|
|
|
}
|
2017-12-01 02:14:14 +01:00
|
|
|
|
2020-03-25 19:18:02 +01:00
|
|
|
.user-mention-me :not(.silent) {
|
|
|
|
background-color: hsla(355, 37%, 31%, 1);
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 0 0 1px hsla(330, 40%, 20%, 1);
|
2020-03-25 19:18:02 +01:00
|
|
|
}
|
2020-06-24 21:33:23 +02:00
|
|
|
|
|
|
|
.codehilite code,
|
|
|
|
.codehilite pre {
|
|
|
|
color: hsl(212, 100%, 82%);
|
|
|
|
background-color: hsl(212, 25%, 15%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .hll {
|
|
|
|
background-color: hsl(0, 0%, 13%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .err {
|
|
|
|
color: hsl(1, 67%, 66%);
|
|
|
|
background-color: hsl(0, 7%, 22%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .k {
|
|
|
|
color: hsl(31, 85%, 59%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .p {
|
|
|
|
color: hsl(179, 27%, 35%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .cs {
|
|
|
|
color: hsl(0, 100%, 40%);
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .gd {
|
|
|
|
color: hsl(0, 100%, 40%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .ge {
|
|
|
|
color: hsl(0, 0%, 80%);
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .gr {
|
|
|
|
color: hsl(0, 100%, 50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .go {
|
|
|
|
color: hsl(0, 0%, 50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .gs {
|
|
|
|
color: hsl(0, 0%, 80%);
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .gu {
|
|
|
|
color: hsl(300, 100%, 25%);
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .gt {
|
|
|
|
color: hsl(222, 100%, 41%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .kc {
|
|
|
|
color: hsl(0, 45%, 75%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .kd {
|
|
|
|
color: hsl(60, 100%, 76%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .kn {
|
|
|
|
color: hsl(24, 56%, 72%);
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .kp {
|
|
|
|
color: hsl(62, 36%, 71%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .kr {
|
|
|
|
color: hsl(359, 58%, 56%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .ni {
|
|
|
|
color: hsl(359, 35%, 63%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .ne {
|
|
|
|
color: hsl(53, 23%, 69%);
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .nn {
|
|
|
|
color: hsl(204, 54%, 72%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .vi {
|
|
|
|
color: hsl(60, 100%, 89%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .c,
|
|
|
|
.codehilite .g,
|
|
|
|
.codehilite .cm,
|
|
|
|
.codehilite .cp,
|
|
|
|
.codehilite .c1 {
|
|
|
|
color: hsl(209, 15%, 55%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .l,
|
|
|
|
.codehilite .x,
|
|
|
|
.codehilite .no,
|
|
|
|
.codehilite .nd,
|
|
|
|
.codehilite .nl,
|
|
|
|
.codehilite .nx,
|
|
|
|
.codehilite .py,
|
|
|
|
.codehilite .w {
|
|
|
|
color: hsl(0, 0%, 80%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .n,
|
|
|
|
.codehilite .nv,
|
|
|
|
.codehilite .vg {
|
|
|
|
color: hsl(60, 19%, 83%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .o,
|
|
|
|
.codehilite .ow {
|
|
|
|
color: hsl(58, 52%, 88%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .gh,
|
|
|
|
.codehilite .gp {
|
|
|
|
color: hsl(60, 19%, 83%);
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .gi,
|
|
|
|
.codehilite .kt {
|
|
|
|
color: hsl(120, 100%, 40%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .ld,
|
|
|
|
.codehilite .s,
|
|
|
|
.codehilite .sb,
|
|
|
|
.codehilite .sc,
|
|
|
|
.codehilite .sd,
|
|
|
|
.codehilite .s2,
|
|
|
|
.codehilite .se,
|
|
|
|
.codehilite .sh,
|
|
|
|
.codehilite .si,
|
|
|
|
.codehilite .sx,
|
|
|
|
.codehilite .sr,
|
|
|
|
.codehilite .s1,
|
|
|
|
.codehilite .ss {
|
|
|
|
color: hsl(0, 36%, 69%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .m,
|
|
|
|
.codehilite .mf,
|
|
|
|
.codehilite .mh,
|
|
|
|
.codehilite .mi,
|
|
|
|
.codehilite .mo,
|
|
|
|
.codehilite .il {
|
|
|
|
color: hsl(183, 45%, 69%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .na,
|
|
|
|
.codehilite .nt {
|
|
|
|
color: hsl(127, 25%, 68%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.codehilite .nb,
|
|
|
|
.codehilite .nc,
|
|
|
|
.codehilite .nf,
|
|
|
|
.codehilite .bp,
|
|
|
|
.codehilite .vc {
|
|
|
|
color: hsl(60, 75%, 75%);
|
|
|
|
}
|
2020-06-06 09:11:24 +02:00
|
|
|
}
|
2020-03-25 19:33:27 +01:00
|
|
|
|
2020-06-06 09:11:24 +02:00
|
|
|
#message-edit-history {
|
|
|
|
.message_edit_history_content {
|
|
|
|
.highlight_text_inserted {
|
|
|
|
color: hsl(122, 100%, 81%);
|
|
|
|
background-color: hsla(120, 64%, 95%, 0.3);
|
|
|
|
}
|
2020-03-25 19:33:27 +01:00
|
|
|
|
2020-06-06 09:11:24 +02:00
|
|
|
.highlight_text_deleted {
|
|
|
|
color: hsl(0, 90%, 67%);
|
|
|
|
background-color: hsla(7, 54%, 62%, 0.38);
|
|
|
|
}
|
2020-03-25 19:33:27 +01:00
|
|
|
}
|
2018-08-01 02:40:49 +02:00
|
|
|
}
|
2018-01-24 21:35:34 +01:00
|
|
|
|
2020-06-19 21:59:12 +02:00
|
|
|
time {
|
2018-02-13 00:33:36 +01:00
|
|
|
background: hsla(0, 0%, 0%, 0.2);
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 0 0 1px hsla(0, 0%, 0%, 0.4);
|
2018-02-13 00:33:36 +01:00
|
|
|
}
|
|
|
|
|
2021-12-03 01:22:04 +01:00
|
|
|
.upgrade-tip,
|
2022-06-01 16:52:40 +02:00
|
|
|
.upgrade-or-sponsorship-tip,
|
2018-08-01 02:40:49 +02:00
|
|
|
.tip {
|
|
|
|
color: inherit;
|
|
|
|
background-color: hsla(46, 28%, 38%, 0.27);
|
|
|
|
border: 1px solid hsl(49, 38%, 46%);
|
|
|
|
}
|
2018-01-24 21:36:17 +01:00
|
|
|
|
2018-12-12 03:42:17 +01:00
|
|
|
.alert.home-error-bar {
|
|
|
|
color: hsl(236, 33%, 90%);
|
|
|
|
background-color: hsla(35, 84%, 62%, 0.25);
|
|
|
|
border: 1px solid hsl(11, 46%, 54%);
|
|
|
|
}
|
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.alert {
|
|
|
|
text-shadow: none;
|
2020-03-25 19:25:08 +01:00
|
|
|
|
|
|
|
.close {
|
|
|
|
color: inherit;
|
2021-04-09 23:49:50 +02:00
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
|
|
|
|
.close:hover {
|
|
|
|
opacity: 1;
|
2020-03-25 19:25:08 +01:00
|
|
|
}
|
2018-08-01 02:40:49 +02:00
|
|
|
}
|
2018-01-24 21:36:17 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.alert.alert-success {
|
|
|
|
color: inherit;
|
2020-08-04 23:58:56 +02:00
|
|
|
background-color: hsla(161, 60%, 46%, 0.2);
|
2018-10-06 18:49:20 +02:00
|
|
|
border-color: hsl(165, 68%, 37%);
|
2018-08-01 02:40:49 +02:00
|
|
|
}
|
2017-11-29 23:40:42 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.alert.alert-error,
|
|
|
|
.alert.alert-danger {
|
2018-10-08 22:31:26 +02:00
|
|
|
background-color: hsl(318, 12%, 21%);
|
2018-08-01 02:40:49 +02:00
|
|
|
color: inherit;
|
|
|
|
border: 1px solid hsl(0, 75%, 65%);
|
|
|
|
}
|
2017-11-29 23:40:42 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.alert-box .alert,
|
2019-06-20 11:59:55 +02:00
|
|
|
.alert-box .stacktrace,
|
2018-08-01 02:40:49 +02:00
|
|
|
.alert.alert-error {
|
2018-10-08 22:31:26 +02:00
|
|
|
background-color: hsl(318, 12%, 21%);
|
2018-08-01 02:40:49 +02:00
|
|
|
color: inherit;
|
|
|
|
border: 1px solid hsl(0, 75%, 65%);
|
|
|
|
}
|
2018-03-29 19:28:12 +02:00
|
|
|
|
2020-03-25 19:23:54 +01:00
|
|
|
.alert-box {
|
|
|
|
.alert.alert-error::before {
|
2022-03-02 07:02:28 +01:00
|
|
|
color: hsl(0, 75%, 65%);
|
2019-06-20 11:59:55 +02:00
|
|
|
}
|
|
|
|
|
2020-03-25 19:23:54 +01:00
|
|
|
.stacktrace {
|
|
|
|
color: hsl(314, 22%, 85%);
|
2019-06-20 11:59:55 +02:00
|
|
|
|
2020-03-25 19:23:54 +01:00
|
|
|
.expand {
|
|
|
|
color: hsl(318, 14%, 36%);
|
|
|
|
}
|
2019-06-20 11:59:55 +02:00
|
|
|
|
2020-03-25 19:23:54 +01:00
|
|
|
.subtle {
|
|
|
|
color: hsl(314, 19%, 63%);
|
2019-06-20 11:59:55 +02:00
|
|
|
}
|
|
|
|
|
2020-03-25 19:23:54 +01:00
|
|
|
.code-context {
|
|
|
|
color: hsl(314, 27%, 82%);
|
|
|
|
background-color: hsl(312, 7%, 14%);
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: inset 0 11px 10px -10px hsl(0, 0%, 6%),
|
|
|
|
inset 0 -11px 10px -10px hsl(0, 0%, 6%);
|
2020-03-25 19:23:54 +01:00
|
|
|
|
|
|
|
.line-number {
|
|
|
|
color: hsl(318, 14%, 44%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.focus-line {
|
|
|
|
background-color: hsl(307, 9%, 19%);
|
|
|
|
}
|
2019-06-20 11:59:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
/* Popover: */
|
2021-12-07 15:43:26 +01:00
|
|
|
.hotspot.overlay .hotspot-popover {
|
2018-08-01 02:40:49 +02:00
|
|
|
border-color: hsla(0, 0%, 0%, 0.2) !important;
|
|
|
|
/* Based on the `.hotspot-popover` shadow in `hotspots.css`, but with a new
|
2018-03-29 19:28:12 +02:00
|
|
|
color. */
|
2018-08-01 02:40:49 +02:00
|
|
|
box-shadow: 0 5px 10px hsla(0, 0%, 0%, 0.4);
|
|
|
|
}
|
2018-03-29 19:28:12 +02:00
|
|
|
|
2020-06-11 05:11:49 +02:00
|
|
|
#user-profile-modal {
|
|
|
|
#default-section {
|
|
|
|
.default-field {
|
|
|
|
.name {
|
|
|
|
color: hsl(236, 33%, 90%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#content {
|
|
|
|
.field-section {
|
|
|
|
.name {
|
|
|
|
color: hsl(236, 33%, 90%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-06-03 09:36:43 +02:00
|
|
|
|
|
|
|
.subscription-group-list,
|
2021-06-25 13:36:41 +02:00
|
|
|
.subscription-stream-list,
|
|
|
|
.subscription-stream-list .user-stream-list tr,
|
2021-06-03 09:36:43 +02:00
|
|
|
.subscription-group-list .user-group-list tr {
|
|
|
|
border-color: hsla(0, 0%, 0%, 0.4);
|
|
|
|
}
|
2020-06-11 05:11:49 +02:00
|
|
|
}
|
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
/* Arrows: */
|
2020-03-25 19:30:38 +01:00
|
|
|
.hotspot.overlay {
|
|
|
|
.hotspot-popover.arrow-right::before {
|
|
|
|
border-left-color: hsla(0, 0%, 0%, 0.2);
|
|
|
|
}
|
2018-03-29 19:28:12 +02:00
|
|
|
|
2020-03-25 19:30:38 +01:00
|
|
|
.hotspot-popover.arrow-right::after {
|
|
|
|
border-left-color: hsl(212, 28%, 18%);
|
|
|
|
}
|
2018-03-29 19:28:12 +02:00
|
|
|
|
2020-03-25 19:30:38 +01:00
|
|
|
.hotspot-popover.arrow-bottom::before {
|
|
|
|
border-top-color: hsla(0, 0%, 0%, 0.2);
|
|
|
|
}
|
2018-03-29 19:28:12 +02:00
|
|
|
|
2020-03-25 19:30:38 +01:00
|
|
|
.hotspot-popover.arrow-bottom::after {
|
|
|
|
border-top-color: hsl(212, 28%, 18%);
|
|
|
|
}
|
2018-03-29 19:28:12 +02:00
|
|
|
|
2020-03-25 19:30:38 +01:00
|
|
|
.hotspot-popover.arrow-left::before {
|
|
|
|
border-right-color: hsla(0, 0%, 0%, 0.2);
|
|
|
|
}
|
2018-03-29 19:28:12 +02:00
|
|
|
|
2020-03-25 19:30:38 +01:00
|
|
|
.hotspot-popover.arrow-left::after {
|
|
|
|
border-right-color: hsl(212, 28%, 18%);
|
|
|
|
}
|
2018-03-29 19:28:12 +02:00
|
|
|
|
2020-03-25 19:30:38 +01:00
|
|
|
.hotspot-popover.arrow-top::before {
|
|
|
|
border-bottom-color: hsla(0, 0%, 0%, 0.2);
|
|
|
|
}
|
2018-03-29 19:28:12 +02:00
|
|
|
|
2020-03-25 19:30:38 +01:00
|
|
|
.hotspot-popover.arrow-top::after {
|
|
|
|
border-bottom-color: hsl(212, 28%, 18%);
|
|
|
|
}
|
2018-08-01 02:40:49 +02:00
|
|
|
}
|
2018-03-29 19:28:12 +02:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
/* Content: */
|
|
|
|
.hotspot.overlay .hotspot-popover .hotspot-popover-content,
|
|
|
|
.hotspot.overlay .hotspot-popover .hotspot-popover-bottom {
|
|
|
|
background-color: hsl(212, 28%, 18%);
|
|
|
|
}
|
2018-03-29 19:28:12 +02:00
|
|
|
|
2020-05-26 16:27:06 +02:00
|
|
|
.top-messages-logo,
|
|
|
|
.bottom-messages-logo {
|
2020-03-25 19:32:06 +01:00
|
|
|
svg path {
|
|
|
|
fill: hsl(214, 27%, 18%);
|
|
|
|
stroke: hsl(214, 27%, 18%);
|
|
|
|
}
|
2018-03-29 19:28:12 +02:00
|
|
|
|
2020-03-25 19:32:06 +01:00
|
|
|
svg circle {
|
|
|
|
fill: hsl(0, 0%, 100%);
|
|
|
|
stroke: hsl(0, 0%, 100%);
|
|
|
|
}
|
2018-08-01 02:40:49 +02:00
|
|
|
}
|
2018-03-29 19:28:12 +02:00
|
|
|
|
2019-08-13 21:03:48 +02:00
|
|
|
.history-limited-box,
|
|
|
|
.all-messages-search-caution {
|
2019-06-19 04:53:16 +02:00
|
|
|
background-color: hsla(0, 0%, 0%, 0.2);
|
2018-10-01 20:27:22 +02:00
|
|
|
}
|
|
|
|
|
2018-12-20 19:48:37 +01:00
|
|
|
#feedback_container,
|
2020-03-05 17:04:02 +01:00
|
|
|
code,
|
2018-08-01 02:40:49 +02:00
|
|
|
.typeahead.dropdown-menu {
|
|
|
|
background-color: hsl(212, 25%, 15%);
|
|
|
|
border-color: hsla(0, 0%, 0%, 0.5);
|
|
|
|
color: inherit;
|
|
|
|
}
|
2017-11-30 01:02:15 +01:00
|
|
|
|
2019-07-31 21:04:36 +02:00
|
|
|
/* Search highlight used in both topics and rendered_markdown */
|
2018-08-01 02:40:49 +02:00
|
|
|
.highlight {
|
|
|
|
background-color: hsla(51, 100%, 64%, 0.42);
|
|
|
|
}
|
2017-11-30 21:44:25 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.sub-unsub-message span::before,
|
|
|
|
.sub-unsub-message span::after,
|
|
|
|
.date_row span::before,
|
2022-02-20 21:32:14 +01:00
|
|
|
.date_row span::after,
|
|
|
|
.streams_subheader span::before,
|
|
|
|
.streams_subheader span::after {
|
2018-08-01 02:40:49 +02:00
|
|
|
opacity: 0.2;
|
|
|
|
}
|
2017-11-30 21:49:06 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.star:not(.empty-star),
|
|
|
|
.empty-star:hover {
|
|
|
|
color: hsla(126, 66%, 72%, 0.75);
|
|
|
|
}
|
2017-11-30 21:49:06 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
#out-of-view-notification {
|
2022-03-02 07:02:28 +01:00
|
|
|
border: 1px solid hsl(144, 45%, 62%);
|
2018-08-01 02:40:49 +02:00
|
|
|
}
|
2017-11-30 22:52:39 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
#bots_lists_navbar .active a {
|
2018-09-27 21:57:07 +02:00
|
|
|
color: hsl(0, 0%, 87%);
|
2018-08-01 02:40:49 +02:00
|
|
|
background-color: hsl(212, 28%, 18%);
|
2018-09-27 21:57:07 +02:00
|
|
|
border-color: hsl(0, 0%, 87%);
|
2018-08-01 02:40:49 +02:00
|
|
|
border-bottom-color: transparent;
|
|
|
|
}
|
2018-02-03 18:13:57 +01:00
|
|
|
|
2018-08-01 02:40:49 +02:00
|
|
|
.searching-for-more-topics img {
|
|
|
|
filter: invert(100%);
|
|
|
|
}
|
2019-05-21 06:32:44 +02:00
|
|
|
|
|
|
|
.simplebar-track .simplebar-scrollbar::before {
|
2019-06-18 20:58:40 +02:00
|
|
|
background-color: hsl(0, 0%, 100%);
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 0 0 1px hsla(0, 0%, 0%, 0.33);
|
2019-05-21 06:32:44 +02:00
|
|
|
}
|
2019-05-13 00:43:21 +02:00
|
|
|
|
|
|
|
.collapse-settings-btn:hover {
|
|
|
|
color: hsl(200, 79%, 66%);
|
|
|
|
}
|
2019-06-07 17:15:14 +02:00
|
|
|
|
2022-02-25 06:08:08 +01:00
|
|
|
#loading_older_messages_indicator,
|
|
|
|
#recent_topics_loading_messages_indicator {
|
|
|
|
path {
|
|
|
|
fill: hsl(0, 0%, 100%);
|
|
|
|
}
|
2019-06-07 17:15:14 +02:00
|
|
|
}
|
2019-07-16 12:48:45 +02:00
|
|
|
|
|
|
|
.small_square_button {
|
|
|
|
&.small_square_x {
|
|
|
|
background-color: hsl(0, 0%, 95%);
|
|
|
|
color: hsl(0, 0%, 42%);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: hsl(0, 0%, 18%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-15 11:12:05 +02:00
|
|
|
|
2021-07-13 08:15:05 +02:00
|
|
|
a:not(:active):focus,
|
|
|
|
button:focus,
|
|
|
|
.new-style label.checkbox input[type="checkbox"]:focus ~ span,
|
|
|
|
i.fa:focus,
|
|
|
|
i.zulip-icon:focus,
|
2022-03-08 07:22:44 +01:00
|
|
|
.auto-select:focus,
|
|
|
|
[role="button"]:focus {
|
2021-07-13 08:15:05 +02:00
|
|
|
outline-color: hsl(0, 0%, 67%);
|
2020-07-15 11:12:05 +02:00
|
|
|
}
|
2021-07-14 06:23:56 +02:00
|
|
|
|
|
|
|
.animated-purple-button:focus {
|
|
|
|
box-shadow: 0 1px 4px 0 hsl(0, 0%, 100%, 0.666);
|
|
|
|
}
|
2020-10-05 16:09:25 +02:00
|
|
|
|
|
|
|
.color_animated_button {
|
2022-01-20 10:30:09 +01:00
|
|
|
background-color: hsl(211, 29%, 14%);
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2020-10-05 16:09:25 +02:00
|
|
|
* {
|
|
|
|
color: hsl(0, 0%, 100%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2022-01-20 10:30:09 +01:00
|
|
|
background-color: hsl(240, 96%, 68%);
|
2020-10-05 16:09:25 +02:00
|
|
|
}
|
|
|
|
}
|
2021-09-29 13:23:02 +02:00
|
|
|
|
|
|
|
/* Widgets: Poll */
|
|
|
|
.poll-widget {
|
|
|
|
.poll-vote {
|
|
|
|
color: hsl(185, 35%, 65%);
|
|
|
|
border-color: hsl(185, 35%, 35%);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: hsl(185, 50%, 70%);
|
|
|
|
border-color: hsl(185, 40%, 40%);
|
|
|
|
background-color: hsl(185, 20%, 20%);
|
|
|
|
}
|
2021-10-27 03:09:23 +02:00
|
|
|
|
2021-09-29 13:23:02 +02:00
|
|
|
&:focus {
|
|
|
|
color: hsl(185, 50%, 65%);
|
|
|
|
border-color: hsl(185, 40%, 50%);
|
|
|
|
background-color: hsl(185, 40%, 35%);
|
|
|
|
}
|
|
|
|
}
|
2021-10-27 03:09:23 +02:00
|
|
|
|
2021-09-29 13:23:02 +02:00
|
|
|
.poll-names {
|
|
|
|
color: hsl(236, 15%, 70%);
|
|
|
|
}
|
|
|
|
}
|
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 {
|
|
|
|
color: hsl(236, 33%, 90%);
|
|
|
|
}
|
2021-11-20 11:51:35 +01:00
|
|
|
|
|
|
|
#stream-specific-notify-table .unmute_stream {
|
|
|
|
&:hover {
|
|
|
|
color: hsl(0, 0%, 100%);
|
|
|
|
}
|
|
|
|
}
|
2021-06-16 21:15:47 +02:00
|
|
|
|
|
|
|
#read_receipts_modal #read_receipts_list li {
|
|
|
|
&:hover {
|
|
|
|
background-color: hsla(0, 0%, 100%, 0.05);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
background-color: hsla(0, 0%, 100%, 0.1);
|
|
|
|
}
|
|
|
|
}
|
2018-04-07 02:55:24 +02:00
|
|
|
}
|
|
|
|
|
2020-06-23 03:02:16 +02:00
|
|
|
@supports (-moz-appearance: none) {
|
2021-11-26 09:02:57 +01:00
|
|
|
body.dark-theme #settings_page select {
|
2017-10-28 19:26:36 +02:00
|
|
|
background-color: hsla(0, 0%, 0%, 0.2);
|
|
|
|
}
|
|
|
|
}
|
2020-05-16 13:13:59 +02:00
|
|
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
2020-06-24 21:33:23 +02:00
|
|
|
body.color-scheme-automatic {
|
2021-11-26 09:02:57 +01:00
|
|
|
@extend body.dark-theme;
|
2020-05-16 13:13:59 +02:00
|
|
|
}
|
|
|
|
}
|