mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-05-13 23:52:29 +08:00
* 🎨 style: 使用轮廓线和轮廓偏移替代内阴影 fix https://github.com/siyuan-note/siyuan/issues/10867
* 🎨 style: 使用轮廓线和轮廓偏移替代内阴影 fix https://github.com/siyuan-note/siyuan/issues/10867
* Revert "🎨 style: 使用轮廓线和轮廓偏移替代内阴影 fix https://github.com/siyuan-note/siyuan/issues/10867"
This reverts commit d62e293926
.
* style: 使用伪元素替代单元格内阴影 fix https://github.com/siyuan-note/siyuan/issues/10867
This commit is contained in:
parent
5cdc156360
commit
dc11f2d7cc
@ -314,8 +314,18 @@
|
|||||||
|
|
||||||
&--select {
|
&--select {
|
||||||
background-color: var(--b3-theme-primary-lightest);
|
background-color: var(--b3-theme-primary-lightest);
|
||||||
box-shadow: 2px 2px 0 var(--b3-theme-primary-lighter) inset, -2px -2px 0 var(--b3-theme-primary-lighter) inset;
|
|
||||||
border-radius: var(--b3-border-radius);
|
&::after {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: 2px;
|
||||||
|
left: 2px;
|
||||||
|
right: 2px;
|
||||||
|
bottom: 2px;
|
||||||
|
border-radius: 3px;
|
||||||
|
box-shadow: 0 0 0 2px var(--b3-theme-primary-lighter);
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&--active {
|
&--active {
|
||||||
|
Loading…
Reference in New Issue
Block a user