Use stylelint

This commit is contained in:
tusooa 2023-01-09 13:02:16 -05:00
commit 7dc2277453
No known key found for this signature in database
GPG key ID: 7B467EDE43A08224
125 changed files with 984 additions and 854 deletions

View file

@ -1,4 +1,4 @@
@import '../../_variables.scss';
@import "../../variables";
.user-card {
position: relative;
@ -11,7 +11,7 @@
}
.panel-heading {
padding: .5em 0;
padding: 0.5em 0;
text-align: center;
box-shadow: none;
background: transparent;
@ -35,17 +35,19 @@
left: 0;
right: 0;
bottom: 0;
mask: linear-gradient(to top, white, transparent) bottom no-repeat,
linear-gradient(to top, white, white);
mask:
linear-gradient(to top, white, transparent) bottom no-repeat,
linear-gradient(to top, white, white);
// Autoprefixer seem to ignore this one, and also syntax is different
-webkit-mask-composite: xor;
mask-composite: xor;
mask-composite: exclude;
background-size: cover;
mask-size: 100% 60%;
border-top-left-radius: calc(var(--__roundnessTop, --panelRadius) - 1px);
border-top-right-radius: calc(var(--__roundnessTop, --panelRadius) - 1px);
border-bottom-left-radius: calc(var(--__roundnessBottom, --panelRadius) - 1px);
border-bottom-right-radius: calc(var(--__roundnessBottom, --panelRadius) - 1px);
border-radius:
calc(var(--__roundnessTop, --panelRadius) - 1px)
calc(var(--__roundnessTop, --panelRadius) - 1px)
calc(var(--__roundnessBottom, --panelRadius) - 1px)
calc(var(--__roundnessBottom, --panelRadius) - 1px);
background-color: var(--profileBg);
z-index: -2;
@ -159,17 +161,17 @@
top: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.3);
background-color: rgb(0 0 0 / 30%);
display: flex;
justify-content: center;
align-items: center;
border-radius: $fallback--avatarRadius;
border-radius: var(--avatarRadius, $fallback--avatarRadius);
opacity: 0;
transition: opacity .2s ease;
transition: opacity 0.2s ease;
svg {
color: #FFF;
color: #fff;
}
}
@ -178,7 +180,8 @@
}
}
.external-link-button, .edit-profile-button {
.external-link-button,
.edit-profile-button {
cursor: pointer;
width: 2.5em;
text-align: center;
@ -191,34 +194,6 @@
}
}
.user-summary {
display: block;
margin-left: 0.6em;
text-align: left;
text-overflow: ellipsis;
white-space: nowrap;
flex: 1 1 0;
// This is so that text doesn't get overlapped by avatar's shadow if it has
// big one
z-index: 1;
line-height: 2em;
--emoji-size: 1.7em;
.top-line,
.bottom-line {
display: flex;
}
}
.user-name {
text-overflow: ellipsis;
overflow: hidden;
flex: 1 1 auto;
margin-right: 1em;
font-size: 1.1em;
}
.bottom-line {
font-weight: light;
font-size: 1.1em;
@ -253,8 +228,36 @@
}
}
.user-summary {
display: block;
margin-left: 0.6em;
text-align: left;
text-overflow: ellipsis;
white-space: nowrap;
flex: 1 1 0;
// This is so that text doesn't get overlapped by avatar's shadow if it has
// big one
z-index: 1;
line-height: 2em;
--emoji-size: 1.7em;
.top-line,
.bottom-line {
display: flex;
}
}
.user-name {
text-overflow: ellipsis;
overflow: hidden;
flex: 1 1 auto;
margin-right: 1em;
font-size: 1.1em;
}
.user-meta {
margin-bottom: .15em;
margin-bottom: 0.15em;
display: flex;
align-items: baseline;
line-height: 22px;
@ -263,7 +266,7 @@
.following {
flex: 1 0 auto;
margin: 0;
margin-bottom: .25em;
margin-bottom: 0.25em;
text-align: left;
}
@ -271,7 +274,7 @@
flex: 0 1 auto;
display: flex;
flex-wrap: wrap;
margin-right: -.5em;
margin-right: -0.5em;
align-self: start;
.userHighlightCl {
@ -294,19 +297,20 @@
.userHighlightText,
.userHighlightSel {
vertical-align: top;
margin-right: .5em;
margin-bottom: .25em;
margin-right: 0.5em;
margin-bottom: 0.25em;
}
}
}
.user-interactions {
position: relative;
display: flex;
flex-flow: row wrap;
margin-right: -.75em;
margin-right: -0.75em;
> * {
margin: 0 .75em .6em 0;
margin: 0 0.75em 0.6em 0;
white-space: nowrap;
min-width: 95px;
}
@ -317,7 +321,7 @@
}
.user-note {
margin: 0 .75em .6em 0;
margin: 0 0.75em 0.6em 0;
}
}
@ -327,8 +331,8 @@
.user-counts {
display: flex;
line-height:16px;
padding: .5em 1.5em 0em 1.5em;
line-height: 16px;
padding: 0.5em 1.5em 0;
text-align: center;
justify-content: space-between;
color: $fallback--lightText;
@ -338,14 +342,16 @@
.user-count {
flex: 1 0 auto;
padding: .5em 0 .5em 0;
margin: 0 .5em;
padding: 0.5em 0;
margin: 0 0.5em;
h5 {
font-size:1em;
font-size: 1em;
font-weight: bolder;
margin: 0 0 0.25em;
}
/* stylelint-disable-next-line no-descending-specificity */
a {
text-decoration: none;
}