mirror of https://github.com/fantasticit/think.git
client: fix style
This commit is contained in:
parent
661dc1862f
commit
5f05715ed1
|
@ -13,6 +13,12 @@
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
|
> span {
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: var(--semi-color-fill-0);
|
background-color: var(--semi-color-fill-0);
|
||||||
}
|
}
|
||||||
|
@ -97,3 +103,61 @@
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.navItemWrap {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
color: var(--semi-color-text-0);
|
||||||
|
|
||||||
|
&.hoverable {
|
||||||
|
&:hover {
|
||||||
|
color: var(--semi-color-text-0);
|
||||||
|
background-color: var(--semi-color-fill-0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.isActive {
|
||||||
|
font-weight: 600;
|
||||||
|
color: var(--semi-color-primary);
|
||||||
|
background-color: var(--semi-color-primary-light-default);
|
||||||
|
}
|
||||||
|
|
||||||
|
.navItem {
|
||||||
|
display: flex;
|
||||||
|
width: 100%;
|
||||||
|
padding: 12px 16px;
|
||||||
|
font-size: 14px;
|
||||||
|
cursor: pointer;
|
||||||
|
border-radius: var(--semi-border-radius-small);
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
> span {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
min-width: 24px;
|
||||||
|
min-height: 24px;
|
||||||
|
margin: 0 6px 0 0;
|
||||||
|
|
||||||
|
:global {
|
||||||
|
.semi-icon-default {
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
overflow: hidden;
|
||||||
|
color: inherit;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -109,7 +109,9 @@ export const WikiTocs: React.FC<IProps> = ({
|
||||||
>
|
>
|
||||||
{wiki.name.charAt(0)}
|
{wiki.name.charAt(0)}
|
||||||
</Avatar>
|
</Avatar>
|
||||||
<Text strong>{wiki.name}</Text>
|
<Text strong ellipsis={{ rows: 1 }}>
|
||||||
|
{wiki.name}
|
||||||
|
</Text>
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
</Link>
|
</Link>
|
||||||
|
|
Loading…
Reference in New Issue