stylelint: Fix declaration-block-no-redundant-longhand-properties.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2023-11-08 15:35:32 -08:00
committed by Anders Kaseorg
parent dcdbb39c31
commit 9b83dc1b79
7 changed files with 9 additions and 18 deletions

View File

@@ -212,8 +212,7 @@ li.show-more-topics {
#left_sidebar_scroll_container { #left_sidebar_scroll_container {
outline: none; outline: none;
overflow-x: hidden; overflow: hidden auto;
overflow-y: auto;
position: relative; position: relative;
z-index: 0; z-index: 0;
width: 100%; width: 100%;
@@ -1058,8 +1057,7 @@ li.topic-list-item {
.conversation-partners-icon { .conversation-partners-icon {
grid-area: starting-anchor-element; grid-area: starting-anchor-element;
justify-self: center; place-self: center;
align-self: center;
} }
.user_circle { .user_circle {

View File

@@ -43,8 +43,7 @@
text-transform: uppercase; text-transform: uppercase;
border-bottom: 0; border-bottom: 0;
margin-bottom: 0; margin-bottom: 0;
margin-block-start: 0; margin-block: 0;
margin-block-end: 0;
} }
.footer__section ul { .footer__section ul {

View File

@@ -192,10 +192,8 @@ ul {
grid-template-columns: repeat(6, 200px); grid-template-columns: repeat(6, 200px);
grid-template-rows: 100px; grid-template-rows: 100px;
justify-content: center; justify-content: center;
align-items: center; place-items: center;
justify-items: center; gap: 24px 0;
column-gap: 24px;
row-gap: 0;
} }
.client-logos div { .client-logos div {

View File

@@ -2657,8 +2657,7 @@ button {
grid-column-gap: 5%; grid-column-gap: 5%;
grid-template-columns: 43% auto; grid-template-columns: 43% auto;
max-width: 1300px; max-width: 1300px;
align-items: center; place-items: center;
justify-items: center;
margin: auto; margin: auto;
.alternate-grid& { .alternate-grid& {

View File

@@ -217,8 +217,7 @@
.emoji-search-results-container { .emoji-search-results-container {
padding: 0; padding: 0;
position: relative; position: relative;
overflow-x: hidden; overflow: hidden auto;
overflow-y: auto;
display: block; display: block;
width: 247px; width: 247px;
padding-left: 3px; padding-left: 3px;

View File

@@ -1177,8 +1177,7 @@ $option_title_width: 180px;
text-align: left; text-align: left;
white-space: nowrap; white-space: nowrap;
text-overflow: ellipsis; text-overflow: ellipsis;
overflow-x: hidden; overflow: hidden visible;
overflow-y: visible;
position: relative; position: relative;
.user-name-and-status-text { .user-name-and-status-text {

View File

@@ -1,6 +1,5 @@
html { html {
overflow-y: scroll; overflow: hidden scroll;
overflow-x: hidden;
overscroll-behavior-y: none; overscroll-behavior-y: none;
width: calc(100% - var(--disabled-scrollbar-width)); width: calc(100% - var(--disabled-scrollbar-width));
} }