diff options
author | Thibaut Girka <thib@sitedethib.com> | 2018-05-18 17:09:32 +0200 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2018-05-20 11:28:58 +0200 |
commit | 50540446f56bda51f0ce38e1d661ac32301bafc5 (patch) | |
tree | 63d295961250145191bd5eccbeb7abd5a5ec8f3e /app/javascript/flavours | |
parent | 2f9bd86f6eb6fc961d21bd8803f76f353f65a197 (diff) |
[Glitch] Improvements to toots display in admin view
Port SCSS changes from 0f2fbf7d05825447a0f2a1e82b6137c069cb1658 (I'm sorry for the animated rainbows)
Diffstat (limited to 'app/javascript/flavours')
-rw-r--r-- | app/javascript/flavours/glitch/styles/admin.scss | 33 | ||||
-rw-r--r-- | app/javascript/flavours/glitch/styles/tables.scss | 11 |
2 files changed, 34 insertions, 10 deletions
diff --git a/app/javascript/flavours/glitch/styles/admin.scss b/app/javascript/flavours/glitch/styles/admin.scss index 1948a2a23..560b11ddf 100644 --- a/app/javascript/flavours/glitch/styles/admin.scss +++ b/app/javascript/flavours/glitch/styles/admin.scss @@ -484,19 +484,12 @@ } a.name-tag, -.name-tag { - display: flex; - align-items: center; +.name-tag, +a.inline-name-tag, +.inline-name-tag { text-decoration: none; color: $secondary-text-color; - .avatar { - display: block; - margin: 0; - margin-right: 5px; - border-radius: 50%; - } - .username { font-weight: 500; } @@ -514,6 +507,26 @@ a.name-tag, } } +a.name-tag, +.name-tag { + display: flex; + align-items: center; + + .avatar { + display: block; + margin: 0; + margin-right: 5px; + border-radius: 50%; + } + + &.suspended { + .avatar { + filter: grayscale(100%); + opacity: 0.8; + } + } +} + .speech-bubble { margin-bottom: 20px; border-left: 4px solid $ui-highlight-color; diff --git a/app/javascript/flavours/glitch/styles/tables.scss b/app/javascript/flavours/glitch/styles/tables.scss index fa876e603..982bfd990 100644 --- a/app/javascript/flavours/glitch/styles/tables.scss +++ b/app/javascript/flavours/glitch/styles/tables.scss @@ -1,3 +1,9 @@ +@keyframes Swag { + 0% { background-position: 0% 0%; } + 50% { background-position: 100% 0%; } + 100% { background-position: 200% 0%; } +} + .table { width: 100%; max-width: 100%; @@ -187,6 +193,11 @@ a.table-action-link { strong { font-weight: 700; + background: linear-gradient(to right, orange , yellow, green, cyan, blue, violet,orange , yellow, green, cyan, blue, violet); + background-size: 200% 100%; + background-clip: text; + color: transparent; + animation: Swag 2s linear 0s infinite; } } } |