mirror of https://github.com/zulip/zulip.git
504 lines
14 KiB
CSS
504 lines
14 KiB
CSS
.inbox-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: var(--color-background-inbox);
|
|
font-size: 15px;
|
|
padding: 0;
|
|
border-radius: 4px;
|
|
border-right: 1px solid var(--color-border-inbox);
|
|
border-left: 1px solid var(--color-border-inbox);
|
|
min-height: 100vh;
|
|
|
|
#inbox-pane {
|
|
max-width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: var(--navbar-fixed-height) 25px 0;
|
|
|
|
a {
|
|
color: var(--color-text-message-header);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.unread_count {
|
|
opacity: 0.7;
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.search_group {
|
|
position: sticky;
|
|
top: var(--navbar-fixed-height);
|
|
background: var(--color-background-inbox);
|
|
display: flex;
|
|
padding: 15px 0 10px;
|
|
z-index: 1;
|
|
}
|
|
|
|
.btn-inbox-filter {
|
|
border: none;
|
|
height: 30px;
|
|
border-radius: 5px;
|
|
background: transparent;
|
|
color: var(--color-text-default);
|
|
padding: 5px 10px;
|
|
margin-left: 10px;
|
|
|
|
&:focus {
|
|
background-color: var(--color-background-btn-inbox-focus);
|
|
outline: 0;
|
|
}
|
|
}
|
|
|
|
.btn-inbox-selected {
|
|
background-color: var(--color-background-btn-inbox-selected);
|
|
}
|
|
|
|
#inbox-filters {
|
|
.zulip-icon-search-inbox {
|
|
position: absolute;
|
|
top: 23px;
|
|
left: 6px;
|
|
color: var(--color-icons-inbox);
|
|
opacity: 0.4;
|
|
}
|
|
|
|
#inbox-clear-search {
|
|
border: 1px solid transparent;
|
|
background: transparent;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border-radius: 2px;
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
color: var(--color-icons-inbox);
|
|
opacity: 0.4;
|
|
transition: all 140ms;
|
|
padding: 5px;
|
|
margin: 0;
|
|
/* = -Width of the button. */
|
|
margin-right: -28px;
|
|
position: relative;
|
|
top: 0;
|
|
right: 30px;
|
|
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
|
|
&:hover,
|
|
&:focus-visible {
|
|
opacity: 1;
|
|
background-color: var(--color-background-icon-close-hover);
|
|
}
|
|
|
|
&:active {
|
|
opacity: 1;
|
|
transform: scale(0.9);
|
|
}
|
|
}
|
|
}
|
|
|
|
#inbox-search:placeholder-shown + #inbox-clear-search {
|
|
display: none;
|
|
}
|
|
|
|
#inbox-search {
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
width: var(--width-inbox-search);
|
|
height: var(--height-inbox-search);
|
|
padding-right: 28px;
|
|
padding-left: 30px;
|
|
font-size: 14px;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
line-height: 17px;
|
|
border-radius: 4px;
|
|
background-color: var(--color-background-inbox);
|
|
color: var(--color-inbox-search-text);
|
|
border: 1px solid var(--color-border-inbox-search);
|
|
|
|
&:not(:placeholder-shown),
|
|
&:hover {
|
|
background-color: var(--color-background-inbox-search-hover);
|
|
border: 1px solid var(--color-border-inbox-search-hover);
|
|
}
|
|
|
|
&:focus {
|
|
outline: none;
|
|
background-color: var(--color-background-inbox-search-focus);
|
|
border: 1px solid var(--color-border-inbox-search-focus);
|
|
box-shadow: 0 0 5px var(--color-box-shadow-inbox-search-focus);
|
|
}
|
|
}
|
|
|
|
#inbox-list {
|
|
overflow: hidden;
|
|
border-radius: 5px;
|
|
border: 1px solid hsl(0deg 0% 0% / 20%);
|
|
margin-bottom: var(--max-unexpanded-compose-height);
|
|
/* Width of muted filter(130) + margin(10) + search padding(50) = 190px */
|
|
max-width: calc(var(--width-inbox-search) + 190px);
|
|
|
|
.inbox-focus-border {
|
|
display: flex;
|
|
min-height: 30px;
|
|
border: 2px solid transparent;
|
|
border-radius: 3px;
|
|
box-sizing: border-box;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.inbox-empty-text {
|
|
display: none;
|
|
font-style: italic;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.inbox-header {
|
|
display: block;
|
|
height: 30px;
|
|
|
|
.inbox-focus-border {
|
|
height: 30px;
|
|
}
|
|
|
|
.inbox-left-part {
|
|
grid-template: auto / auto min-content min-content;
|
|
grid-template-areas: "header_name unread_mention_info unread_count";
|
|
}
|
|
|
|
.inbox-header-name {
|
|
grid-area: header_name;
|
|
display: flex;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
padding: 1px 6px;
|
|
outline: 0;
|
|
|
|
& a {
|
|
margin: 0 4px;
|
|
padding: 1px 0;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.inbox-header-name-focus-border {
|
|
display: flex;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
border: 2px solid transparent;
|
|
border-radius: 3px;
|
|
padding-left: 4px;
|
|
}
|
|
|
|
&:focus .inbox-header-name-focus-border {
|
|
border-color: var(--color-outline-focus);
|
|
}
|
|
}
|
|
|
|
&:focus {
|
|
outline: 0;
|
|
|
|
.inbox-focus-border {
|
|
border-color: var(--color-outline-focus);
|
|
}
|
|
|
|
.toggle-inbox-header-icon {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.fa-lock {
|
|
margin-right: 3px;
|
|
}
|
|
|
|
.fa-envelope,
|
|
.stream-privacy.filter-icon {
|
|
font-size: 16px;
|
|
margin: 0;
|
|
margin-right: 1px;
|
|
}
|
|
|
|
.fa-envelope {
|
|
position: relative;
|
|
top: -1px;
|
|
margin-right: 4px;
|
|
}
|
|
|
|
.collapsible-button {
|
|
&:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.zulip-icon-arrow-down {
|
|
font-size: 16px;
|
|
padding: 5px 4px;
|
|
margin-right: 9px;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.icon-collapsed-state {
|
|
transform: rotate(270deg);
|
|
}
|
|
}
|
|
|
|
.user_circle {
|
|
/* size of the user activity circle */
|
|
min-width: 6px;
|
|
height: 6px;
|
|
margin-right: 5px;
|
|
top: 0;
|
|
}
|
|
|
|
.zulip-icon-bot {
|
|
opacity: 0.7;
|
|
font-size: 11px;
|
|
margin-right: 5px;
|
|
margin-left: 1px;
|
|
}
|
|
|
|
.inbox-row {
|
|
display: block;
|
|
background-color: var(--color-background-inbox-row);
|
|
|
|
&:hover {
|
|
background: var(--color-background-inbox-row-hover);
|
|
}
|
|
|
|
&:focus {
|
|
.inbox-focus-border {
|
|
border: 2px solid var(--color-outline-focus);
|
|
border-radius: 3px;
|
|
}
|
|
|
|
outline: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.inbox-left-part {
|
|
grid-template: auto / min-content auto min-content min-content;
|
|
grid-template-areas: "match_topic_and_dm_start recipient_info unread_mention_info unread_count";
|
|
}
|
|
|
|
.fake-collapse-button,
|
|
.inbox-topic-container .user_circle {
|
|
grid-area: match_topic_and_dm_start;
|
|
}
|
|
|
|
.recipient_info,
|
|
.inbox-topic-name {
|
|
grid-area: recipient_info;
|
|
}
|
|
|
|
.inbox-right-part-wrapper {
|
|
flex-grow: 1;
|
|
|
|
.inbox-right-part {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-grow: 1;
|
|
}
|
|
}
|
|
|
|
.visibility-policy-indicator {
|
|
display: flex;
|
|
align-items: center;
|
|
border-radius: 3px;
|
|
margin-left: 3px;
|
|
|
|
&:focus {
|
|
outline: 2px solid var(--color-outline-focus);
|
|
}
|
|
}
|
|
}
|
|
|
|
.unread-count-focus-outline {
|
|
grid-area: unread_count;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 3px;
|
|
padding: 5px;
|
|
|
|
&:focus {
|
|
outline: 2px solid var(--color-outline-focus);
|
|
}
|
|
}
|
|
|
|
.unread_mention_info {
|
|
grid-area: unread_mention_info;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.stream-privacy {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 4px;
|
|
margin-left: 17px;
|
|
|
|
.zulip-icon {
|
|
line-height: 14px;
|
|
font-size: 16px;
|
|
height: 16px;
|
|
width: 16px;
|
|
}
|
|
}
|
|
|
|
.inbox-topic-name {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
width: 100%;
|
|
|
|
& a {
|
|
padding: 1px 0;
|
|
}
|
|
}
|
|
|
|
.inbox-left-part-wrapper {
|
|
display: flex;
|
|
width: 80%;
|
|
}
|
|
|
|
#inbox-direct-messages-container {
|
|
/* Since a direct message row can have span to multiple lines,
|
|
having an underline focus will not work very well.
|
|
*/
|
|
.inbox-row:focus {
|
|
box-shadow: inset 0 0 0 2px var(--color-outline-focus);
|
|
}
|
|
}
|
|
|
|
#inbox-direct-messages-container .inbox-left-part,
|
|
.inbox-topic-container .inbox-left-part {
|
|
/* 50px - space occupied by user circle icon */
|
|
padding-left: 37px;
|
|
}
|
|
|
|
.inbox-left-part {
|
|
width: 100%;
|
|
display: grid;
|
|
align-items: center;
|
|
|
|
&:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.inbox-group-or-bot-dm {
|
|
position: relative;
|
|
left: -3px;
|
|
}
|
|
|
|
.recipients_info {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
column-gap: 10px;
|
|
grid-area: recipient_info;
|
|
overflow: hidden;
|
|
|
|
.user_block {
|
|
display: flex;
|
|
align-items: center;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
|
|
.fa-group {
|
|
font-size: 11px;
|
|
margin-right: 5px;
|
|
align-self: flex-start;
|
|
margin-top: 5px;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.user_status_icon_wrapper {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
|
|
.recipients_name {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
white-space: nowrap;
|
|
gap: 2px;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.inbox-right-part-wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
#inbox_filter_mute_toggle {
|
|
font-size: 16px;
|
|
width: 16px;
|
|
height: 16px;
|
|
position: relative;
|
|
top: 1px;
|
|
}
|
|
|
|
.inbox-row,
|
|
.inbox-header {
|
|
&:focus,
|
|
&:focus-within,
|
|
&:hover {
|
|
.inbox-action-button {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.inbox-action-button {
|
|
display: flex;
|
|
border-radius: 3px;
|
|
outline: none;
|
|
opacity: 0;
|
|
|
|
&.hide {
|
|
display: none;
|
|
}
|
|
|
|
&:focus {
|
|
box-shadow: 0 0 0 2px var(--color-outline-focus);
|
|
}
|
|
|
|
& i {
|
|
padding: 5px;
|
|
font-size: 16px;
|
|
opacity: 0.3;
|
|
color: var(--color-vdots-hover);
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#inbox-view {
|
|
display: none;
|
|
position: relative;
|
|
|
|
#inbox-dm-header {
|
|
background-color: var(--color-background-private-message-header);
|
|
}
|
|
|
|
.hidden_by_filters,
|
|
.collapsed_container {
|
|
display: none !important;
|
|
}
|
|
}
|