* 🎨 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
1 changed files with 12 additions and 2 deletions
|
@ -314,8 +314,18 @@
|
|||
|
||||
&--select {
|
||||
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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue