mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-21 17:37:29 -07:00
This commit is contained in:
parent
f3c8a84eff
commit
a1466217bc
1 changed files with 177 additions and 44 deletions
|
@ -59,6 +59,7 @@ div.emojis:nth-child(6) {
|
||||||
#iceshrimp_app #maincontent div div div._root_b6w6v_1 div._content_b6w6v_6 div.cmuxhskf div.tl._block div.swiper.swiper-virtual.swiper-initialized.swiper-horizontal.swiper-watch-progress div.swiper-wrapper div.swiper-slide.swiper-slide-visible div.new button._buttonPrimary._shadow {
|
#iceshrimp_app #maincontent div div div._root_b6w6v_1 div._content_b6w6v_6 div.cmuxhskf div.tl._block div.swiper.swiper-virtual.swiper-initialized.swiper-horizontal.swiper-watch-progress div.swiper-wrapper div.swiper-slide.swiper-slide-visible div.new button._buttonPrimary._shadow {
|
||||||
border-radius: var(--radius)
|
border-radius: var(--radius)
|
||||||
}
|
}
|
||||||
|
|
||||||
#iceshrimp_app div.mk-deck div.main div.columns.left section.dnpfarvg._narrow_.paged.active.column div div div div._root_b6w6v_1 div._content_b6w6v_6 div.cmuxhskf div.tl._block div.swiper.swiper-virtual.swiper-initialized.swiper-horizontal.swiper-watch-progress div.swiper-wrapper div.swiper-slide.swiper-slide-visible div.new button._buttonPrimary._shadow {
|
#iceshrimp_app div.mk-deck div.main div.columns.left section.dnpfarvg._narrow_.paged.active.column div div div div._root_b6w6v_1 div._content_b6w6v_6 div.cmuxhskf div.tl._block div.swiper.swiper-virtual.swiper-initialized.swiper-horizontal.swiper-watch-progress div.swiper-wrapper div.swiper-slide.swiper-slide-visible div.new button._buttonPrimary._shadow {
|
||||||
border-radius: var(--radius)
|
border-radius: var(--radius)
|
||||||
}
|
}
|
||||||
|
@ -134,9 +135,18 @@ html body div#iceshrimp_app div.mk-app div.main div.contents main div div.rsqzvs
|
||||||
border-top-right-radius: var(--radius);
|
border-top-right-radius: var(--radius);
|
||||||
}
|
}
|
||||||
|
|
||||||
.list .notes button.muted { display: none; } /* hide muted posts in tl */
|
.list .notes button.muted {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
._shadow, #iceshrimp_app > div > ._button { --shadow: rgba(0, 0, 0, 0.5); } /* add missing shadows */
|
/* hide muted posts in tl */
|
||||||
|
|
||||||
|
._shadow,
|
||||||
|
#iceshrimp_app>div>._button {
|
||||||
|
--shadow: rgba(0, 0, 0, 0.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* add missing shadows */
|
||||||
|
|
||||||
/* navbar stuff? */
|
/* navbar stuff? */
|
||||||
header>.body>.top {
|
header>.body>.top {
|
||||||
|
@ -157,11 +167,21 @@ header.sidebar {
|
||||||
border-left: none;
|
border-left: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
._root_b6w6v_1 { padding: var(--thePadding) !important; }
|
._root_b6w6v_1 {
|
||||||
|
padding: var(--thePadding) !important;
|
||||||
|
}
|
||||||
|
|
||||||
a.mention > .main > .host { display: none; } /* hide instance in all mentions */
|
a.mention>.main>.host {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
section.modal._popup > div.form > textarea { resize: vertical !important; } /* resize fix */
|
/* hide instance in all mentions */
|
||||||
|
|
||||||
|
section.modal._popup>div.form>textarea {
|
||||||
|
resize: vertical !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* resize fix */
|
||||||
|
|
||||||
|
|
||||||
/** ThatOneCalculator MisskeyTweaks **/
|
/** ThatOneCalculator MisskeyTweaks **/
|
||||||
|
@ -181,43 +201,51 @@ section.modal._popup > div.form > textarea { resize: vertical !important; } /*
|
||||||
/*** BETTER PROFILES ***/
|
/*** BETTER PROFILES ***/
|
||||||
.narrow {
|
.narrow {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
.wide > .main + .sub {
|
|
||||||
|
.wide>.main+.sub {
|
||||||
position: sticky;
|
position: sticky;
|
||||||
height: max-content;
|
height: max-content;
|
||||||
min-height: calc(100vh - 35px);
|
min-height: calc(100vh - 35px);
|
||||||
bottom: 15px;
|
bottom: 15px;
|
||||||
align-self: flex-end;
|
align-self: flex-end;
|
||||||
}
|
}
|
||||||
.profile {
|
|
||||||
|
.profile {
|
||||||
margin-bottom: var(--margin);
|
margin-bottom: var(--margin);
|
||||||
}
|
}
|
||||||
.profile .banner-container,
|
|
||||||
.profile .banner,
|
.profile .banner-container,
|
||||||
.profile .fade {
|
.profile .banner,
|
||||||
|
.profile .fade {
|
||||||
border-bottom-left-radius: var(--radius) !important;
|
border-bottom-left-radius: var(--radius) !important;
|
||||||
border-bottom-right-radius: var(--radius) !important;
|
border-bottom-right-radius: var(--radius) !important;
|
||||||
}
|
}
|
||||||
.profile ~ .contents {
|
|
||||||
|
.profile~.contents {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
.profile ~ .contents > div > ._panel .content.omitted > div {
|
|
||||||
|
.profile~.contents>div>._panel .content.omitted>div {
|
||||||
padding-inline: 0;
|
padding-inline: 0;
|
||||||
}
|
}
|
||||||
.profile ~ .contents > div > ._panel .content.omitted .stream {
|
|
||||||
|
.profile~.contents>div>._panel .content.omitted .stream {
|
||||||
display: flex;
|
display: flex;
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
scroll-padding: 24px;
|
scroll-padding: 24px;
|
||||||
padding-left: 24px;
|
padding-left: 24px;
|
||||||
scrollbar-color: transparent transparent;
|
scrollbar-color: transparent transparent;
|
||||||
mask: linear-gradient(to right, #000 calc(100% - 400px), rgba(0,0,0,0.4), transparent);
|
mask: linear-gradient(to right, #000 calc(100% - 400px), rgba(0, 0, 0, 0.4), transparent);
|
||||||
}
|
}
|
||||||
.profile ~ .contents > div > ._panel .content.omitted .stream a {
|
|
||||||
|
.profile~.contents>div>._panel .content.omitted .stream a {
|
||||||
min-width: max-content;
|
min-width: max-content;
|
||||||
scroll-snap-align: start;
|
scroll-snap-align: start;
|
||||||
height: 100px;
|
height: 100px;
|
||||||
}
|
}
|
||||||
.profile ~ .contents > div > ._panel .content.omitted button.fade {
|
|
||||||
|
.profile~.contents>div>._panel .content.omitted button.fade {
|
||||||
background: linear-gradient(to right, transparent, var(--panel));
|
background: linear-gradient(to right, transparent, var(--panel));
|
||||||
background: none;
|
background: none;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
@ -227,25 +255,130 @@ section.modal._popup > div.form > textarea { resize: vertical !important; } /*
|
||||||
height: unset;
|
height: unset;
|
||||||
width: auto;
|
width: auto;
|
||||||
padding: 24px;
|
padding: 24px;
|
||||||
}
|
}
|
||||||
.profile ~ .contents > div > ._panel .content:not(.omitted) {
|
|
||||||
|
.profile~.contents>div>._panel .content:not(.omitted) {
|
||||||
padding: 0 14px !important;
|
padding: 0 14px !important;
|
||||||
padding: 0 !important;
|
padding: 0 !important;
|
||||||
padding-top: 14px !important;
|
padding-top: 14px !important;
|
||||||
}
|
}
|
||||||
.profile ~ .contents > div > ._panel .content:not(.omitted) > div {
|
|
||||||
|
.profile~.contents>div>._panel .content:not(.omitted)>div {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
.profile ~ .contents > div > ._panel .content:not(.omitted) .stream {
|
|
||||||
|
.profile~.contents>div>._panel .content:not(.omitted) .stream {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
.profile ~ .contents > div > ._panel .content:not(.omitted) .stream a {
|
|
||||||
|
.profile~.contents>div>._panel .content:not(.omitted) .stream a {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
height: auto;
|
height: auto;
|
||||||
max-height: 60vh;
|
max-height: 60vh;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.profile~.contents>div>._panel .content:not(.omitted) .empty {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Koppers Reply */
|
||||||
|
:root {
|
||||||
|
--originalAvatarSize: var(--avatarSize);
|
||||||
|
}
|
||||||
|
|
||||||
|
.list .note-container .reply-to {
|
||||||
|
--avatarSize: 16px;
|
||||||
|
|
||||||
|
.avatar-container {
|
||||||
|
margin-left: calc((var(--originalAvatarSize) - var(--avatarSize)) / 2);
|
||||||
|
align-self: center;
|
||||||
}
|
}
|
||||||
.profile ~ .contents > div > ._panel .content:not(.omitted) .empty {
|
|
||||||
|
.cat:before,
|
||||||
|
.cat:after {
|
||||||
|
margin-bottom: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.body {
|
||||||
|
display: flex;
|
||||||
|
align-items: baseline;
|
||||||
|
overflow-x: hidden;
|
||||||
|
|
||||||
|
>.header {
|
||||||
|
align-items: initial;
|
||||||
|
|
||||||
|
.user-info {
|
||||||
|
|
||||||
|
>div>.name,
|
||||||
|
.info {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&,
|
||||||
|
>div:first-child {
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
div:has(> .hpaizdrt) {
|
||||||
|
display: none
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
>.body {
|
||||||
|
flex-grow: 1;
|
||||||
|
max-height: 32px;
|
||||||
|
|
||||||
|
br,
|
||||||
|
.files,
|
||||||
|
.reply-icon,
|
||||||
|
&:has(.cw:not(._cw_style_modern)) .wrmlmaau,
|
||||||
|
.showMoreButton,
|
||||||
|
.rp,
|
||||||
|
.cw button {
|
||||||
|
display: none
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfm-object :not(br) {
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfm-object,
|
||||||
|
.mfm-object * {
|
||||||
|
--mfm-zoom-size: 100% !important;
|
||||||
|
|
||||||
|
white-space: nowrap;
|
||||||
|
word-break: keep-all;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
&.collapsed>.body {
|
||||||
|
mask: none;
|
||||||
|
-webkit-mask: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
&._cw_style_modern.showContent {
|
||||||
|
min-height: initial;
|
||||||
|
|
||||||
|
>.hiddenNote {
|
||||||
|
text-align: left;
|
||||||
|
font-weight: inherit;
|
||||||
|
font-size: inherit;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
>button,
|
||||||
|
>.body {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue