Skip to content

Commit

Permalink
fix: indent
Browse files Browse the repository at this point in the history
  • Loading branch information
accrazed committed Sep 5, 2024
1 parent d174e8b commit a4c68a7
Show file tree
Hide file tree
Showing 2 changed files with 94 additions and 89 deletions.
3 changes: 2 additions & 1 deletion NieR-Import.theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -3155,7 +3155,8 @@ strong {

.background_a26d7b {
fill: var(--color-low);
clip-path: circle(37% at center);
-webkit-clip-path: circle(37% at center);
clip-path: circle(37% at center);
}

.svg_a26d7b {
Expand Down
180 changes: 92 additions & 88 deletions src/popouts/_user-popout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,118 +15,120 @@
flex-direction: column;
}

// janky ass invisible container?
.invisibleContainer_d0a252.biteSize_d0a252 {
display: none;
}
// janky ass invisible container?
.invisibleContainer_d0a252.biteSize_d0a252 {
display: none;
}

.mask_d5fdb1 {
// pfp mask around banner
mask circle {
display: none;
}
.mask_d5fdb1 {
// pfp mask around banner
mask circle {
display: none;
}
}

// thinking text and bubbles
.statusBubbleOuter_d0a252 {
max-width: none;
max-height: none;
border-radius: 0;
box-shadow: none;
// thinking text and bubbles
.statusBubbleOuter_d0a252 {
max-width: none;
max-height: none;
border-radius: 0;
box-shadow: none;

margin: 0 0.5em;
border: 2px solid $low;
margin: 0 0.5em;
border: 2px solid $low;

.content_d0a252 {
max-height: none !important;
overflow: visible;
word-wrap: normal;
}
.content_d0a252 {
max-height: none !important;
overflow: visible;
word-wrap: normal;
}

.statusBubble_d0a252 {
background-color: $high;
border-radius: 0;
word-wrap: normal;
padding: 0;
.statusBubble_d0a252 {
background-color: $high;
border-radius: 0;
word-wrap: normal;
padding: 0;

.clamp_d0a252 {
-webkit-line-clamp: 100;
line-clamp: 100;
}
.clamp_d0a252 {
-webkit-line-clamp: 100;
line-clamp: 100;
}
}

.statusBubbleWithTextMinWidth_d0a252 {
padding: 0.25em;
}
.statusBubbleWithTextMinWidth_d0a252 {
padding: 0.25em;
}

.singleLineAlign_d0a252 {
text-align: left;
}
.singleLineAlign_d0a252 {
text-align: left;
}
.statusBubbleOuter_d0a252:before,
.statusBubbleOuter_d0a252:after {
display: none;
}
.statusBubbleOuter_d0a252:before,
.statusBubbleOuter_d0a252:after {
display: none;
}

//edit status buttons on user status hover
.popover_bba79b.visible_bba79b {
.button_bba79b svg path {
fill: $high;
}

//edit status buttons on user status hover
.popover_bba79b.visible_bba79b {
.button_bba79b svg path {
fill: $high;
}
.button_bba79b:hover svg path {
fill: $low;
}
.button_bba79b:hover svg path {
fill: $low;
}
}

// thinking text
.visibleContainer_d0a252.biteSize_d0a252 {
position: relative;
top: 0;
left: 0;
}
// thinking text
.visibleContainer_d0a252.biteSize_d0a252 {
position: relative;
top: 0;
left: 0;
}

// profile picture clickable area
.clickable_f89da9,
.clickable_f94206 {
border: 2px solid $low;
display: flex;
align-items: center;
justify-content: center;

background-color: $mid;
margin: 0.5em;
padding: 2em;
// profile picture clickable area
.clickable_f89da9,
.clickable_f94206 {
border: 2px solid $low;
display: flex;
align-items: center;
justify-content: center;

background-color: $mid;
margin: 0.5em;
padding: 2em;
border-radius: 0;
position: relative;
top: 0;
left: 0;
}

//container holding pfp and banner
.avatar_f94206.biteSize_f94206 {
top: 0;
left: 0;

// the actual pfp
.wrapper_c51b4e {
border-radius: 0;
position: relative;
top: 0;
left: 0;
}

//container holding pfp and banner
.avatar_f94206.biteSize_f94206 {
top: 0;
left: 0;

// the actual pfp
.wrapper_c51b4e {
border-radius: 0;
}
.avatarHint_f89da9 { //hover
display: none;
}
.avatarHint_f89da9 {
//hover
display: none;
}

}

// usernames, mutuals, roles

.body_b8cc6d {
border: 2px solid $low;
margin: 0 0.5em;
padding: 0.5em;
background: $high;
}
.biteSizeOverlayBackground_c69a7b { //activities container
&.activity_b8cc6d { //activites (takes on profile theme color and can cause conflict with colors)
.biteSizeOverlayBackground_c69a7b {
//activities container
&.activity_b8cc6d {
//activites (takes on profile theme color and can cause conflict with colors)
border-top: 1px solid;
border-bottom: 1px solid;
border-color: $low;
Expand All @@ -152,8 +154,10 @@
padding: 0.5em;
background: $high;
}
.biteSizeOverlayBackground_c69a7b { //activities container
&.card_ae1fa2 { //activites (takes on profile theme color and can cause conflict with colors)
.biteSizeOverlayBackground_c69a7b {
//activities container
&.card_ae1fa2 {
//activites (takes on profile theme color and can cause conflict with colors)
border-top: 1px solid;
border-bottom: 1px solid;
border-color: $low;
Expand Down

0 comments on commit a4c68a7

Please sign in to comment.