main
Last change
on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Rev | Line | |
---|
[5d6f37a] | 1 | import { alpha, Theme } from '@mui/material/styles';
|
---|
| 2 | import { autocompleteClasses } from '@mui/material/Autocomplete';
|
---|
| 3 | import { svgIconClasses } from '@mui/material/SvgIcon';
|
---|
| 4 | //
|
---|
| 5 | import { paper, menuItem } from '../../css';
|
---|
| 6 |
|
---|
| 7 | // ----------------------------------------------------------------------
|
---|
| 8 |
|
---|
| 9 | export function autocomplete(theme: Theme) {
|
---|
| 10 | return {
|
---|
| 11 | MuiAutocomplete: {
|
---|
| 12 | styleOverrides: {
|
---|
| 13 | root: {
|
---|
| 14 | [`& span.${autocompleteClasses.tag}`]: {
|
---|
| 15 | ...theme.typography.subtitle2,
|
---|
| 16 | height: 24,
|
---|
| 17 | minWidth: 24,
|
---|
| 18 | lineHeight: '24px',
|
---|
| 19 | textAlign: 'center',
|
---|
| 20 | padding: theme.spacing(0, 0.75),
|
---|
| 21 | color: theme.palette.text.secondary,
|
---|
| 22 | borderRadius: theme.shape.borderRadius,
|
---|
| 23 | backgroundColor: alpha(theme.palette.grey[500], 0.16),
|
---|
| 24 | },
|
---|
| 25 | },
|
---|
| 26 | paper: {
|
---|
| 27 | ...paper({ theme, dropdown: true }),
|
---|
| 28 | },
|
---|
| 29 | listbox: {
|
---|
| 30 | padding: 0,
|
---|
| 31 | [`& .${autocompleteClasses.option}`]: {
|
---|
| 32 | ...menuItem(theme),
|
---|
| 33 | },
|
---|
| 34 | },
|
---|
| 35 | endAdornment: {
|
---|
| 36 | [`& .${svgIconClasses.root}`]: {
|
---|
| 37 | width: 18,
|
---|
| 38 | height: 18,
|
---|
| 39 | },
|
---|
| 40 | },
|
---|
| 41 | },
|
---|
| 42 | },
|
---|
| 43 | };
|
---|
| 44 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.