styles: Remove shorthand property overrides.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2020-08-05 17:20:54 -07:00 committed by Tim Abbott
parent 725ca116dd
commit 3572dcc67c
8 changed files with 1 additions and 13 deletions

View File

@ -431,11 +431,10 @@ ul {
justify-content: flex-start; justify-content: flex-start;
#select_stream_id { #select_stream_id {
margin-bottom: 5px !important;
border-left: 0px; border-left: 0px;
padding-left: 0px; padding-left: 0px;
border-radius: 3px; border-radius: 3px;
margin: 0 5px 0 -10px; margin: 0 5px 5px -10px;
text-indent: 10px; text-indent: 10px;
} }
.inline_topic_edit { .inline_topic_edit {

View File

@ -119,7 +119,6 @@
padding: 11px 25px 11px 25px; padding: 11px 25px 11px 25px;
font-weight: 400; font-weight: 400;
color: hsl(0, 0%, 100%); color: hsl(0, 0%, 100%);
background-color: hsl(185, 38%, 55%);
background: linear-gradient( background: linear-gradient(
145deg, 145deg,
hsl(191, 56%, 55%), hsl(191, 56%, 55%),

View File

@ -1355,7 +1355,6 @@ nav {
height: 520px; height: 520px;
margin: 20px auto; margin: 20px auto;
padding: 30px 20px; padding: 30px 20px;
background-color: hsla(220, 20%, 97%, 0.6);
background: linear-gradient( background: linear-gradient(
hsla(220, 20%, 97%, 0.4), hsla(220, 20%, 97%, 0.4),
hsla(220, 20%, 97%, 0.9) hsla(220, 20%, 97%, 0.9)
@ -1370,7 +1369,6 @@ nav {
font-size: 1.2rem; font-size: 1.2rem;
font-weight: 400; font-weight: 400;
color: hsl(0, 0%, 100%); color: hsl(0, 0%, 100%);
background-color: hsl(185, 38%, 55%);
background: linear-gradient(145deg, hsl(191, 56%, 55%), hsl(169, 65%, 42%)); background: linear-gradient(145deg, hsl(191, 56%, 55%), hsl(169, 65%, 42%));
box-shadow: 0px 3px 10px hsla(0, 0%, 0%, 0.2); box-shadow: 0px 3px 10px hsla(0, 0%, 0%, 0.2);
border: 0; border: 0;
@ -1545,7 +1543,6 @@ nav {
font-weight: 400; font-weight: 400;
color: hsl(0, 0%, 100%); color: hsl(0, 0%, 100%);
background-color: hsl(185, 38%, 55%);
background: linear-gradient(145deg, hsl(191, 56%, 55%), hsl(169, 65%, 42%)); background: linear-gradient(145deg, hsl(191, 56%, 55%), hsl(169, 65%, 42%));
box-shadow: 0px 3px 10px hsla(0, 0%, 0%, 0.2); box-shadow: 0px 3px 10px hsla(0, 0%, 0%, 0.2);
border-radius: 4px; border-radius: 4px;
@ -1852,7 +1849,6 @@ nav {
padding: 200px 80px 100px 80px; padding: 200px 80px 100px 80px;
margin-top: -50px; margin-top: -50px;
background-color: hsl(177, 52%, 55%);
background: linear-gradient(145deg, hsl(191, 56%, 55%), hsl(169, 65%, 42%)); background: linear-gradient(145deg, hsl(191, 56%, 55%), hsl(169, 65%, 42%));
color: hsl(0, 0%, 100%); color: hsl(0, 0%, 100%);

View File

@ -690,7 +690,6 @@ input.text-error {
} }
.main-headline { .main-headline {
background-color: hsl(218, 84%, 85%);
background: url(/static/images/landing-page/gg.jpg); background: url(/static/images/landing-page/gg.jpg);
background-position: center; background-position: center;
background-size: cover; background-size: cover;
@ -1745,7 +1744,6 @@ input.new-organization-button {
#navbar-custom-message { #navbar-custom-message {
font-size: 1rem; font-size: 1rem;
background-color: hsl(177, 52%, 55%);
background: linear-gradient(145deg, hsl(191, 56%, 55%), hsl(169, 65%, 42%)); background: linear-gradient(145deg, hsl(191, 56%, 55%), hsl(169, 65%, 42%));
color: hsl(0, 0%, 100%); color: hsl(0, 0%, 100%);
font-weight: 600; font-weight: 600;

View File

@ -118,7 +118,6 @@
.user-group-mention, .user-group-mention,
.user-mention { .user-mention {
background-color: hsl(0, 0%, 93%);
border-radius: 3px; border-radius: 3px;
padding: 0 0.2em; padding: 0 0.2em;
box-shadow: 0px 0px 0px 1px hsl(0, 0%, 80%); box-shadow: 0px 0px 0px 1px hsl(0, 0%, 80%);

View File

@ -1613,7 +1613,6 @@ body:not(.night-mode) #settings_page .custom_user_field .datepicker {
} }
#muted_topics_table { #muted_topics_table {
margin-bottom: 0px;
width: 90%; width: 90%;
margin: 0 auto; margin: 0 auto;

View File

@ -21,7 +21,6 @@
.user_circle_orange { .user_circle_orange {
border-color: hsl(29, 84%, 51%); border-color: hsl(29, 84%, 51%);
background-color: hsl(29, 84%, 51%);
background: linear-gradient( background: linear-gradient(
to bottom, to bottom,
hsla(0, 0%, 100%, 0) 50%, hsla(0, 0%, 100%, 0) 50%,

View File

@ -8,7 +8,6 @@ module.exports = {
"property-no-unknown": [true, {ignoreProperties: [/^mso-/]}], "property-no-unknown": [true, {ignoreProperties: [/^mso-/]}],
// Disable recommended rules we don't comply with yet // Disable recommended rules we don't comply with yet
"declaration-block-no-shorthand-property-overrides": null,
"font-family-no-missing-generic-family-keyword": null, "font-family-no-missing-generic-family-keyword": null,
"no-descending-specificity": null, "no-descending-specificity": null,
"no-duplicate-selectors": null, "no-duplicate-selectors": null,