diff options
author | Fire Demon <firedemon@creature.cafe> | 2020-07-28 22:28:56 -0500 |
---|---|---|
committer | Fire Demon <firedemon@creature.cafe> | 2020-08-30 05:45:16 -0500 |
commit | f1575bfffd5df77b68e60f36abc3bbdc6245d91f (patch) | |
tree | aeeeecc32d3d7bfa7dea96ec0f4383a4bb153687 /app/javascript/flavours/glitch/styles | |
parent | 054e15e4f03eecb174374466581b9662a6b38e24 (diff) |
[UI, API, Rebase] Clean up original domain permissions API
Diffstat (limited to 'app/javascript/flavours/glitch/styles')
-rw-r--r-- | app/javascript/flavours/glitch/styles/monsterfork/components/status.scss | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/styles/monsterfork/components/status.scss b/app/javascript/flavours/glitch/styles/monsterfork/components/status.scss index d950fdbb5..2759945a7 100644 --- a/app/javascript/flavours/glitch/styles/monsterfork/components/status.scss +++ b/app/javascript/flavours/glitch/styles/monsterfork/components/status.scss @@ -16,6 +16,48 @@ } } +.status__permissions { + font-size: 12px; + margin-top: 1em; + + & > summary { + font-size: 12px; + + &:focus, &:active { + outline: none; + } + } + + & > summary > span, + & > ul > li > span { + color: lighten($dark-text-color, 4%); + padding-left: 8px; + } + + & > ul > li > span > span:first-child { + display: inline-block; + text-transform: capitalize; + min-width: 5em; + } + + & > summary > i { + color: #999966; + } + + & > ul > li.permission-status > i { + color: #99cccc; + } + + & > ul > li.permission-account > i { + color: #cc99cc; + } + + & > ul > li > span > span, + & > ul > li > span > code { + color: lighten($dark-text-color, 30%); + } +} + .status, .detailed-status { &.unpublished { background: darken($ui-base-color, 4%); |