]> cat aescling's git repositories - mastodon.git/commitdiff
[Glitch] Add featured hashtags to profiles
authorThibaut Girka <thib@sitedethib.com>
Sun, 10 Feb 2019 20:50:42 +0000 (21:50 +0100)
committerThibaut Girka <thib@sitedethib.com>
Sun, 10 Feb 2019 20:50:42 +0000 (21:50 +0100)
Port SCSS changes from 364f2ff9aa2b4bf601d68a12bce758aeb5530467

app/javascript/flavours/glitch/styles/accounts.scss
app/javascript/flavours/glitch/styles/admin.scss
app/javascript/flavours/glitch/styles/widgets.scss

index 9c6518bea6162ed9d565b68b50acd23e2944c1df..d2ae83b2e072feb00d570b97c485a04812c6f7ab 100644 (file)
     border-bottom: 0;
   }
 }
+
+.directory__tag .trends__item__current {
+  width: auto;
+}
index 4e969601b1bfbf33c45b97e00d8406bb7c010f74..4dbbaa1e8326229bc4f6947d552841762d776d5c 100644 (file)
@@ -153,10 +153,15 @@ $content-width: 840px;
       font-weight: 500;
     }
 
-    .directory__tag a {
+    .directory__tag > a,
+    .directory__tag > div {
       box-shadow: none;
     }
 
+    .directory__tag .table-action-link .fa {
+      color: inherit;
+    }
+
     .directory__tag h4 {
       font-size: 18px;
       font-weight: 700;
index c97337e4e3f77c837dd15b7a1f77df44133b92f6..1eaf30c5b37c11c44259ea7171f7012b0f4bab83 100644 (file)
     box-sizing: border-box;
     margin-bottom: 10px;
 
-    a {
+    & > a,
+    & > div {
       display: flex;
       align-items: center;
       justify-content: space-between;
       text-decoration: none;
       color: inherit;
       box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);
+    }
 
+    & > a {
       &:hover,
       &:active,
       &:focus {
       }
     }
 
-    &.active a {
+    &.active a {
       background: $ui-highlight-color;
       cursor: default;
     }