Fix various CodeClimate warnings

This commit is contained in:
Claire
2021-03-06 13:12:35 +01:00
parent 454d036b74
commit 318efa49de
13 changed files with 43 additions and 41 deletions

View File

@ -14,7 +14,7 @@
}
&.small {
border: none;
border: 0;
padding: 0;
& > .account__avatar-wrapper { margin: 0 8px 0 0 }
@ -278,7 +278,7 @@
}
.account-gallery__item {
border: none;
border: 0;
box-sizing: border-box;
display: block;
position: relative;

View File

@ -264,7 +264,7 @@
& > button {
margin: 0;
border: none;
border: 0;
padding: 15px;
color: inherit;
background: transparent;

View File

@ -44,7 +44,7 @@
display: block;
box-sizing: border-box;
margin: 0;
border: none;
border: 0;
border-radius: 4px;
padding: 10px;
width: 100%;
@ -81,7 +81,9 @@
&:active,
&:focus,
&:hover { text-decoration: none }
&:hover {
text-decoration: none;
}
}
}
@ -256,7 +258,7 @@
display: block;
box-sizing: border-box;
margin: 0;
border: none;
border: 0;
border-radius: 4px 4px 0 0;
padding: 10px 32px 0 10px;
width: 100%;
@ -277,9 +279,17 @@
all: unset;
}
&:disabled { background: $ui-secondary-color }
&:focus { outline: 0 }
@include single-column('screen and (max-width: 630px)') { font-size: 16px }
&:disabled {
background: $ui-secondary-color;
}
&:focus {
outline: 0;
}
@include single-column('screen and (max-width: 630px)') {
font-size: 16px;
}
@include limited-single-column('screen and (max-width: 600px)') {
height: 100px !important; // prevent auto-resize textarea

View File

@ -15,10 +15,16 @@
padding-right: 10px;
}
@include single-column('screen and (max-width: 630px)') { flex: auto }
@include single-column('screen and (max-width: 630px)') {
flex: auto;
}
@include limited-single-column('screen and (max-width: 630px)') {
&, &:first-child, &:last-child { padding: 0 }
&,
&:first-child,
&:last-child {
padding: 0;
}
}
.wide & {
@ -230,7 +236,7 @@
display: block;
width: 100%;
height: 100%;
border: none;
border: 0;
cursor: inherit;
}

View File

@ -1038,7 +1038,7 @@
.setting-text {
color: $darker-text-color;
background: transparent;
border: none;
border: 0;
border-bottom: 2px solid $ui-primary-color;
box-sizing: border-box;
display: block;

View File

@ -82,7 +82,7 @@
}
.media-gallery__item {
border: none;
border: 0;
box-sizing: border-box;
display: block;
float: left;

View File

@ -876,7 +876,7 @@
box-sizing: border-box;
display: block;
width: 100%;
border: none;
border: 0;
padding: 10px;
font-family: 'mastodon-font-monospace', monospace;
background: $ui-base-color;

View File

@ -209,7 +209,7 @@
display: inline-block;
border-radius: 2px;
background: lighten($ui-base-color, 30%);
border: none;
border: 0;
color: $inverted-text-color;
font-weight: 500;
font-size: 11px;
@ -389,8 +389,10 @@
&:after {
content: "";
position: absolute;
top: 0; bottom: 0;
left: 0; right: 0;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(rgba($ui-base-color, 0), rgba($ui-base-color, 1));
pointer-events: none;
}