Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 3719 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3719 Rev 3736
Línea 1... Línea 1...
1
import { createTheme } from '@mui/material';
1
import { createTheme } from '@mui/material';
Línea 2... Línea 2...
2
 
2
 
3
import { typography, typographyStyles } from './components/typography';
3
import { typography, typographyStyles } from './components/typography';
4
import { shape } from './components/shape';
4
import { shape } from './components/shape';
5
import { shadows } from './components/shadows';
-
 
Línea 6... Línea 5...
6
import { formControlStyles } from './components/formControl';
5
import { shadows } from './components/shadows';
7
 
6
 
8
import { accordionStyles } from './components/accordion';
7
import { accordionStyles } from './components/accordion';
9
import { listStyles } from './components/list';
8
import { listStyles } from './components/list';
Línea 19... Línea 18...
19
  shadows,
18
  shadows,
20
  shape,
19
  shape,
21
  spacing: 8,
20
  spacing: 8,
22
  components: {
21
  components: {
23
    MuiTypography: { styleOverrides: typographyStyles },
22
    MuiTypography: { styleOverrides: typographyStyles },
24
    MuiFormControl: { styleOverrides: formControlStyles },
-
 
25
    MuiButton: {
23
    MuiButton: {
26
      styleOverrides: {
24
      styleOverrides: {
27
        root: ({ theme }) => ({
25
        root: ({ theme }) => ({
28
          display: 'flex',
26
          display: 'flex',
29
          alignItems: 'center',
27
          alignItems: 'center',
30
          justifyContent: 'center',
28
          justifyContent: 'center',
31
          gap: theme.spacing(0.5),
29
          gap: theme.spacing(0.5),
32
          padding: theme.spacing(0.5, 1.5),
-
 
33
          fontFamily: "'Source Sans 3', sans-serif",
30
          fontFamily: "'Source Sans 3', sans-serif",
34
          lineHeight: 1.25,
31
          lineHeight: 1.25,
35
          borderWidth: 0,
32
          borderWidth: 0,
36
          borderRadius: '30px',
33
          borderRadius: '30px',
37
          color: colors.font.primary,
34
          color: colors.font.primary,
Línea 180... Línea 177...
180
    },
177
    },
181
    MuiIconButton: {
178
    MuiIconButton: {
182
      styleOverrides: {
179
      styleOverrides: {
183
        root: {
180
        root: {
184
          color: colors.icon.primary
181
          color: colors.icon.primary
-
 
182
        },
-
 
183
        colorSecondary: {
-
 
184
          backgroundColor: colors.button.background.primary,
-
 
185
          color: colors.button.text.primary,
-
 
186
          '&:hover': {
-
 
187
            backgroundColor: colors.button.background.primary,
-
 
188
            opacity: 0.9
-
 
189
          }
185
        }
190
        }
186
      }
191
      }
187
    },
192
    },
188
    MuiLinearProgress: {
193
    MuiLinearProgress: {
189
      styleOverrides: {
194
      styleOverrides: {