feat(core): page info ui (#5729)

this PR includes the main table view in the page detail page
This commit is contained in:
Peng Xiao
2024-02-22 05:58:14 +00:00
parent 46cc0810e9
commit d97304e9eb
26 changed files with 2068 additions and 83 deletions

View File

@@ -50,10 +50,6 @@ export const menuItem = style({
color: cssVar('warningColor'),
backgroundColor: cssVar('backgroundWarningColor'),
},
'&.selected, &.checked': {
backgroundColor: cssVar('hoverColor'),
color: cssVar('primaryColor'),
},
},
});
export const menuSpan = style({
@@ -69,12 +65,8 @@ export const menuItemIcon = style({
fontSize: cssVar('fontH5'),
color: cssVar('iconColor'),
selectors: {
'&.start': {
marginRight: '8px',
},
'&.end': {
marginLeft: '8px',
},
'&.start': { marginRight: '4px' },
'&.end': { marginLeft: '4px' },
'&.selected, &.checked': {
color: cssVar('primaryColor'),
},