2019-03-06 21:17:06 +01:00
|
|
|
/* The width of the empty space in the sidebar to separate
|
|
|
|
content from the edge of the window */
|
|
|
|
$far_left_gutter_size: 10px;
|
|
|
|
/* This represents the space in the sidebar reserved for symbols like
|
|
|
|
the #; labels like the the stream name go to the right of this. */
|
|
|
|
$left_col_size: 19px;
|
|
|
|
/* The full topic indentation includes 4px of indent in addition to
|
|
|
|
the above (and another 5px of padding not measured here) */
|
2019-08-30 19:01:28 +02:00
|
|
|
$topic_indent: calc($far_left_gutter_size + $left_col_size + 4px);
|
2021-07-01 10:19:59 +02:00
|
|
|
$topic_resolve_width: 13px;
|
2022-09-13 13:15:57 +02:00
|
|
|
/* Space between section in the left sidebar. */
|
|
|
|
$sections_vertical_gutter: 8px;
|
2022-10-04 23:33:51 +02:00
|
|
|
$bottom_scrolling_buffer: 25px;
|
2023-06-16 17:40:47 +02:00
|
|
|
/* space direct message / stream / topic names from unread counters
|
|
|
|
and @ mention indicators by 3px on the right */
|
2023-01-31 09:53:46 +01:00
|
|
|
$before_unread_count_padding: 3px;
|
2019-03-06 21:17:06 +01:00
|
|
|
|
2020-03-19 15:01:07 +01:00
|
|
|
.hashtag {
|
|
|
|
&:empty {
|
|
|
|
&::after {
|
|
|
|
content: "#";
|
|
|
|
line-height: 0;
|
|
|
|
font-size: 18px;
|
2023-03-27 08:32:34 +02:00
|
|
|
font-weight: 700;
|
2020-03-19 15:01:07 +01:00
|
|
|
}
|
|
|
|
}
|
2019-03-03 16:53:15 +01:00
|
|
|
}
|
|
|
|
|
2023-09-28 16:33:25 +02:00
|
|
|
#streams_list .stream-privacy {
|
2023-09-25 19:38:56 +02:00
|
|
|
height: 16px;
|
2023-03-27 08:32:34 +02:00
|
|
|
font-weight: 700;
|
2019-04-11 12:46:04 +02:00
|
|
|
text-align: center;
|
2022-03-01 11:25:40 +01:00
|
|
|
|
|
|
|
.zulip-icon.zulip-icon-globe {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
2023-04-08 02:49:01 +02:00
|
|
|
|
|
|
|
.zulip-icon.zulip-icon-hashtag {
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.zulip-icon.zulip-icon-lock {
|
|
|
|
font-size: 13px;
|
2023-09-25 19:38:56 +02:00
|
|
|
/* Slight vertical adjustment so the lock
|
|
|
|
doesn't sit too high, relative to the
|
|
|
|
other stream icons. */
|
|
|
|
padding-top: 2px;
|
2023-04-08 02:49:01 +02:00
|
|
|
}
|
2019-04-13 19:53:33 +02:00
|
|
|
}
|
|
|
|
|
2023-11-08 20:33:55 +01:00
|
|
|
.left-sidebar-title {
|
|
|
|
color: var(--color-text-sidebar-heading);
|
|
|
|
font-size: inherit;
|
|
|
|
font-weight: normal;
|
|
|
|
display: inline;
|
2023-11-08 21:31:12 +01:00
|
|
|
/* Override heading margin from Bootstrap. */
|
|
|
|
margin: 0;
|
|
|
|
/* Show an ellipsis on a heading when
|
|
|
|
it won't sit adjacent other icons
|
|
|
|
or controls in the row. */
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2023-11-08 20:33:55 +01:00
|
|
|
}
|
|
|
|
|
2023-09-21 21:38:01 +02:00
|
|
|
.sidebar-topic-check,
|
|
|
|
.topic-name,
|
|
|
|
.topic-markers-and-controls {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2023-10-20 18:34:05 +02:00
|
|
|
#left-sidebar-navigation-list .filter-icon i {
|
|
|
|
color: var(--color-left-sidebar-navigation-icon);
|
|
|
|
}
|
|
|
|
|
2019-03-03 16:53:15 +01:00
|
|
|
#stream_filters,
|
2023-10-10 21:00:28 +02:00
|
|
|
#left-sidebar-navigation-list {
|
2020-03-20 11:04:15 +01:00
|
|
|
margin-right: 12px;
|
2019-03-03 16:06:30 +01:00
|
|
|
}
|
|
|
|
|
2019-08-29 01:41:23 +02:00
|
|
|
li.show-more-topics {
|
2023-03-17 22:10:10 +01:00
|
|
|
& a {
|
2019-08-29 01:41:23 +02:00
|
|
|
font-size: 12px;
|
|
|
|
}
|
2019-03-03 16:53:15 +01:00
|
|
|
}
|
|
|
|
|
2022-02-11 19:58:26 +01:00
|
|
|
#streams_inline_icon,
|
2020-10-05 16:47:58 +02:00
|
|
|
.streams_filter_icon {
|
2020-08-04 23:58:56 +02:00
|
|
|
opacity: 0.5;
|
2016-10-28 07:12:32 +02:00
|
|
|
|
2020-03-20 02:52:26 +01:00
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2016-10-28 07:12:32 +02:00
|
|
|
}
|
|
|
|
|
2020-10-05 16:50:26 +02:00
|
|
|
.streams_filter_icon.web_public {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
2016-10-28 07:12:32 +02:00
|
|
|
.tooltip {
|
2019-08-04 14:57:32 +02:00
|
|
|
max-width: 18em;
|
2016-10-28 07:12:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#stream_filters {
|
|
|
|
overflow: visible;
|
2021-03-01 06:33:11 +01:00
|
|
|
margin-bottom: 5px;
|
2020-03-20 11:04:15 +01:00
|
|
|
margin-right: 12px;
|
2016-10-28 07:12:32 +02:00
|
|
|
padding: 0;
|
|
|
|
font-weight: normal;
|
|
|
|
|
2022-11-02 17:38:38 +01:00
|
|
|
.input-append.topic_search_section {
|
|
|
|
padding: 2px 0 2px calc($topic_indent - $topic_resolve_width);
|
|
|
|
margin-bottom: 3px;
|
|
|
|
margin-left: 3px;
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& input {
|
2022-11-02 17:38:38 +01:00
|
|
|
width: calc(100% - 50px);
|
|
|
|
}
|
2023-06-28 09:10:12 +02:00
|
|
|
|
|
|
|
.clear_search_button {
|
|
|
|
margin-left: -1px;
|
|
|
|
}
|
2022-11-02 17:38:38 +01:00
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& li {
|
|
|
|
& a:hover {
|
2023-01-31 09:53:46 +01:00
|
|
|
text-decoration: none;
|
2020-03-20 02:00:33 +01:00
|
|
|
}
|
2017-04-17 22:19:47 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& ul {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin-left: 0;
|
2017-04-17 22:19:47 +02:00
|
|
|
|
2020-03-20 02:00:33 +01:00
|
|
|
&.topic-list li {
|
2023-09-21 20:56:20 +02:00
|
|
|
padding: 2px 0;
|
2021-06-08 18:42:06 +02:00
|
|
|
|
|
|
|
&.filter-topics {
|
|
|
|
padding-bottom: 0;
|
2022-10-27 14:04:02 +02:00
|
|
|
position: sticky;
|
2022-11-02 05:16:11 +01:00
|
|
|
top: calc($sections_vertical_gutter + 43px);
|
2022-10-27 14:04:02 +02:00
|
|
|
z-index: 2;
|
2021-06-08 18:42:06 +02:00
|
|
|
}
|
2020-03-20 02:00:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-04-17 22:19:47 +02:00
|
|
|
|
2023-04-25 13:37:16 +02:00
|
|
|
.stream-with-count.hide_unread_counts {
|
|
|
|
.masked_unread_count {
|
2023-09-25 19:03:22 +02:00
|
|
|
display: block;
|
|
|
|
/* Shift masked dot to align with
|
|
|
|
the least-significant digit on
|
|
|
|
unreads in other rows.
|
|
|
|
We have to do this with margin,
|
|
|
|
because width or padding will
|
|
|
|
distort the CSS-created dot. */
|
|
|
|
margin-right: 3px;
|
2023-04-25 13:37:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.unread_count {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.narrow-filter
|
|
|
|
> .bottom_left_row:hover
|
|
|
|
> .stream-with-count.hide_unread_counts {
|
|
|
|
.masked_unread_count {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.unread_count {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.stream-expanded {
|
|
|
|
.stream-with-count.hide_unread_counts {
|
|
|
|
.masked_unread_count {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.unread_count {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.has-unmuted-unreads.hide_unread_counts {
|
|
|
|
.masked_unread_count {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.unread_count {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-17 20:25:58 +01:00
|
|
|
.inactive_stream:not(.active-filter) {
|
2020-08-04 23:58:56 +02:00
|
|
|
opacity: 0.5;
|
2020-03-20 02:00:33 +01:00
|
|
|
}
|
2022-02-20 21:32:14 +01:00
|
|
|
|
|
|
|
.toggle_stream_mute {
|
|
|
|
margin-right: 3px;
|
|
|
|
opacity: 0.5;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
2020-03-20 15:58:09 +01:00
|
|
|
}
|
|
|
|
|
2023-10-10 21:00:28 +02:00
|
|
|
.left-sidebar-navigation-area {
|
2023-03-17 22:10:10 +01:00
|
|
|
& li a {
|
2020-03-20 15:58:09 +01:00
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-13 13:15:57 +02:00
|
|
|
#left_sidebar_scroll_container {
|
|
|
|
outline: none;
|
2023-11-09 00:35:32 +01:00
|
|
|
overflow: hidden auto;
|
2016-10-28 07:12:32 +02:00
|
|
|
position: relative;
|
2016-11-29 20:11:29 +01:00
|
|
|
z-index: 0;
|
2017-01-15 17:39:04 +01:00
|
|
|
width: 100%;
|
2023-10-31 15:42:50 +01:00
|
|
|
|
|
|
|
.direct-messages-container {
|
|
|
|
/* TODO: Clean up this value and the
|
|
|
|
analogous one on #stream-filters;
|
|
|
|
this could be done alongside the
|
|
|
|
--left-sidebar-collapse-widget-gutter
|
|
|
|
cleanup so that all of the left sidebar
|
|
|
|
space is better, more uniformly handled.
|
|
|
|
That will be an essential pre-condition
|
|
|
|
for a resizable left sidebar. */
|
|
|
|
margin-right: 12px;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2016-10-28 07:12:32 +02:00
|
|
|
}
|
|
|
|
|
2023-10-30 16:07:07 +01:00
|
|
|
.direct-messages-container {
|
2022-09-13 13:15:57 +02:00
|
|
|
#private_messages_section_header {
|
2023-11-09 00:00:09 +01:00
|
|
|
grid-template-columns: 0 15px minmax(0, 1fr) max-content 30px 12px;
|
|
|
|
grid-template-rows: 24px;
|
|
|
|
/* TODO: Rewrite the `--left-sidebar-collapse-widget-gutter`
|
|
|
|
value and the styles dependent on it so that this kind of
|
|
|
|
1990s layout shenanigans is made unnecessary. */
|
|
|
|
margin-left: -3px;
|
2022-09-13 13:15:57 +02:00
|
|
|
cursor: pointer;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
2023-11-09 00:00:09 +01:00
|
|
|
#toggle_private_messages_section_icon {
|
|
|
|
grid-area: starting-anchor-element;
|
|
|
|
}
|
|
|
|
|
|
|
|
.left-sidebar-title {
|
|
|
|
grid-area: row-content;
|
|
|
|
}
|
|
|
|
|
|
|
|
.heading-markers-and-controls {
|
|
|
|
grid-area: markers-and-controls;
|
|
|
|
}
|
|
|
|
|
2022-09-13 13:15:57 +02:00
|
|
|
#show_all_private_messages {
|
2023-11-09 00:00:09 +01:00
|
|
|
grid-area: ending-anchor-element;
|
|
|
|
/* Make the clickable area large
|
|
|
|
around the icon. */
|
|
|
|
align-self: stretch;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2022-09-13 13:15:57 +02:00
|
|
|
opacity: 0.7;
|
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-30 16:11:34 +01:00
|
|
|
& ul.dm-list {
|
2022-09-13 13:15:57 +02:00
|
|
|
list-style-type: none;
|
|
|
|
font-weight: 400;
|
|
|
|
margin-left: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& span.fa-group {
|
2022-09-13 13:15:57 +02:00
|
|
|
font-size: 90%;
|
|
|
|
}
|
|
|
|
|
2023-10-30 15:44:36 +01:00
|
|
|
& li.dm-list-item {
|
2023-03-17 22:10:10 +01:00
|
|
|
& a {
|
2022-09-13 13:15:57 +02:00
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
2023-10-30 15:26:43 +01:00
|
|
|
.fa-group,
|
|
|
|
.zulip-icon {
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
2022-09-13 13:15:57 +02:00
|
|
|
}
|
|
|
|
|
2023-10-30 15:44:36 +01:00
|
|
|
& li#show-more-direct-messages {
|
2022-09-13 13:15:57 +02:00
|
|
|
cursor: pointer;
|
|
|
|
padding-right: 26px;
|
2023-10-31 17:08:59 +01:00
|
|
|
/* TODO: Rewrite the show-more and show-less
|
|
|
|
buttons as grids alongside the left sidebar
|
|
|
|
header rewrites. This padding value
|
|
|
|
is a stopgap to provide the same lefthand
|
|
|
|
alignment as the "more topics" text, which
|
|
|
|
aligns with the topic above--just as this
|
|
|
|
aligns with the DM row above. */
|
|
|
|
padding-left: 29px;
|
2022-09-13 13:15:57 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& a {
|
2022-09-13 13:15:57 +02:00
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.unread_count {
|
|
|
|
margin-top: 2px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-08-31 06:59:42 +02:00
|
|
|
}
|
|
|
|
|
2023-10-11 19:08:42 +02:00
|
|
|
#toggle_private_messages_section_icon,
|
|
|
|
#toggle-top-left-navigation-area-icon {
|
|
|
|
opacity: 0.7;
|
|
|
|
|
|
|
|
&.fa-caret-right {
|
|
|
|
position: relative;
|
|
|
|
left: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2023-10-19 21:40:03 +02:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This renders an outline when the caret is reached
|
|
|
|
with the keyboard, although that is not at present
|
|
|
|
easily accomplished. */
|
|
|
|
&:focus-visible {
|
|
|
|
outline: 2px solid var(--color-outline-focus);
|
|
|
|
}
|
2023-10-11 19:08:42 +02:00
|
|
|
}
|
|
|
|
|
2022-09-13 13:15:57 +02:00
|
|
|
.active_private_messages_section {
|
|
|
|
#private_messages_section,
|
2023-10-30 16:18:29 +01:00
|
|
|
#direct-messages-list,
|
2023-10-30 15:44:36 +01:00
|
|
|
#hide-more-direct-messages {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(202deg 56% 91%);
|
2022-09-13 13:15:57 +02:00
|
|
|
}
|
2021-04-15 08:37:04 +02:00
|
|
|
|
2022-09-13 13:15:57 +02:00
|
|
|
#private_messages_section {
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
}
|
|
|
|
|
2023-10-30 16:18:29 +01:00
|
|
|
#direct-messages-list {
|
2022-09-13 13:15:57 +02:00
|
|
|
border-radius: 0 0 4px 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#more_private_messages_sidebar_title {
|
|
|
|
font-weight: 600;
|
2021-04-15 08:37:04 +02:00
|
|
|
}
|
2019-02-13 14:05:58 +01:00
|
|
|
}
|
|
|
|
|
2020-07-04 12:11:27 +02:00
|
|
|
:not(.active-sub-filter) {
|
|
|
|
&.top_left_row:hover,
|
2023-05-11 10:20:33 +02:00
|
|
|
&.bottom_left_row:hover {
|
2023-03-24 00:09:48 +01:00
|
|
|
background-color: var(--color-background-hover-narrow-filter);
|
2020-07-04 12:11:27 +02:00
|
|
|
border-radius: 4px;
|
|
|
|
}
|
2017-12-09 01:19:33 +01:00
|
|
|
}
|
|
|
|
|
2023-05-11 10:20:33 +02:00
|
|
|
#stream_filters .narrow-filter.highlighted_stream {
|
|
|
|
&.active-filter > .bottom_left_row {
|
|
|
|
background-color: var(--color-background-hover-narrow-filter);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active-filter .topic-list .bottom_left_row {
|
|
|
|
background-color: var(--color-background-active-narrow-filter);
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom_left_row:not(.active-sub-filter) {
|
|
|
|
background-color: var(--color-background-hover-narrow-filter);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-29 20:38:07 +01:00
|
|
|
#login-link-container,
|
2022-08-15 21:32:10 +02:00
|
|
|
#subscribe-to-more-streams {
|
2019-05-11 19:44:27 +02:00
|
|
|
text-decoration: none;
|
2021-11-19 05:12:00 +01:00
|
|
|
margin: 5px auto 5.5px 10px;
|
2022-10-04 23:33:51 +02:00
|
|
|
margin-bottom: $bottom_scrolling_buffer;
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& i {
|
2020-03-19 22:49:56 +01:00
|
|
|
min-width: 19px;
|
|
|
|
text-align: center;
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2020-03-19 22:49:56 +01:00
|
|
|
&::before {
|
|
|
|
padding-right: 3px;
|
|
|
|
}
|
|
|
|
}
|
2019-05-11 19:44:27 +02:00
|
|
|
}
|
|
|
|
|
2016-10-28 07:12:32 +02:00
|
|
|
ul.filters {
|
|
|
|
list-style-type: none;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin-left: 0;
|
2023-04-22 18:10:00 +02:00
|
|
|
color: hsl(0deg 0% 20% / 100%);
|
2016-10-28 07:12:32 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& a {
|
2020-03-20 02:34:20 +01:00
|
|
|
color: inherit;
|
2023-05-01 23:23:26 +02:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2020-03-20 02:34:20 +01:00
|
|
|
}
|
2016-10-28 07:12:32 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& hr {
|
2020-03-20 02:34:20 +01:00
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2016-10-28 07:12:32 +02:00
|
|
|
|
2023-05-19 22:31:46 +02:00
|
|
|
.has-only-muted-unreads {
|
|
|
|
.unread_count {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.has-only-muted-mentions .unread_mention_info {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
2023-05-02 02:24:11 +02:00
|
|
|
/* This is a noop in the current design, because unread counts for
|
|
|
|
muted streams have the same opacity, but the logic is here to
|
|
|
|
be explicit and because the design may change in the future. */
|
|
|
|
.more_topic_unreads_muted_only .unread_count {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& li.muted_topic,
|
2020-03-20 02:34:20 +01:00
|
|
|
li.out_of_home_view {
|
2023-04-22 18:10:00 +02:00
|
|
|
color: hsl(0deg 0% 20% / 50%);
|
|
|
|
|
2023-04-22 18:58:54 +02:00
|
|
|
.has-unmuted-mentions .unread_mention_info {
|
|
|
|
color: hsl(0deg 0% 20%);
|
|
|
|
}
|
|
|
|
|
2023-04-22 18:10:00 +02:00
|
|
|
.stream-privacy {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .unread_count {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
2023-04-25 13:37:16 +02:00
|
|
|
& .masked_unread_count {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
2023-04-22 18:24:59 +02:00
|
|
|
.has-unmuted-unreads {
|
|
|
|
.unread_count {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-25 16:07:32 +02:00
|
|
|
& li.unmuted_or_followed_topic {
|
|
|
|
color: var(--color-unmuted-or-followed-topic-list-item);
|
2023-04-22 18:14:26 +02:00
|
|
|
|
|
|
|
.unread_count {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
2020-03-20 02:34:20 +01:00
|
|
|
}
|
2020-03-20 20:21:09 +01:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& li.out_of_home_view {
|
2020-03-20 02:34:20 +01:00
|
|
|
&:hover {
|
2023-04-22 18:10:00 +02:00
|
|
|
color: hsla(0deg 0% 20% / 75%);
|
|
|
|
|
|
|
|
.stream-privacy {
|
|
|
|
opacity: 0.75;
|
|
|
|
}
|
|
|
|
|
|
|
|
.unread_count {
|
|
|
|
opacity: 0.75;
|
|
|
|
}
|
2023-04-22 18:24:59 +02:00
|
|
|
|
|
|
|
.has-unmuted-unreads {
|
|
|
|
.unread_count {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
2020-03-20 02:34:20 +01:00
|
|
|
}
|
2020-03-20 20:21:09 +01:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& li.muted_topic {
|
2020-03-20 02:34:20 +01:00
|
|
|
/* If stream is muted, this resets opacity of muted topics in muted
|
|
|
|
stream to 1; since opacity is multiplied down through child
|
2021-09-17 02:06:04 +02:00
|
|
|
elements, this avoids an unreadably low opacity. */
|
2020-03-20 02:34:20 +01:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
2020-03-20 20:21:09 +01:00
|
|
|
}
|
|
|
|
|
2016-10-28 07:12:32 +02:00
|
|
|
li.active-filter,
|
|
|
|
li.active-sub-filter {
|
|
|
|
font-weight: 600 !important;
|
|
|
|
position: relative;
|
2019-03-12 16:20:00 +01:00
|
|
|
border-radius: 4px;
|
2023-03-24 00:09:48 +01:00
|
|
|
background-color: var(--color-background-active-narrow-filter);
|
2016-10-28 07:12:32 +02:00
|
|
|
}
|
|
|
|
|
2022-10-27 14:04:02 +02:00
|
|
|
#stream_filters .narrow-filter.active-filter {
|
|
|
|
.topic-list .filter-topics,
|
|
|
|
> .bottom_left_row {
|
2023-03-24 00:09:48 +01:00
|
|
|
background-color: var(--color-background-active-narrow-filter);
|
2022-11-28 20:24:32 +01:00
|
|
|
border-radius: 4px;
|
2022-10-27 14:04:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-11 19:08:42 +02:00
|
|
|
#left-sidebar-navigation-list-condensed {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
.left-sidebar-navigation-condensed-item {
|
|
|
|
/* 24px minimum width from Vlad's design. */
|
|
|
|
flex: 1 0 24px;
|
|
|
|
/* Unset padding from individual top_left items */
|
|
|
|
padding: 0;
|
2023-10-12 18:52:37 +02:00
|
|
|
border-radius: 4px;
|
2023-10-25 16:40:09 +02:00
|
|
|
/* Set a positioning context for the unread dot. */
|
|
|
|
position: relative;
|
2023-10-12 18:52:37 +02:00
|
|
|
|
2023-10-12 19:10:12 +02:00
|
|
|
.unread_count {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
2023-10-19 21:40:03 +02:00
|
|
|
/* Show the same styles when each item is
|
|
|
|
hovered or, via the keyboard, the `<a>`
|
|
|
|
element within receives focus. */
|
|
|
|
&:hover,
|
|
|
|
&:focus-within {
|
2023-10-12 18:52:37 +02:00
|
|
|
background: var(--color-background-hover-narrow-filter);
|
2023-10-12 19:10:12 +02:00
|
|
|
|
|
|
|
.unread_count {
|
|
|
|
top: -6px;
|
|
|
|
right: -6px;
|
2023-11-03 15:52:59 +01:00
|
|
|
background: var(--color-background-unread-counter-no-alpha);
|
2023-10-12 19:10:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:hover) .unread_count {
|
|
|
|
top: 2px;
|
|
|
|
right: 2px;
|
|
|
|
width: 6px;
|
|
|
|
height: 6px;
|
|
|
|
font-size: 0;
|
|
|
|
padding: 0;
|
|
|
|
background-color: var(--color-background-unread-counter-dot);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.top_left_starred_messages .unread_count {
|
|
|
|
display: none;
|
2023-10-12 18:52:37 +02:00
|
|
|
}
|
2023-10-11 19:08:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.left-sidebar-navigation-icon-container {
|
|
|
|
/* Unset margin from full nav list anchor elements. */
|
|
|
|
margin: 0;
|
|
|
|
/* Horizontally center icons within their boxes. */
|
|
|
|
text-align: center;
|
2023-10-12 19:10:12 +02:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
/* Unset inherited :focus outline. */
|
|
|
|
outline: 0;
|
|
|
|
}
|
2023-10-11 19:08:42 +02:00
|
|
|
}
|
|
|
|
|
2023-10-12 18:52:37 +02:00
|
|
|
.active-filter {
|
|
|
|
/* Don't display a background on condensed icons. */
|
|
|
|
background: unset;
|
|
|
|
}
|
|
|
|
|
2023-10-11 19:08:42 +02:00
|
|
|
.filter-icon {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
/* TODO: Set this 24px height value as a variable.
|
|
|
|
Keep filter-icon height the full height of the box. */
|
|
|
|
height: 24px;
|
2023-10-24 20:52:16 +02:00
|
|
|
/* Enlarge icons slightly in condensed views. */
|
|
|
|
font-size: 15px;
|
2023-10-11 19:08:42 +02:00
|
|
|
color: var(--color-left-sidebar-navigation-icon);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-10 21:00:28 +02:00
|
|
|
#left-sidebar-navigation-list {
|
2022-09-13 13:15:57 +02:00
|
|
|
margin-bottom: $sections_vertical_gutter;
|
2023-11-02 20:17:42 +01:00
|
|
|
/* We display this as a grid only to control
|
|
|
|
the order of home views, using a single
|
|
|
|
named grid area. */
|
|
|
|
display: grid;
|
|
|
|
grid-template-areas: "selected-home-view";
|
2020-03-20 19:58:49 +01:00
|
|
|
|
2023-10-10 21:00:28 +02:00
|
|
|
.left-sidebar-navigation-label-container {
|
|
|
|
.left-sidebar-navigation-label {
|
2023-08-10 14:07:22 +02:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
}
|
2020-03-20 19:58:49 +01:00
|
|
|
}
|
|
|
|
|
2023-11-02 20:17:42 +01:00
|
|
|
.selected-home-view {
|
|
|
|
/* This bumps the selected view to the
|
|
|
|
top of the grid (expanded list).
|
|
|
|
Others items will auto place in the
|
|
|
|
remaining auto-generated grid rows. */
|
|
|
|
grid-area: selected-home-view;
|
|
|
|
/* The condensed view is a flexbox, so
|
|
|
|
here we'll use a negative order to
|
|
|
|
bump the selected home view to the
|
|
|
|
start of the flexbox (lefthand side). */
|
|
|
|
order: -1;
|
|
|
|
}
|
|
|
|
|
2023-10-16 21:21:44 +02:00
|
|
|
.top_left_starred_messages .unread_count,
|
|
|
|
.top_left_drafts .unread_count,
|
|
|
|
.top_left_scheduled_messages .unread_count,
|
|
|
|
.condensed-views-popover-menu .unread_count {
|
|
|
|
background-color: unset;
|
|
|
|
color: inherit;
|
|
|
|
border: 0.5px solid var(--color-border-unread-counter);
|
2019-03-12 15:08:28 +01:00
|
|
|
}
|
|
|
|
|
2023-11-02 20:08:30 +01:00
|
|
|
/* Don't show unread counts on views... */
|
|
|
|
.top_left_inbox,
|
|
|
|
.top_left_recent_view,
|
|
|
|
.top_left_all_messages {
|
|
|
|
.unread_count {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
/* ...unless it's the selected home view. */
|
|
|
|
&.selected-home-view .unread_count {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-16 21:41:23 +02:00
|
|
|
/* Don't show the scheduled messages item... */
|
|
|
|
li.top_left_scheduled_messages {
|
|
|
|
display: none;
|
|
|
|
/* ...unless there are scheduled messages to show. */
|
|
|
|
&.show-with-scheduled-messages {
|
2023-10-20 18:34:05 +02:00
|
|
|
/* Use display: grid to preserve the grid
|
|
|
|
layout when visible. */
|
|
|
|
display: grid;
|
2023-10-16 21:41:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-12 15:08:28 +01:00
|
|
|
.top_left_row {
|
2023-10-20 18:34:05 +02:00
|
|
|
/* The row grid for the outer .top_left_row
|
|
|
|
is chiefly for lefthand spacing and placing
|
|
|
|
the inner row content and vdots. */
|
|
|
|
grid-template-columns: 7px 0 minmax(0, 1fr) 0 30px 0;
|
|
|
|
|
|
|
|
.sidebar-menu-icon {
|
|
|
|
grid-area: ending-anchor-element;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.left-sidebar-navigation-label-container {
|
|
|
|
grid-area: row-content;
|
|
|
|
/* The label container itself is also a grid,
|
|
|
|
for laying out the items that are its
|
|
|
|
children. Same template areas, different
|
|
|
|
column widths. */
|
|
|
|
grid-template-columns: 0 22px minmax(0, 1fr) max-content 0 0;
|
|
|
|
/* This is a legacy value, from a former
|
|
|
|
1px of top padding on top_left_row plus
|
|
|
|
an inner 1px top margin on `<a>` elements.
|
|
|
|
|
|
|
|
These are added here, rather than on the label
|
|
|
|
container, to keep all hovered/highlighted areas
|
|
|
|
clickable.
|
|
|
|
|
|
|
|
This complicates true centering within a
|
|
|
|
row highlight. It might be better to make
|
|
|
|
these both 2px.
|
|
|
|
*/
|
|
|
|
padding-top: 2px;
|
|
|
|
padding-bottom: 1px;
|
|
|
|
|
|
|
|
.filter-icon {
|
|
|
|
grid-area: starting-anchor-element;
|
2023-10-24 18:56:21 +02:00
|
|
|
/* Use a flex container to handle
|
|
|
|
icon centering within the grid area. */
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2023-10-20 18:34:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.left-sidebar-navigation-label {
|
|
|
|
grid-area: row-content;
|
2023-10-25 17:31:07 +02:00
|
|
|
padding-right: $before_unread_count_padding;
|
2023-10-20 18:34:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.unread_count {
|
|
|
|
grid-area: markers-and-controls;
|
|
|
|
}
|
2017-04-17 22:19:47 +02:00
|
|
|
}
|
|
|
|
|
2019-02-12 04:12:20 +01:00
|
|
|
.conversation-partners {
|
2023-10-31 15:42:50 +01:00
|
|
|
grid-area: row-content;
|
2023-10-31 16:23:17 +01:00
|
|
|
/* Set an 18px line-height to better vertically
|
|
|
|
center user circles and icons (both of which
|
|
|
|
have even heights). */
|
|
|
|
line-height: 18px;
|
2023-09-18 19:13:51 +02:00
|
|
|
overflow: hidden;
|
2023-10-31 15:42:50 +01:00
|
|
|
text-overflow: ellipsis;
|
2023-10-31 16:53:54 +01:00
|
|
|
/* Use an inline grid to provide a modern layout
|
|
|
|
for status emoji in DM rows, while preserving
|
|
|
|
the expected ellipsis behavior on long usernames
|
|
|
|
or large DM groups.
|
|
|
|
The 16px-tall emoji will also align well
|
|
|
|
vertically with the 18px line-height here. */
|
|
|
|
display: inline-grid;
|
|
|
|
/* Provide a two-column grid, sized to accommodate
|
|
|
|
the content of the conversation list and status
|
|
|
|
emoji, if any. */
|
|
|
|
grid-template-columns: repeat(2, minmax(0, max-content));
|
|
|
|
align-items: center;
|
2023-09-18 19:13:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.conversation-partners .status-emoji {
|
|
|
|
/* Prevent status emoji from colliding
|
|
|
|
with unread counts. */
|
|
|
|
margin-right: 3px;
|
2019-02-12 04:12:20 +01:00
|
|
|
}
|
|
|
|
|
2023-09-21 20:56:20 +02:00
|
|
|
/* New .topic-box grid definitions here. */
|
2023-10-11 19:08:42 +02:00
|
|
|
#views-label-container,
|
2023-10-20 18:34:05 +02:00
|
|
|
.top_left_row,
|
|
|
|
.left-sidebar-navigation-label-container,
|
2023-10-31 15:42:50 +01:00
|
|
|
.dm-box,
|
2023-09-25 19:03:22 +02:00
|
|
|
.subscription_block,
|
2017-07-20 04:46:01 +02:00
|
|
|
.topic-box {
|
2023-09-21 20:56:20 +02:00
|
|
|
display: grid;
|
|
|
|
align-items: center;
|
|
|
|
/* This general pattern of elements applies to every single row in the left
|
|
|
|
sidebar, to some degree or another. Eventually, these template areas
|
|
|
|
could be applied to all rows, with different `grid-template-column`
|
|
|
|
values applied as needed (and shared as needed). For example, an element
|
|
|
|
with no "starting-offset" sets that area to `0`; so too with other non-
|
|
|
|
existent elements.
|
|
|
|
|
|
|
|
The offsets themselves are meant to greedily assign all of the available
|
|
|
|
horizontal space to the content area of the row. That space can then be
|
|
|
|
modified or reassigned as needed, without running up against `padding`
|
|
|
|
(which alters the box size) or `margin` (which notoriously bleeds outside
|
|
|
|
of the element it's defined on). */
|
|
|
|
grid-template-areas: "starting-offset starting-anchor-element row-content markers-and-controls ending-anchor-element ending-offset";
|
2023-09-25 19:03:22 +02:00
|
|
|
}
|
|
|
|
|
2023-11-09 00:36:56 +01:00
|
|
|
#private_messages_section_header,
|
|
|
|
#streams_header {
|
|
|
|
display: grid;
|
|
|
|
align-items: center;
|
|
|
|
/* This extends the general pattern of left sidebar rows, but includes a
|
|
|
|
second grid row for placing filter boxes. This pattern keeps the box
|
|
|
|
aligned with the text content in `row-content` and includes the
|
|
|
|
`ending-anchor-element` space.
|
|
|
|
|
|
|
|
There is currently no filter box on DM rows, but we can prepare for
|
|
|
|
that now by having it share this grid template. Its row and column
|
|
|
|
definitions have the final say about dimensions and placement. */
|
|
|
|
grid-template-areas:
|
|
|
|
"starting-offset starting-anchor-element row-content markers-and-controls ending-anchor-element ending-offset"
|
|
|
|
". . filter-box filter-box filter-box . ";
|
|
|
|
}
|
|
|
|
|
2023-10-11 19:08:42 +02:00
|
|
|
#views-label-container {
|
|
|
|
grid-template-columns:
|
|
|
|
0 15px minmax(0, 0.5fr) minmax(0, 1fr)
|
2023-10-20 21:20:09 +02:00
|
|
|
30px 12px;
|
2023-10-11 19:08:42 +02:00
|
|
|
/* Base height on 24px icon-target area from Vlad's design. */
|
|
|
|
grid-template-rows: 24px;
|
|
|
|
/* TODO: Rewrite the `--left-sidebar-collapse-widget-gutter`
|
|
|
|
value and the styles dependent on it so that this kind of
|
|
|
|
1990s layout shenanigans is made unnecessary. */
|
|
|
|
margin-left: -3px;
|
|
|
|
cursor: pointer;
|
|
|
|
|
2023-10-16 21:50:48 +02:00
|
|
|
&.showing-expanded-navigation {
|
|
|
|
/* When the expanded navigation is visible,
|
|
|
|
hide the condensed navigation's controls. */
|
|
|
|
#left-sidebar-navigation-list-condensed,
|
|
|
|
.left-sidebar-navigation-menu-icon {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
/* Give the sidebar title through the end of the markers
|
|
|
|
area, if needed. */
|
2023-11-08 20:33:55 +01:00
|
|
|
.left-sidebar-title {
|
2023-10-16 21:50:48 +02:00
|
|
|
grid-column: row-content-start / markers-and-controls-end;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Use a next-sibling combinator (+) to use CSS to show and hide
|
|
|
|
filter rows as needed, based on the narrow. */
|
|
|
|
&.showing-condensed-navigation {
|
|
|
|
+ #left-sidebar-navigation-list {
|
|
|
|
/* When the navigation area is condensed, hide all
|
|
|
|
the rows in the full navigation list... */
|
|
|
|
& .top_left_row {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
/* ...except when there is an active filter in place:
|
|
|
|
that row should still be shown. */
|
|
|
|
& .top_left_row.active-filter {
|
2023-10-20 18:34:05 +02:00
|
|
|
display: grid;
|
2023-10-16 21:50:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-11 19:08:42 +02:00
|
|
|
#toggle-top-left-navigation-area-icon {
|
|
|
|
grid-area: starting-anchor-element;
|
|
|
|
}
|
|
|
|
|
2023-11-08 20:33:55 +01:00
|
|
|
.left-sidebar-title {
|
2023-10-11 19:08:42 +02:00
|
|
|
grid-area: row-content;
|
|
|
|
}
|
|
|
|
|
|
|
|
#left-sidebar-navigation-list-condensed {
|
|
|
|
margin: 0;
|
|
|
|
grid-area: markers-and-controls;
|
|
|
|
}
|
|
|
|
|
|
|
|
.left-sidebar-navigation-menu-icon {
|
|
|
|
grid-area: ending-anchor-element;
|
|
|
|
/* Horizontally center vdots. */
|
|
|
|
justify-self: center;
|
|
|
|
/* Properly size vdots. */
|
|
|
|
font-size: 17px;
|
|
|
|
/* Occupy same clickable height as
|
|
|
|
other condensed-view icons */
|
|
|
|
height: 24px;
|
|
|
|
/* Vertically center dots with
|
|
|
|
flexbox. */
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2023-10-16 21:21:44 +02:00
|
|
|
color: var(--color-left-sidebar-header-vdots-visible);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: var(--color-vdots-hover);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.condensed-views-popover-menu {
|
|
|
|
.left-sidebar-popover-icon-label-count {
|
|
|
|
display: flex;
|
|
|
|
align-items: baseline;
|
|
|
|
}
|
|
|
|
|
2023-10-19 21:25:32 +02:00
|
|
|
.filter-icon {
|
|
|
|
align-self: center;
|
|
|
|
height: 15px;
|
|
|
|
}
|
|
|
|
|
2023-10-16 21:21:44 +02:00
|
|
|
.left-sidebar-navigation-label {
|
|
|
|
flex: 1 0 0;
|
|
|
|
margin-left: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.unread_count {
|
|
|
|
margin-left: 6px;
|
|
|
|
border-color: var(--color-border-unread-counter-popover-menu);
|
2023-10-11 19:08:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-25 19:03:22 +02:00
|
|
|
.subscription_block {
|
|
|
|
grid-template-columns:
|
|
|
|
7px 22px minmax(0, 1fr) minmax(0, max-content)
|
|
|
|
30px 0;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
.stream-privacy {
|
|
|
|
grid-area: starting-anchor-element;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stream-name {
|
|
|
|
grid-area: row-content;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.topic-box {
|
|
|
|
/* Padding from original .topic-box definition. */
|
|
|
|
padding-top: 1px;
|
2023-09-21 20:56:20 +02:00
|
|
|
grid-template-columns:
|
|
|
|
25px $topic_resolve_width minmax(0, 1fr) minmax(0, max-content)
|
|
|
|
30px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.topic-box .zero_count {
|
|
|
|
display: none;
|
2017-07-20 04:46:01 +02:00
|
|
|
}
|
|
|
|
|
2021-07-01 10:19:59 +02:00
|
|
|
.sidebar-topic-check {
|
2023-09-21 20:56:20 +02:00
|
|
|
grid-area: starting-anchor-element;
|
2021-07-01 10:19:59 +02:00
|
|
|
font-size: 15px;
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
|
2023-09-21 20:56:20 +02:00
|
|
|
.topic-name {
|
|
|
|
grid-area: row-content;
|
2023-10-25 17:31:07 +02:00
|
|
|
padding: 1px $before_unread_count_padding 1px 0;
|
2023-09-21 20:56:20 +02:00
|
|
|
|
|
|
|
/* TODO: We should figure out how to remove this without changing the spacing */
|
|
|
|
line-height: 1.1;
|
|
|
|
|
|
|
|
/* TODO: Consolidate these styles with conversation partners and stream name
|
|
|
|
once grid rewrite is complete on all sidebar rows.
|
|
|
|
|
|
|
|
Also: note that these styles will be moot for topic names once we allow
|
|
|
|
for multiline topics. If we hold multiline topics to a certain number
|
|
|
|
of lines, we'll likely need a JavaScript-based solution like Clamp.js
|
|
|
|
to display an ellipsis on the final visible line. */
|
|
|
|
white-space: nowrap;
|
|
|
|
/* Both `hidden` and `clip` are shown for the sake
|
|
|
|
of older browsers that do not support `clip`. */
|
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-x: clip;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
2023-09-25 19:03:22 +02:00
|
|
|
.stream-markers-and-controls,
|
2023-09-21 20:56:20 +02:00
|
|
|
.topic-markers-and-controls {
|
|
|
|
grid-area: markers-and-controls;
|
2023-09-21 21:40:53 +02:00
|
|
|
display: flex;
|
|
|
|
/* Present a uniform space between icons */
|
|
|
|
gap: 5px;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.unread_mention_info {
|
|
|
|
/* Unset margin in favor of flex gap. */
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.unread_count {
|
|
|
|
/* Height is set here by the flexbox; this
|
|
|
|
decouples .unread_count from the app-wide
|
|
|
|
definition. */
|
|
|
|
height: auto;
|
|
|
|
}
|
2023-09-21 20:56:20 +02:00
|
|
|
}
|
|
|
|
|
2023-10-20 21:20:09 +02:00
|
|
|
.bottom_left_row .sidebar-menu-icon {
|
2023-09-21 20:56:20 +02:00
|
|
|
grid-area: ending-anchor-element;
|
|
|
|
}
|
|
|
|
|
2023-09-18 19:13:51 +02:00
|
|
|
.conversation-partners-list,
|
2023-01-31 09:53:46 +01:00
|
|
|
.stream-name {
|
2022-02-07 20:33:52 +01:00
|
|
|
white-space: nowrap;
|
2022-12-25 05:58:13 +01:00
|
|
|
overflow-x: hidden;
|
2022-12-14 23:21:38 +01:00
|
|
|
overflow-x: clip;
|
2016-11-05 20:23:40 +01:00
|
|
|
text-overflow: ellipsis;
|
2023-01-31 09:53:46 +01:00
|
|
|
padding: 1px $before_unread_count_padding 1px 0;
|
2016-11-05 20:23:40 +01:00
|
|
|
}
|
|
|
|
|
2023-09-18 19:13:51 +02:00
|
|
|
.conversation-partners-list {
|
2023-10-31 15:42:50 +01:00
|
|
|
/* TODO: See about consolidating or re-expressing
|
|
|
|
.stream-name spacing so as to not require
|
|
|
|
padding there, either. */
|
|
|
|
padding: 0;
|
2023-09-18 19:13:51 +02:00
|
|
|
}
|
|
|
|
|
2019-03-01 21:06:53 +01:00
|
|
|
/*
|
|
|
|
All of our left sidebar handlers use absolute
|
|
|
|
positioning. We should fix that.
|
|
|
|
*/
|
2023-10-25 01:23:26 +02:00
|
|
|
.bottom_left_row .sidebar-menu-icon,
|
|
|
|
.top_left_row .sidebar-menu-icon {
|
2016-10-28 07:12:32 +02:00
|
|
|
display: none;
|
2023-10-20 21:20:09 +02:00
|
|
|
width: 100%;
|
|
|
|
cursor: pointer;
|
|
|
|
/* Use a flex container to handle
|
|
|
|
icon centering within the grid area.
|
|
|
|
:hover actually sets the `display: flex`,
|
|
|
|
so it remains hidden otherwise. */
|
|
|
|
justify-content: center;
|
2023-09-15 18:29:22 +02:00
|
|
|
text-align: center;
|
2023-10-20 21:20:09 +02:00
|
|
|
/* Set the icon size, which will be inherited
|
|
|
|
by .zulip-icon */
|
|
|
|
font-size: 17px;
|
2020-03-20 02:28:13 +01:00
|
|
|
|
|
|
|
/*
|
2020-06-16 07:10:28 +02:00
|
|
|
If you hover directly over the ellipsis itself,
|
2020-03-20 02:28:13 +01:00
|
|
|
show it in black.
|
|
|
|
*/
|
|
|
|
|
|
|
|
&:hover {
|
2023-09-15 18:29:22 +02:00
|
|
|
color: var(--color-vdots-hover);
|
2020-03-20 02:28:13 +01:00
|
|
|
}
|
2021-03-01 09:21:29 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
Hover does not work for touch-based devices like mobile phones.
|
|
|
|
Hence the the icons does not appear, making the user unaware of its
|
|
|
|
presence on such devices. The following media property displays the
|
|
|
|
icon by default for such behaviour.
|
|
|
|
*/
|
|
|
|
|
|
|
|
@media (hover: none) {
|
2023-10-20 21:20:09 +02:00
|
|
|
display: flex;
|
2023-09-15 18:29:22 +02:00
|
|
|
/* Show dots on touchscreens in a less distracting,
|
|
|
|
lighter shade. */
|
|
|
|
color: var(--color-vdots-hint);
|
2021-03-01 09:21:29 +01:00
|
|
|
}
|
2020-03-20 20:09:10 +01:00
|
|
|
}
|
|
|
|
|
2019-03-01 21:06:53 +01:00
|
|
|
/*
|
2023-09-15 18:29:22 +02:00
|
|
|
When you hover over list items, we hover
|
|
|
|
the vdots in light gray.
|
|
|
|
|
|
|
|
The stream icon should always display when
|
|
|
|
any topic is hovered, which is why it gets
|
|
|
|
a more specific selector here.
|
2019-03-01 21:06:53 +01:00
|
|
|
*/
|
2023-09-15 18:29:22 +02:00
|
|
|
#stream_filters li:hover .stream-sidebar-menu-icon,
|
|
|
|
.top_left_row:hover .sidebar-menu-icon,
|
2023-11-06 13:45:02 +01:00
|
|
|
.bottom_left_row:hover .sidebar-menu-icon,
|
|
|
|
.column-left .left-sidebar .left_sidebar_menu_icon_visible {
|
2023-10-20 21:20:09 +02:00
|
|
|
/* We push against `display: none` with
|
|
|
|
`display: flex` because the sidebar vdots
|
|
|
|
all expect to be displayed as flex items
|
|
|
|
when visible. Their vertical alignment
|
|
|
|
depends on it, too. */
|
|
|
|
display: flex;
|
2023-09-15 18:29:22 +02:00
|
|
|
color: var(--color-vdots-visible);
|
|
|
|
|
|
|
|
/*
|
|
|
|
If you hover directly over the vdots icon,
|
|
|
|
show it in black.
|
|
|
|
*/
|
|
|
|
&:hover {
|
|
|
|
color: var(--color-vdots-hover);
|
|
|
|
}
|
2016-10-28 07:12:32 +02:00
|
|
|
}
|
|
|
|
|
2019-03-01 21:06:53 +01:00
|
|
|
/*
|
2020-06-06 01:27:23 +02:00
|
|
|
For topic ellipsis-v(vertical 3 dots) we use a slightly smaller
|
2019-03-01 21:06:53 +01:00
|
|
|
font to show they're "lower" in the hierarchy,
|
|
|
|
which also affects it positioning.
|
|
|
|
*/
|
2023-10-20 21:20:09 +02:00
|
|
|
.topic-sidebar-menu-icon {
|
|
|
|
/* 0.9em, but with a pixel value because the
|
|
|
|
ordinary 17px vdots size is not inherited
|
|
|
|
here, so we can't express an em-value
|
|
|
|
directly. Pixels are easier to reason
|
|
|
|
about with icons, anyway. */
|
|
|
|
font-size: 15.3px;
|
2016-10-28 07:12:32 +02:00
|
|
|
}
|
|
|
|
|
2016-11-05 19:34:47 +01:00
|
|
|
ul.topic-list {
|
2016-10-28 07:12:32 +02:00
|
|
|
list-style-type: none;
|
|
|
|
font-weight: normal;
|
2017-04-17 22:19:47 +02:00
|
|
|
}
|
|
|
|
|
2016-11-05 19:38:23 +01:00
|
|
|
li.topic-list-item {
|
2016-10-28 07:12:32 +02:00
|
|
|
position: relative;
|
2017-04-18 20:05:48 +02:00
|
|
|
padding-right: 5px;
|
2016-10-28 07:12:32 +02:00
|
|
|
}
|
|
|
|
|
2023-10-30 15:30:59 +01:00
|
|
|
.dm-box {
|
2023-10-31 15:42:50 +01:00
|
|
|
grid-template-columns: 7px 22px minmax(0, 1fr) minmax(0, max-content) 30px 0;
|
2023-10-31 16:23:17 +01:00
|
|
|
/* This padding maintains a 22px height on DM rows. */
|
|
|
|
padding: 2.25px 0;
|
2023-10-31 15:42:50 +01:00
|
|
|
|
|
|
|
.conversation-partners-icon {
|
|
|
|
grid-area: starting-anchor-element;
|
2023-11-09 00:35:32 +01:00
|
|
|
place-self: center;
|
2023-10-31 15:42:50 +01:00
|
|
|
}
|
2017-04-17 22:19:47 +02:00
|
|
|
|
2020-03-20 02:53:55 +01:00
|
|
|
.user_circle {
|
2023-10-31 15:42:50 +01:00
|
|
|
width: 8px;
|
2020-03-20 02:53:55 +01:00
|
|
|
height: 8px;
|
2023-10-31 15:42:50 +01:00
|
|
|
/* TODO: Remove these after right-sidebar
|
|
|
|
row rewrites. */
|
|
|
|
float: none;
|
|
|
|
position: static;
|
2020-03-20 02:53:55 +01:00
|
|
|
}
|
2023-04-11 14:43:49 +02:00
|
|
|
|
|
|
|
.zulip-icon.zulip-icon-bot {
|
2023-05-11 16:58:00 +02:00
|
|
|
font-size: 90%; /* Reduce the bulkiness of this icon */
|
|
|
|
padding: 3px 0 3px 1px; /* Shift reduced icon a pixel left to maintain horizontal centering. */
|
2023-04-11 14:43:49 +02:00
|
|
|
}
|
2019-02-18 16:32:27 +01:00
|
|
|
|
2023-10-31 15:42:50 +01:00
|
|
|
.unread_count {
|
|
|
|
grid-area: markers-and-controls;
|
2023-10-31 16:23:17 +01:00
|
|
|
/* TODO: This is an alternative method
|
|
|
|
for presenting a 16px-tall unread
|
|
|
|
counter, regardless of context. This
|
|
|
|
method could be used app-wide once
|
|
|
|
all of the layout methods for presenting
|
|
|
|
unreads have been modernized.
|
|
|
|
|
|
|
|
Set the line-height to match the
|
|
|
|
font-size, so that the numerals sit in
|
|
|
|
a 12px box. */
|
|
|
|
line-height: 12px;
|
|
|
|
/* Use flexbox to vertically center
|
|
|
|
the 12px-high text node within the
|
|
|
|
16px-high unread box. */
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2023-10-31 15:42:50 +01:00
|
|
|
}
|
2016-10-28 07:12:32 +02:00
|
|
|
}
|
|
|
|
|
2020-03-19 20:16:59 +01:00
|
|
|
.zoom-out {
|
|
|
|
#topics_header {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-09-13 13:15:57 +02:00
|
|
|
|
|
|
|
.zoom-out-hide {
|
|
|
|
display: none;
|
|
|
|
}
|
2016-10-28 07:12:32 +02:00
|
|
|
}
|
|
|
|
|
2017-07-07 23:59:18 +02:00
|
|
|
#topics_header {
|
2022-10-27 14:04:02 +02:00
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
z-index: 2;
|
2016-10-28 07:12:32 +02:00
|
|
|
margin-right: 10px;
|
2022-11-02 05:16:11 +01:00
|
|
|
padding-top: $sections_vertical_gutter;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 43%);
|
2023-03-24 00:09:48 +01:00
|
|
|
background-color: var(--color-background);
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2022-11-01 17:11:58 +01:00
|
|
|
.show-all-streams {
|
2020-03-19 20:16:59 +01:00
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
text-transform: uppercase;
|
2022-11-03 03:56:06 +01:00
|
|
|
margin-left: calc($far_left_gutter_size + 2px);
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& i {
|
2022-09-13 13:15:57 +02:00
|
|
|
margin: 0 6px 0 13px;
|
2020-03-19 20:16:59 +01:00
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
|
|
|
}
|
|
|
|
}
|
2016-10-28 07:12:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#streams_header {
|
2023-11-09 00:36:56 +01:00
|
|
|
grid-template-columns: 0 0 minmax(0, 1fr) minmax(17px, max-content) 30px 12px;
|
|
|
|
/* Keep the stream-search area rows collapsed. */
|
|
|
|
grid-template-rows: 24px 0 0;
|
2018-01-04 18:14:27 +01:00
|
|
|
cursor: pointer;
|
2022-11-01 16:56:59 +01:00
|
|
|
padding: $sections_vertical_gutter 0 3px calc($far_left_gutter_size + 2px);
|
2022-09-13 13:15:57 +02:00
|
|
|
position: sticky;
|
2023-03-24 00:09:48 +01:00
|
|
|
background-color: var(--color-background);
|
2022-11-16 19:44:50 +01:00
|
|
|
/* Ideally, 0px should work here, but maybe simplebar is doing something
|
|
|
|
that is creating `0.5px` extra gap in zoomed-in windows. */
|
2022-09-13 13:15:57 +02:00
|
|
|
z-index: 1;
|
2021-10-25 22:34:46 +02:00
|
|
|
|
2023-11-09 00:36:56 +01:00
|
|
|
&.showing-stream-search-section {
|
|
|
|
/* Open up the stream-search rows. The 10px
|
|
|
|
row maintains space with the streams list
|
|
|
|
below. */
|
|
|
|
grid-template-rows: 24px 28px 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.left-sidebar-title {
|
|
|
|
grid-area: row-content;
|
|
|
|
}
|
|
|
|
|
|
|
|
.heading-markers-and-controls {
|
|
|
|
grid-area: markers-and-controls;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#filter_streams_tooltip {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
/* Filter streams tooltip is just a block,
|
|
|
|
not a flex or grid item at present,
|
|
|
|
so we fill the row height this way. */
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: In the redesign, the streams icons will
|
|
|
|
be grouped and placed to the left of a new
|
|
|
|
unread count on Streams. */
|
|
|
|
#add_streams_tooltip {
|
|
|
|
grid-area: ending-anchor-element;
|
|
|
|
align-self: stretch;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2023-06-28 09:10:12 +02:00
|
|
|
.input-append {
|
2023-11-09 00:36:56 +01:00
|
|
|
grid-area: filter-box;
|
|
|
|
display: flex;
|
|
|
|
justify-content: stretch;
|
|
|
|
/* Set an even line-height for better
|
|
|
|
vertical centering. */
|
|
|
|
line-height: 20px;
|
2023-06-28 09:10:12 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
& input {
|
2023-11-09 00:36:56 +01:00
|
|
|
/* Use the border-box model so flex
|
|
|
|
can do its thing despite whatever
|
|
|
|
padding and border we specify. */
|
|
|
|
box-sizing: border-box;
|
|
|
|
flex: 1 0 100%;
|
|
|
|
/* Match the input height exactly
|
|
|
|
with the row height for a perfect
|
|
|
|
fit and better vertical alignment. */
|
|
|
|
height: 28px;
|
|
|
|
/* Pad the entire clear-button area,
|
|
|
|
so that input text does not bleed
|
|
|
|
into there. */
|
|
|
|
padding-right: 30px;
|
2023-06-28 09:10:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.clear_search_button {
|
2023-11-09 00:36:56 +01:00
|
|
|
/* Use the border-box model so flex
|
|
|
|
can do its thing despite whatever
|
|
|
|
padding and border we specify. */
|
|
|
|
box-sizing: border-box;
|
|
|
|
/* Clear inherited positioning. */
|
|
|
|
position: static;
|
|
|
|
/* We're going to use flexbox, not
|
|
|
|
positioning, to get the clear button
|
|
|
|
over top of the input. This -30px
|
|
|
|
margin accomplishes that, in tandem
|
|
|
|
with the 30px width of this element,
|
|
|
|
which is shared with the ending
|
|
|
|
anchor element in left sidebar header
|
|
|
|
rows. */
|
|
|
|
width: 30px;
|
|
|
|
margin-left: -30px;
|
|
|
|
/* Flexbox respects z-index; this just
|
|
|
|
ensures the button remains over top
|
|
|
|
of the input. */
|
|
|
|
z-index: 1;
|
|
|
|
/* Make the button itself a flex container,
|
|
|
|
so we can perfectly center the X icon. */
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
/* Flexbox will pull the element open
|
|
|
|
to make a generous clickable area. */
|
|
|
|
padding: 0;
|
2023-06-28 09:10:12 +02:00
|
|
|
}
|
2021-10-25 22:34:46 +02:00
|
|
|
}
|
2016-10-28 07:12:32 +02:00
|
|
|
}
|
|
|
|
|
2022-02-20 21:32:14 +01:00
|
|
|
.streams_subheader {
|
|
|
|
font-size: 0.8em;
|
|
|
|
font-weight: normal;
|
|
|
|
padding-left: $far_left_gutter_size;
|
|
|
|
cursor: pointer;
|
|
|
|
text-align: center;
|
|
|
|
margin-right: 12px;
|
2023-03-24 00:09:48 +01:00
|
|
|
color: hsl(240deg 10% 50%);
|
2022-02-20 21:32:14 +01:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& span {
|
2022-02-20 21:32:14 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
width: 100%;
|
|
|
|
left: 0.5em;
|
|
|
|
right: 0.5em;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& span::before,
|
2022-02-20 21:32:14 +01:00
|
|
|
span::after {
|
|
|
|
content: " ";
|
|
|
|
flex: 1 1;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin: auto;
|
2023-03-24 00:09:48 +01:00
|
|
|
border: 0.5px solid hsl(240deg 10% 50%);
|
|
|
|
opacity: 0.2;
|
2022-02-20 21:32:14 +01:00
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& span::before {
|
2022-02-20 21:32:14 +01:00
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& span::after {
|
2022-02-20 21:32:14 +01:00
|
|
|
margin-left: 0.5em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-25 08:18:45 +02:00
|
|
|
.stream-list-filter {
|
2021-10-25 22:34:46 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
2021-05-25 08:18:45 +02:00
|
|
|
}
|
|
|
|
|
2021-06-08 18:42:06 +02:00
|
|
|
.topic-list-filter {
|
|
|
|
/* Input width = 100% - 30px right-margin - 6px right-padding */
|
|
|
|
/* To keep the right edge of input along with its borders inline with other
|
|
|
|
topic items we consider to subtract the space given for right margin of
|
|
|
|
other items, and right padding of input element. */
|
|
|
|
width: calc(100% - 36px);
|
|
|
|
}
|
|
|
|
|
2016-10-28 07:12:32 +02:00
|
|
|
.zero_count {
|
2018-01-29 06:16:21 +01:00
|
|
|
visibility: hidden;
|
2016-10-28 07:12:32 +02:00
|
|
|
}
|
|
|
|
|
2023-05-19 22:31:46 +02:00
|
|
|
.zero-topic-unreads.show-more-topics .topic-box {
|
|
|
|
margin-right: 30px;
|
|
|
|
}
|
|
|
|
|
2017-09-27 00:48:17 +02:00
|
|
|
.searching-for-more-topics img {
|
|
|
|
height: 16px;
|
|
|
|
margin-left: 6px;
|
2017-09-22 00:12:55 +02:00
|
|
|
}
|
|
|
|
|
2020-03-20 00:05:50 +01:00
|
|
|
.zoom-in {
|
2022-10-27 14:04:02 +02:00
|
|
|
.narrow-filter > .bottom_left_row {
|
|
|
|
position: sticky;
|
2022-11-02 05:16:11 +01:00
|
|
|
top: calc($sections_vertical_gutter + 20px);
|
2022-10-27 14:04:02 +02:00
|
|
|
z-index: 2;
|
|
|
|
padding-bottom: 1px;
|
2023-03-24 00:09:48 +01:00
|
|
|
background-color: var(--color-background);
|
2022-10-27 14:04:02 +02:00
|
|
|
}
|
|
|
|
|
2022-11-01 04:08:36 +01:00
|
|
|
#subscribe-to-more-streams,
|
2020-03-20 00:05:50 +01:00
|
|
|
.show-more-topics {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2023-10-30 16:11:34 +01:00
|
|
|
&.direct-messages-container ul.dm-list {
|
2022-10-04 23:33:51 +02:00
|
|
|
margin-bottom: $bottom_scrolling_buffer;
|
|
|
|
}
|
|
|
|
|
2022-09-13 13:15:57 +02:00
|
|
|
#more_private_messages_sidebar_title {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2023-10-30 15:44:36 +01:00
|
|
|
#hide-more-direct-messages {
|
2022-09-13 13:15:57 +02:00
|
|
|
display: block;
|
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
|
|
|
font-size: 12px;
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& span {
|
2022-09-13 13:15:57 +02:00
|
|
|
display: block;
|
2023-10-31 17:08:59 +01:00
|
|
|
/* TODO: Rewrite the show-more and show-less
|
|
|
|
buttons as grids alongside the left sidebar
|
|
|
|
header rewrites. The 6px left padding here
|
|
|
|
aligns the "back to streams" text with the
|
|
|
|
DIRECT MESSAGES heading above. */
|
|
|
|
padding: 2px 0 2px 6px;
|
2022-09-13 13:15:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2023-03-17 22:10:10 +01:00
|
|
|
& span {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(120deg 12.3% 71.4% / 38%);
|
2022-09-13 13:15:57 +02:00
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-20 00:05:50 +01:00
|
|
|
.zoom-in-hide {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-09-13 13:15:57 +02:00
|
|
|
|
|
|
|
.zoom-in-sticky {
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
z-index: 1;
|
|
|
|
padding: 3px 0 3px $far_left_gutter_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
#show_all_private_messages {
|
|
|
|
margin-right: 5px !important;
|
|
|
|
}
|
2016-10-28 07:12:32 +02:00
|
|
|
}
|