• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

CBIIT / INS-WebPortal / 21869757389

10 Feb 2026 02:52PM UTC coverage: 2.819% (-0.03%) from 2.85%
21869757389

push

github

web-flow
Merge pull request #493 from CBIIT/INS-1526

INS-1526 Added in privacy banner notice

49 of 1795 branches covered (2.73%)

Branch coverage included in aggregate %.

0 of 50 new or added lines in 3 files covered. (0.0%)

95 of 3314 relevant lines covered (2.87%)

11.64 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/components/OverlayWindow/OverlayThemeConfig.js
NEW
1
import React from 'react';
×
NEW
2
import { ThemeProvider, createTheme } from '@material-ui/core/styles';
×
NEW
3
import themes from '../../themes';
×
4

NEW
5
export default ({
×
6
  children,
7
}) => {
NEW
8
  const overridesObj = { ...themes.light.overrides };
×
9

NEW
10
  const MuiDialog = {
×
11
    paper: {
12
      width: '770px',
13
      height: '620px',
14
      borderRadius: '5px !important',
15
      backgroundColor: '#ffffff !important',
16
      padding: '0px 20px 0px 20px !important',
17
      marginLeft: '40px !important',
18
    },
19
  };
20

NEW
21
  const MuiTypography = {
×
22
    root: {
23
      fontSize: '14px !important',
24
      color: '#000000',
25
    },
26
  };
27

NEW
28
  const MuiDialogTitle = {
×
29
    root: {
30
      padding: '15px 15px 15px 0 !important',
31
      '& h2': {
32
        fontSize: '22px !important',
33
      },
34
    },
35
  };
36

NEW
37
  const MuiDialogContent = {
×
38
    root: {
39
      color: '#000045',
40
      '& p': {
41
        fontSize: '14px',
42
      },
43
      padding: '20px 0px 0px 0px !important',
44
      '& ul': {
45
        marginTop: '0px',
46
        paddingTop: '0px',
47
      },
48
    },
49
  };
50

NEW
51
  const MuiButton = {
×
52
    root: {
53
      width: '133px',
54
      height: '35px',
55
      backgroundColor: '#337ab7',
56
      color: '#fff',
57
      textTransform: 'none',
58
      '&:hover': {
59
        backgroundColor: '#2e6da4',
60
      },
61
    },
62
  };
63

NEW
64
  const MuiList = {
×
65
    root: {
66
      marginTop: '0px !important',
67
      fontSize: '14px',
68
    },
69
    padding: {
70
      paddingTop: '0px !important',
71
    },
72
  };
73

NEW
74
  const MuiListItem = {
×
75
    root: {
76
      fontSize: '14px',
77
      padding: '2px 0px 0px 25px !important',
78
    },
79
  };
80

NEW
81
  const MuiListItemIcon = {
×
82
    root: {
83
      marginBottom: 'auto',
84
      fontSize: '12px',
85
      color: 'black',
86
      width: '10px',
87
      minWidth: '2px',
88
      paddingTop: '10px',
89
    },
90
  };
91

NEW
92
  const MuiDialogContentText = {
×
93
    root: {
94
      color: '#000000',
95
      marginBottom: '10px',
96
      '& p:last-child': {
97
        marginBottom: '0px',
98
      },
99
    },
100
  };
101

NEW
102
  const MuiBackdrop = {
×
103
    root: {
104
      backgroundColor: '#00000047',
105
    },
106
  };
107

NEW
108
  const MuiDialogActions = {
×
109
    root: {
110
      height: '75px',
111
      justifyContent: 'flex-end !important',
112
      padding: '30px 10px 25px 0px !important',
113
    },
114
  };
115

NEW
116
  overridesObj.MuiDialog = MuiDialog;
×
NEW
117
  overridesObj.MuiDialogContent = MuiDialogContent;
×
NEW
118
  overridesObj.MuiButton = MuiButton;
×
NEW
119
  overridesObj.MuiDialogActions = MuiDialogActions;
×
NEW
120
  overridesObj.MuiDialogTitle = MuiDialogTitle;
×
NEW
121
  overridesObj.MuiTypography = MuiTypography;
×
NEW
122
  overridesObj.MuiList = MuiList;
×
NEW
123
  overridesObj.MuiListItem = MuiListItem;
×
NEW
124
  overridesObj.MuiListItemIcon = MuiListItemIcon;
×
NEW
125
  overridesObj.MuiDialogContentText = MuiDialogContentText;
×
NEW
126
  overridesObj.MuiBackdrop = MuiBackdrop;
×
127

NEW
128
  const computedTheme = createTheme({
×
129
    ...themes.light,
130
    overrides: overridesObj,
131
  });
132

NEW
133
  return (
×
134
    <ThemeProvider theme={computedTheme}>{children}</ThemeProvider>
135
  );
NEW
136
};
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc