Remove 'trends.scss'
This commit is contained in:
parent
e5ea7331df
commit
5f67eb26ca
4 changed files with 2 additions and 91 deletions
|
@ -7,12 +7,8 @@ const PlaceholderHashtag: React.FC = () => {
|
||||||
const length = randomIntFromInterval(15, 30);
|
const length = randomIntFromInterval(15, 30);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className='placeholder-hashtag'>
|
<div className='animate-pulse text-primary-200 dark:text-primary-700'>
|
||||||
<div className='trends__item'>
|
<p>{generateText(length)}</p>
|
||||||
<div className='trends__item__name'>
|
|
||||||
{generateText(length)}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -46,7 +46,6 @@
|
||||||
@import 'components/search';
|
@import 'components/search';
|
||||||
@import 'components/react-toggle';
|
@import 'components/react-toggle';
|
||||||
@import 'components/still-image';
|
@import 'components/still-image';
|
||||||
@import 'components/trends';
|
|
||||||
@import 'components/profile-media-panel';
|
@import 'components/profile-media-panel';
|
||||||
@import 'components/profile-info-panel';
|
@import 'components/profile-info-panel';
|
||||||
@import 'components/spoiler-button';
|
@import 'components/spoiler-button';
|
||||||
|
|
|
@ -1,78 +0,0 @@
|
||||||
.trends {
|
|
||||||
&__header {
|
|
||||||
color: var(--primary-text-color);
|
|
||||||
background: var(--brand-color--faint);
|
|
||||||
border-bottom: 1px solid var(--brand-color--med);
|
|
||||||
font-weight: 500;
|
|
||||||
padding: 15px;
|
|
||||||
font-size: 16px;
|
|
||||||
cursor: default;
|
|
||||||
|
|
||||||
.fa {
|
|
||||||
display: inline-block;
|
|
||||||
margin-right: 5px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&__item {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
padding: 15px;
|
|
||||||
border-bottom: 1px solid var(--brand-color--med);
|
|
||||||
|
|
||||||
&:last-child {
|
|
||||||
border-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
&__name {
|
|
||||||
flex: 1 1 auto;
|
|
||||||
color: var(--primary-text-color);
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
white-space: nowrap;
|
|
||||||
font-size: 13px;
|
|
||||||
|
|
||||||
strong {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: var(--primary-text-color--faint);
|
|
||||||
text-decoration: none;
|
|
||||||
font-size: 14px;
|
|
||||||
font-weight: 500;
|
|
||||||
display: block;
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
white-space: nowrap;
|
|
||||||
|
|
||||||
&:hover,
|
|
||||||
&:focus,
|
|
||||||
&:active {
|
|
||||||
span {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&__current {
|
|
||||||
flex: 0 0 auto;
|
|
||||||
width: 100px;
|
|
||||||
font-size: 24px;
|
|
||||||
line-height: 36px;
|
|
||||||
font-weight: 500;
|
|
||||||
text-align: center;
|
|
||||||
color: var(--primary-text-color--faint);
|
|
||||||
}
|
|
||||||
|
|
||||||
&__sparkline {
|
|
||||||
flex: 0 0 auto;
|
|
||||||
width: 50px;
|
|
||||||
|
|
||||||
path {
|
|
||||||
stroke: var(--highlight-text-color) !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,4 +1,3 @@
|
||||||
.placeholder-hashtag,
|
|
||||||
.media-gallery--placeholder {
|
.media-gallery--placeholder {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
|
@ -32,11 +31,6 @@
|
||||||
100% { background-position-x: 0; }
|
100% { background-position-x: 0; }
|
||||||
}
|
}
|
||||||
|
|
||||||
.placeholder-hashtag .trends__item__name {
|
|
||||||
color: var(--brand-color);
|
|
||||||
opacity: 0.1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.chat-list-item--placeholder .chat__last-message {
|
.chat-list-item--placeholder .chat__last-message {
|
||||||
letter-spacing: -1px;
|
letter-spacing: -1px;
|
||||||
color: var(--brand-color) !important;
|
color: var(--brand-color) !important;
|
||||||
|
|
Loading…
Reference in a new issue