Merge branches 'feat/filesystem_and_search' and 'feat/filesystem_and_search' of github.com:toeverything/AFFiNE into feat/filesystem_and_search

This commit is contained in:
DiamondThree
2022-12-23 18:44:42 +08:00
4 changed files with 6 additions and 1 deletions
@@ -65,6 +65,7 @@ export const StyledInputContent = styled('div')(({ theme }) => {
...displayFlex('space-between', 'center'),
letterSpacing: '0.06em',
color: theme.colors.popoverColor,
'::placeholder': {
color: theme.colors.placeHolderColor,
},
@@ -35,7 +35,7 @@ export const WorkspaceSelector = () => {
{currentWorkspace?.meta.name ||
(workspaceMeta?.type === WorkspaceType.Private && user
? user.name
: 'AFFINE')}
: 'AFFiNE')}
</WorkspaceName>
</SelectorWrapper>
</Popper>
@@ -8,6 +8,9 @@ export const SelectorWrapper = styled('div')({
display: 'flex',
flexDirection: 'row',
alignItems: 'center',
':hover': {
cursor: 'pointer',
},
});
export const Avatar = styled(MuiAvatar)({
@@ -88,6 +88,7 @@ export const WorkSpaceSliderBar = () => {
</StyledListItemForWorkspace>
<StyledListItem
data-testid="sliderBar-quickSearchButton"
style={{ cursor: 'pointer' }}
onClick={() => {
triggerQuickSearchModal();
}}