fix styling of server name in handle

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
pull/21833/head
Michael Telatynski 2020-03-13 00:18:53 +00:00
parent 3628fd2ea2
commit 5a27fa7d97
2 changed files with 6 additions and 1 deletions

View File

@ -149,4 +149,9 @@ limitations under the License.
mask-image: url('$(res)/img/feather-customised/chevron-down.svg'); mask-image: url('$(res)/img/feather-customised/chevron-down.svg');
background-color: $primary-fg-color; background-color: $primary-fg-color;
} }
.mx_NetworkDropdown_handle_server {
color: $muted-fg-color;
font-size: 12px;
}
} }

View File

@ -223,7 +223,7 @@ const NetworkDropdown = ({onOptionChange, protocols = {}, selectedServerName, se
> >
<span> <span>
{currentValue} {currentValue}
</span> <span> </span> <span className="mx_NetworkDropdown_handle_server">
({selectedServerName}) ({selectedServerName})
</span> </span>
</ContextMenuButton>; </ContextMenuButton>;