diff options
author | bobzel <zzzman@gmail.com> | 2023-07-27 11:06:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-27 11:06:43 -0400 |
commit | 1f80b87178a84c1a449e27c90b1f7b635593cdad (patch) | |
tree | a560b8010d9105c88219635913edb8598b0c42e9 /src/client/util/GroupMemberView.scss | |
parent | 92cb8cd4fd46a4796cd585fd8fd9c9fc4d36811e (diff) | |
parent | 31368b599dee83ccd2538f33b760ae25f19073cc (diff) |
Merge pull request #183 from brown-dash/collaboration-again
override nested -> upgrade nested and a few small ui things
Diffstat (limited to 'src/client/util/GroupMemberView.scss')
-rw-r--r-- | src/client/util/GroupMemberView.scss | 33 |
1 files changed, 24 insertions, 9 deletions
diff --git a/src/client/util/GroupMemberView.scss b/src/client/util/GroupMemberView.scss index 2eb164988..d50569b26 100644 --- a/src/client/util/GroupMemberView.scss +++ b/src/client/util/GroupMemberView.scss @@ -1,6 +1,9 @@ .editing-interface { width: 100%; height: 100%; + padding: 10px; + float: right; + overflow: visible; hr { margin-top: 20; @@ -10,7 +13,6 @@ outline: none; border-radius: 5px; border: 0px; - color: #fcfbf7; text-transform: none; letter-spacing: 2px; font-size: 75%; @@ -37,8 +39,6 @@ text-align: center; border: none; outline: none; - color: black; - margin-top: -5; height: 20; text-overflow: ellipsis; background: none; @@ -61,21 +61,36 @@ margin-bottom: 25; .add-member-dropdown { - width: 65%; - margin: 0 5; + margin-right: 3; + max-height: 30; + width: 250px; + display: inline-flex; + flex-direction: row; + border: 2px solid; + border-radius: 4px; + border-color: inherit; + background: white; + color: black; + } - input { - height: 30; - } + .delete-button { + align-self: center; + background: inherit; } } } + .style-divider { + width: 98%; + height: 1px; + margin-top: 20px; + margin-bottom: 20px; + } + .editing-contents { overflow-y: auto; height: 62%; width: 100%; - color: black; margin-top: -15px; .editing-row { |