mirror of https://github.com/zulip/zulip.git
stylelint: Fix declaration-block-no-redundant-longhand-properties.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
dcdbb39c31
commit
9b83dc1b79
|
@ -212,8 +212,7 @@ li.show-more-topics {
|
|||
|
||||
#left_sidebar_scroll_container {
|
||||
outline: none;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
overflow: hidden auto;
|
||||
position: relative;
|
||||
z-index: 0;
|
||||
width: 100%;
|
||||
|
@ -1058,8 +1057,7 @@ li.topic-list-item {
|
|||
|
||||
.conversation-partners-icon {
|
||||
grid-area: starting-anchor-element;
|
||||
justify-self: center;
|
||||
align-self: center;
|
||||
place-self: center;
|
||||
}
|
||||
|
||||
.user_circle {
|
||||
|
|
|
@ -43,8 +43,7 @@
|
|||
text-transform: uppercase;
|
||||
border-bottom: 0;
|
||||
margin-bottom: 0;
|
||||
margin-block-start: 0;
|
||||
margin-block-end: 0;
|
||||
margin-block: 0;
|
||||
}
|
||||
|
||||
.footer__section ul {
|
||||
|
|
|
@ -192,10 +192,8 @@ ul {
|
|||
grid-template-columns: repeat(6, 200px);
|
||||
grid-template-rows: 100px;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
justify-items: center;
|
||||
column-gap: 24px;
|
||||
row-gap: 0;
|
||||
place-items: center;
|
||||
gap: 24px 0;
|
||||
}
|
||||
|
||||
.client-logos div {
|
||||
|
|
|
@ -2657,8 +2657,7 @@ button {
|
|||
grid-column-gap: 5%;
|
||||
grid-template-columns: 43% auto;
|
||||
max-width: 1300px;
|
||||
align-items: center;
|
||||
justify-items: center;
|
||||
place-items: center;
|
||||
margin: auto;
|
||||
|
||||
.alternate-grid& {
|
||||
|
|
|
@ -217,8 +217,7 @@
|
|||
.emoji-search-results-container {
|
||||
padding: 0;
|
||||
position: relative;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
overflow: hidden auto;
|
||||
display: block;
|
||||
width: 247px;
|
||||
padding-left: 3px;
|
||||
|
|
|
@ -1177,8 +1177,7 @@ $option_title_width: 180px;
|
|||
text-align: left;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
overflow-x: hidden;
|
||||
overflow-y: visible;
|
||||
overflow: hidden visible;
|
||||
position: relative;
|
||||
|
||||
.user-name-and-status-text {
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
html {
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
overflow: hidden scroll;
|
||||
overscroll-behavior-y: none;
|
||||
width: calc(100% - var(--disabled-scrollbar-width));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue