]> cat aescling's git repositories - mastodon.git/commitdiff
[Glitch] Add trending statuses
authorEugen Rochko <eugen@zeonfederated.com>
Thu, 24 Feb 2022 23:34:14 +0000 (00:34 +0100)
committerClaire <claire.github-309c@sitedethib.com>
Sat, 26 Feb 2022 08:50:23 +0000 (09:50 +0100)
Port SCSS changes from 27965ce5edff20db2de1dd233c88f8393bb0da0b

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
app/javascript/flavours/glitch/styles/accounts.scss
app/javascript/flavours/glitch/styles/tables.scss

index 56b143fe6284a486423bde0091edbd8af1f66072..a3bfb05079097b28cf9c9391538dadb9248443bb 100644 (file)
 }
 
 .batch-table__row--muted .pending-account__header,
-.batch-table__row--muted .accounts-table {
+.batch-table__row--muted .accounts-table,
+.batch-table__row--muted .name-tag {
   &,
   a,
   strong {
   }
 }
 
+.batch-table__row--muted .name-tag .avatar {
+  opacity: 0.5;
+}
+
 .batch-table__row--muted .accounts-table {
   tbody td.accounts-table__extra,
   &__count,
 }
 
 .batch-table__row--attention .pending-account__header,
-.batch-table__row--attention .accounts-table {
+.batch-table__row--attention .accounts-table,
+.batch-table__row--attention .name-tag {
   &,
   a,
   strong {
index 12c84a6c906157400726e39c328eb927a9185f4d..8b5933b7b5782cf956b57ef1a80c59a61ba059bd 100644 (file)
@@ -210,6 +210,7 @@ a.table-action-link {
     &__content {
       padding-top: 12px;
       padding-bottom: 16px;
+      overflow: hidden;
 
       &--unpadded {
         padding: 0;
@@ -292,3 +293,9 @@ a.table-action-link {
     }
   }
 }
+
+.one-liner {
+  white-space: nowrap;
+  overflow: hidden;
+  text-overflow: ellipsis;
+}