mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-03-28 17:42:40 +01:00
Style changes
This commit is contained in:
@@ -131,7 +131,8 @@
|
||||
}
|
||||
|
||||
.article__tags__dropbox.open {
|
||||
border: 1px solid rgba(0, 0, 0, 0.9);
|
||||
border: 1px solid var(--vscode-focusBorder);
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.article__tags ul {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { useCallback } from 'react';
|
||||
|
||||
export default function useDropdownStyle(inputRef: React.MutableRefObject<HTMLInputElement | null>, inputHeight?: string) {
|
||||
const bottomStyle = `calc(100% - ${inputHeight || '38px'})`;
|
||||
const bottomStyle = `calc(100% - ${inputHeight || '5px'})`;
|
||||
const listItemHeight = 28;
|
||||
|
||||
const getDropdownStyle = useCallback((isOpen) => {
|
||||
|
||||
@@ -839,6 +839,8 @@ vscode-divider {
|
||||
bottom: 0;
|
||||
width: auto;
|
||||
|
||||
border-radius: 0 0.25rem 0.25rem 0;
|
||||
|
||||
&:disabled {
|
||||
background: none;
|
||||
filter: brightness(100%);
|
||||
@@ -947,6 +949,8 @@ vscode-divider {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
border-radius: 0 0.25rem 0.25rem 0;
|
||||
|
||||
span {
|
||||
margin-right: 0.5rem;
|
||||
font-size: 0.8rem;
|
||||
|
||||
Reference in New Issue
Block a user