This repository was archived by the owner on Jul 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed
Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,6 @@ export function AddRow(props: AddRowProps) {
6868 sx = { {
6969 bordercolor : StyleVariables . TEXT_NORMAL ,
7070 border : 0 ,
71- minWidth : "30px" ,
7271 } }
7372 >
7473 < Button
@@ -77,7 +76,6 @@ export function AddRow(props: AddRowProps) {
7776 setInputNewRow ( "" ) ;
7877 setShowNewRow ( ! showNewRow ) ;
7978 } }
80- size = "small"
8179 sx = { {
8280 bgcolor : StyleVariables . BACKGROUND_PRIMARY ,
8381 color : StyleVariables . TEXT_NORMAL ,
@@ -86,10 +84,9 @@ export function AddRow(props: AddRowProps) {
8684 color : StyleVariables . TEXT_NORMAL ,
8785 border : 0 ,
8886 } ,
89- height : "30px" ,
90- maxHeight : "30px" ,
9187 border : 0 ,
9288 } }
89+ style = { { minWidth : "30px" } }
9390 >
9491 { showNewRow ? (
9592 < CloseIcon />
Original file line number Diff line number Diff line change @@ -110,6 +110,8 @@ export function NavBar(navBarProps: NavBarProps) {
110110 < Toolbar
111111 style = { {
112112 minHeight : "2.65rem" ,
113+ padding : 0 ,
114+ paddingLeft : "2px" ,
113115 } }
114116 >
115117 < IconButton
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ export default function EditFiltersButton(props: DataviewFiltersProps) {
4444 size = "small"
4545 onClick = { openFiltersGroupHandler }
4646 key = { `Button-FilterConditions-DataviewFilters` }
47- style = { { minWidth : "0px" , padding : "2px" } }
47+ style = { { minWidth : "0px" , padding : "2px" , borderRadius : "0px" } }
4848 >
4949 < span
5050 className = "svg-icon svg-gray"
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ export default function ToggleFiltersButton(props: DataviewFiltersProps) {
3030 size = "small"
3131 onClick = { enableFilterHandler }
3232 key = { `Button-Enabled-DataviewFilters` }
33- style = { { minWidth : "0px" , padding : "2px" } }
33+ style = { { minWidth : "0px" , padding : "2px" , borderRadius : "0px" } }
3434 >
3535 < span className = "svg-icon svg-gray" >
3636 { filters . enabled ? < FilterOnIcon /> : < FilterOffIcon /> }
Original file line number Diff line number Diff line change @@ -21,7 +21,8 @@ export const SearchIconWrapper = styled('div')(({ theme }) => ({
2121 display : 'flex' ,
2222 alignItems : 'center' ,
2323 justifyContent : 'center' ,
24- textAlign : 'center'
24+ textAlign : 'center' ,
25+ color : StyleVariables . TEXT_NORMAL ,
2526} ) ) ;
2627
2728export const DebouncedInputWrapper = styled ( 'div' ) ( ( { theme } ) => ( {
You can’t perform that action at this time.
0 commit comments