mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-02-20 14:04:06 +01:00
24 lines
719 B
SCSS
24 lines
719 B
SCSS
.b3-select {
|
|
border: 0;
|
|
border-radius: 4px;
|
|
padding: 4px 26px 4px 8px;
|
|
box-sizing: border-box;
|
|
line-height: 20px;
|
|
color: var(--b3-theme-on-background);
|
|
transition: box-shadow 120ms 0ms cubic-bezier(0, 0, 0.2, 1), background-color .2s cubic-bezier(0, 0, .2, 1) 0ms;
|
|
height: 28px;
|
|
font-size: 14px;
|
|
box-shadow: inset 0 0 0 0.6px var(--b3-theme-on-surface-light);
|
|
background: var(--b3-select-background);
|
|
appearance: none;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
box-shadow: inset 0 0 0 .6px var(--b3-theme-on-background);
|
|
background-color: var(--b3-theme-background-light);
|
|
}
|
|
|
|
&:focus {
|
|
box-shadow: inset 0 0 0 1px var(--b3-theme-primary), 0 0 0 3px var(--b3-theme-primary-lightest);
|
|
}
|
|
}
|