namirasoft-account-react 1.4.207 → 1.4.209

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/.env.template +13 -13
  2. package/config-overrides.js +72 -72
  3. package/dist/App.css +32 -0
  4. package/dist/components/NSAAccessListDialog.d.ts +1 -0
  5. package/dist/components/NSAAccessListDialog.js +18 -18
  6. package/dist/components/NSAAccessListDialog.js.map +1 -1
  7. package/dist/components/NSAAccessListDialog.module.css +71 -71
  8. package/dist/components/NSAMessageListDialog.module.css +99 -99
  9. package/dist/components/NSAProductListDialog.module.css +44 -44
  10. package/dist/components/NSAWorkspaceListDialog.d.ts +2 -0
  11. package/dist/components/NSAWorkspaceListDialog.js +31 -8
  12. package/dist/components/NSAWorkspaceListDialog.js.map +1 -1
  13. package/dist/components/NSAWorkspaceListDialog.module.css +41 -41
  14. package/dist/index.css +0 -0
  15. package/dist/layouts/NSALayout.js +5 -7
  16. package/dist/layouts/NSALayout.js.map +1 -1
  17. package/dist/layouts/NSASectionEditTabPage.module.css +4 -4
  18. package/dist/layouts/NSASectionList.d.ts +14 -4
  19. package/dist/layouts/NSASectionList.js +8 -9
  20. package/dist/layouts/NSASectionList.js.map +1 -1
  21. package/dist/layouts/NSASectionTabs.module.css +47 -47
  22. package/dist/pages/NSAHomePage.module.css +23 -23
  23. package/dist/pages/NSALoginPage.module.css +26 -26
  24. package/dist/pages/NSAVerificationPage.module.css +31 -31
  25. package/package.json +76 -76
  26. package/public/index.html +21 -21
  27. package/src/App.css +31 -31
  28. package/src/App.tsx +93 -93
  29. package/src/CTFRow.ts +7 -7
  30. package/src/IEntityInfo.ts +31 -31
  31. package/src/INSARouterMaker.ts +7 -7
  32. package/src/INSARouterProps.ts +17 -17
  33. package/src/INSARouterState.ts +5 -5
  34. package/src/Info.ts +20 -20
  35. package/src/NSARouterMaker.tsx +142 -142
  36. package/src/Router.tsx +40 -40
  37. package/src/components/NSAAccessListDialog.module.css +71 -71
  38. package/src/components/NSAAccessListDialog.tsx +171 -169
  39. package/src/components/NSAMessageListDialog.module.css +99 -99
  40. package/src/components/NSAMessageListDialog.tsx +130 -130
  41. package/src/components/NSAProductListDialog.module.css +44 -44
  42. package/src/components/NSAProductListDialog.tsx +106 -106
  43. package/src/components/NSAWorkspaceListDialog.module.css +41 -41
  44. package/src/components/NSAWorkspaceListDialog.tsx +144 -106
  45. package/src/components/NSBoxSecret.tsx +102 -102
  46. package/src/index.tsx +24 -24
  47. package/src/layouts/Actions.ts +125 -125
  48. package/src/layouts/CFTUtil.ts +18 -18
  49. package/src/layouts/NSALayout.tsx +588 -590
  50. package/src/layouts/NSASectionEdit.tsx +189 -189
  51. package/src/layouts/NSASectionEditTabPage.module.css +4 -4
  52. package/src/layouts/NSASectionEditTabPage.tsx +222 -222
  53. package/src/layouts/NSASectionList.tsx +254 -252
  54. package/src/layouts/NSASectionTabs.module.css +47 -47
  55. package/src/layouts/NSASectionTabs.tsx +279 -279
  56. package/src/layouts/NSASectionTabsMore.tsx +68 -68
  57. package/src/layouts/NSASectionView.tsx +89 -89
  58. package/src/main.ts +17 -17
  59. package/src/pages/NSAHomePage.module.css +23 -23
  60. package/src/pages/NSAHomePage.tsx +29 -29
  61. package/src/pages/NSALoginPage.module.css +26 -26
  62. package/src/pages/NSALoginPage.tsx +59 -59
  63. package/src/pages/NSAVerificationPage.module.css +31 -31
  64. package/src/pages/NSAVerificationPage.tsx +130 -130
  65. package/tsconfig.json +43 -43
package/.env.template CHANGED
@@ -1,14 +1,14 @@
1
- ## BASE
2
- REACT_APP_BASE_PATH = ""
3
- REACT_APP_BASE_URL_ACCESS = "https://access.namirasoft.com/api/v1"
4
- REACT_APP_BASE_URL_ACCOUNT = "https://account.namirasoft.com/api/v1"
5
- REACT_APP_BASE_URL_ACCOUNT_CONSOLE = "https://account.namirasoft.com"
6
- REACT_APP_BASE_URL_API_LINK = "https://namirasoft.com/api/link/v1"
7
- REACT_APP_BASE_URL_API_PRODUCT = "https://namirasoft.com/api/product/v1"
8
- REACT_APP_BASE_URL_FIELD = "https://field.namirasoft.com/api/v1";
9
- REACT_APP_BASE_URL_HISTORY = "https://history.namirasoft.com/api/v1";
10
- REACT_APP_BASE_URL_HISTORY_CONSOLE = "https://history.namirasoft.com";
11
- REACT_APP_BASE_URL_MESSAGE = "https://message.namirasoft.com/api/v1";
12
- REACT_APP_BASE_URL_MESSAGE_CONSOLE = "https://message.namirasoft.com"
13
- REACT_APP_BASE_URL_SECRET = "https://secret.namirasoft.com/api/v1";
1
+ ## BASE
2
+ REACT_APP_BASE_PATH = ""
3
+ REACT_APP_BASE_URL_ACCESS = "https://access.namirasoft.com/api/v1"
4
+ REACT_APP_BASE_URL_ACCOUNT = "https://account.namirasoft.com/api/v1"
5
+ REACT_APP_BASE_URL_ACCOUNT_CONSOLE = "https://account.namirasoft.com"
6
+ REACT_APP_BASE_URL_API_LINK = "https://namirasoft.com/api/link/v1"
7
+ REACT_APP_BASE_URL_API_PRODUCT = "https://namirasoft.com/api/product/v1"
8
+ REACT_APP_BASE_URL_FIELD = "https://field.namirasoft.com/api/v1";
9
+ REACT_APP_BASE_URL_HISTORY = "https://history.namirasoft.com/api/v1";
10
+ REACT_APP_BASE_URL_HISTORY_CONSOLE = "https://history.namirasoft.com";
11
+ REACT_APP_BASE_URL_MESSAGE = "https://message.namirasoft.com/api/v1";
12
+ REACT_APP_BASE_URL_MESSAGE_CONSOLE = "https://message.namirasoft.com"
13
+ REACT_APP_BASE_URL_SECRET = "https://secret.namirasoft.com/api/v1";
14
14
  REACT_APP_BASE_URL_WORKSPACE = "https://workspace.namirasoft.com/api/v1"
@@ -1,73 +1,73 @@
1
- const getCacheIdentifier = require('react-dev-utils/getCacheIdentifier');
2
- const webpack = require('webpack');
3
-
4
- const shouldUseSourceMap = process.env.GENERATE_SOURCEMAP !== 'false';
5
-
6
- module.exports = function config_overrides(config, webpackEnv)
7
- {
8
- console.log('overriding webpack config...');
9
- const isEnvDevelopment = webpackEnv === 'development';
10
- const isEnvProduction = webpackEnv === 'production';
11
- const loaders = config.module.rules[1].oneOf;
12
-
13
- loaders.splice(loaders.length - 1, 0, {
14
- test: /\.(js|mjs|cjs)$/,
15
- exclude: /@babel(?:\/|\\{1,2})runtime/,
16
- loader: require.resolve('babel-loader'),
17
- options: {
18
- babelrc: false,
19
- configFile: false,
20
- compact: false,
21
- presets: [
22
- [
23
- require.resolve('babel-preset-react-app/dependencies'),
24
- { helpers: true },
25
- ],
26
- ],
27
- cacheDirectory: true,
28
- // See #6846 for context on why cacheCompression is disabled
29
- cacheCompression: false,
30
- // @remove-on-eject-begin
31
- cacheIdentifier: getCacheIdentifier(
32
- isEnvProduction
33
- ? 'production'
34
- : isEnvDevelopment && 'development',
35
- [
36
- 'babel-plugin-named-asset-import',
37
- 'babel-preset-react-app',
38
- 'react-dev-utils',
39
- 'react-scripts',
40
- ]
41
- ),
42
- // @remove-on-eject-end
43
- // Babel sourcemaps are needed for debugging into node_modules
44
- // code. Without the options below, debuggers like VSCode
45
- // show incorrect code and set breakpoints on the wrong lines.
46
- sourceMaps: shouldUseSourceMap,
47
- inputSourceMap: shouldUseSourceMap,
48
- },
49
- });
50
-
51
- config.resolve.fallback = {
52
- "fs": false,
53
- "tls": false,
54
- "net": false,
55
- "https": false,
56
- // "http": require.resolve("stream-http"),
57
- // "zlib": require.resolve("browserify-zlib"),
58
- "path": require.resolve("path-browserify"),
59
- // "stream": require.resolve("stream-browserify"),
60
- // "util": require.resolve("util/"),
61
- // "crypto": require.resolve("crypto-browserify")
62
- "child_process": false,
63
- "os": false,
64
- "crypto": false
65
- }
66
- config.plugins = (config.plugins || []).concat([
67
- new webpack.NormalModuleReplacementPlugin(/node:/, (resource) =>
68
- {
69
- resource.request = resource.request.replace(/^node:/, "");
70
- })
71
- ]);
72
- return config;
1
+ const getCacheIdentifier = require('react-dev-utils/getCacheIdentifier');
2
+ const webpack = require('webpack');
3
+
4
+ const shouldUseSourceMap = process.env.GENERATE_SOURCEMAP !== 'false';
5
+
6
+ module.exports = function config_overrides(config, webpackEnv)
7
+ {
8
+ console.log('overriding webpack config...');
9
+ const isEnvDevelopment = webpackEnv === 'development';
10
+ const isEnvProduction = webpackEnv === 'production';
11
+ const loaders = config.module.rules[1].oneOf;
12
+
13
+ loaders.splice(loaders.length - 1, 0, {
14
+ test: /\.(js|mjs|cjs)$/,
15
+ exclude: /@babel(?:\/|\\{1,2})runtime/,
16
+ loader: require.resolve('babel-loader'),
17
+ options: {
18
+ babelrc: false,
19
+ configFile: false,
20
+ compact: false,
21
+ presets: [
22
+ [
23
+ require.resolve('babel-preset-react-app/dependencies'),
24
+ { helpers: true },
25
+ ],
26
+ ],
27
+ cacheDirectory: true,
28
+ // See #6846 for context on why cacheCompression is disabled
29
+ cacheCompression: false,
30
+ // @remove-on-eject-begin
31
+ cacheIdentifier: getCacheIdentifier(
32
+ isEnvProduction
33
+ ? 'production'
34
+ : isEnvDevelopment && 'development',
35
+ [
36
+ 'babel-plugin-named-asset-import',
37
+ 'babel-preset-react-app',
38
+ 'react-dev-utils',
39
+ 'react-scripts',
40
+ ]
41
+ ),
42
+ // @remove-on-eject-end
43
+ // Babel sourcemaps are needed for debugging into node_modules
44
+ // code. Without the options below, debuggers like VSCode
45
+ // show incorrect code and set breakpoints on the wrong lines.
46
+ sourceMaps: shouldUseSourceMap,
47
+ inputSourceMap: shouldUseSourceMap,
48
+ },
49
+ });
50
+
51
+ config.resolve.fallback = {
52
+ "fs": false,
53
+ "tls": false,
54
+ "net": false,
55
+ "https": false,
56
+ // "http": require.resolve("stream-http"),
57
+ // "zlib": require.resolve("browserify-zlib"),
58
+ "path": require.resolve("path-browserify"),
59
+ // "stream": require.resolve("stream-browserify"),
60
+ // "util": require.resolve("util/"),
61
+ // "crypto": require.resolve("crypto-browserify")
62
+ "child_process": false,
63
+ "os": false,
64
+ "crypto": false
65
+ }
66
+ config.plugins = (config.plugins || []).concat([
67
+ new webpack.NormalModuleReplacementPlugin(/node:/, (resource) =>
68
+ {
69
+ resource.request = resource.request.replace(/^node:/, "");
70
+ })
71
+ ]);
72
+ return config;
73
73
  };
package/dist/App.css ADDED
@@ -0,0 +1,32 @@
1
+ @font-face {
2
+ font-family: inter;
3
+ src: url("../src/assets/fonts/Inter-Regular.ttf");
4
+ }
5
+
6
+ body {
7
+ margin: 0;
8
+ font-family: inter;
9
+ -webkit-font-smoothing: antialiased;
10
+ -moz-osx-font-smoothing: grayscale;
11
+ }
12
+
13
+
14
+ .btn-close {
15
+ background: url(https://static.namirasoft.com/image/concept/close/blue.svg) center/1em auto no-repeat !important;
16
+ opacity: 1 !important;
17
+ }
18
+
19
+ .nsa_font_16_bold {
20
+ font-size: 16px;
21
+ font-weight: 600;
22
+ }
23
+
24
+ .nsa_font_13_normal {
25
+ font-size: 13px;
26
+ font-weight: 300;
27
+ }
28
+
29
+ .nsa_font_12_normal {
30
+ font-size: 12px;
31
+ font-weight: 300;
32
+ }
@@ -7,6 +7,7 @@ export interface NSAAccessListDialogProps extends INSARouterProps, NSDialogProps
7
7
  }
8
8
  export interface NSAAccessListDialogState {
9
9
  permissions: PermissionRow[] | null;
10
+ current_id: string;
10
11
  }
11
12
  export declare class NSAAccessListDialog extends Component<NSAAccessListDialogProps, NSAAccessListDialogState> {
12
13
  private toastRef;
@@ -7,7 +7,7 @@ import Styles from './NSAAccessListDialog.module.css';
7
7
  export class NSAAccessListDialog extends Component {
8
8
  constructor(props) {
9
9
  super(props);
10
- this.state = { permissions: null };
10
+ this.state = { permissions: null, current_id: "" };
11
11
  this.toastRef = createRef();
12
12
  this.handleClickOutside = this.handleClickOutside.bind(this);
13
13
  }
@@ -16,7 +16,7 @@ export class NSAAccessListDialog extends Component {
16
16
  let REACT_APP_BASE_URL_ACCESS = new EnvService("REACT_APP_BASE_URL_ACCESS", true).getString();
17
17
  let server = new NamirasoftAccessServer(REACT_APP_BASE_URL_ACCESS, this.props.account.token_manager, this.props.notifier.onError);
18
18
  server.permission.ListIncoming([], null, null, []).then(res => {
19
- this.setState({ permissions: res.rows });
19
+ this.setState({ permissions: res.rows, current_id: res.current_id });
20
20
  }).catch(() => { });
21
21
  }
22
22
  componentWillUnmount() {
@@ -27,6 +27,7 @@ export class NSAAccessListDialog extends Component {
27
27
  this.props.onClose();
28
28
  }
29
29
  render() {
30
+ var _a;
30
31
  let content = null;
31
32
  if (this.state.permissions === null)
32
33
  content = (_jsx(NSLoading, {}));
@@ -35,6 +36,19 @@ export class NSAAccessListDialog extends Component {
35
36
  let first_name = this.props.account.token_manager.getUserData(u => u.first_name, "");
36
37
  let last_name = this.props.account.token_manager.getUserData(u => u.last_name, "");
37
38
  let email = this.props.account.token_manager.getUserData(u => u.email, "");
39
+ let me = {
40
+ id: "",
41
+ user_id,
42
+ to_user_id: user_id,
43
+ from_first_name: first_name,
44
+ from_last_name: last_name,
45
+ from_email: email,
46
+ to_first_name: first_name,
47
+ to_last_name: last_name,
48
+ to_email: email,
49
+ created_at: new Date(),
50
+ updated_at: new Date()
51
+ };
38
52
  let generate = (permission, add_space = true) => {
39
53
  return (_jsxs(_Fragment, { children: [_jsx("div", { className: Styles.nsa_access_list_dialog_users_container, onClick: () => {
40
54
  let REACT_APP_BASE_URL_ACCESS = new EnvService("REACT_APP_BASE_URL_ACCESS", true).getString();
@@ -49,23 +63,9 @@ export class NSAAccessListDialog extends Component {
49
63
  }).catch(() => { });
50
64
  }, children: _jsxs("div", { className: 'd-flex flex-column', style: { padding: "8px 0px", width: "100%" }, children: [_jsx("p", { className: Styles.nsa_access_list_dialog_item_name, children: `${permission.from_first_name} ${permission.from_last_name}`.trim() }), _jsx("p", { className: Styles.nsa_access_list_dialog_item_email, children: permission.from_email }), _jsx("div", { style: { width: "100%", display: "flex", justifyContent: "left" }, children: _jsx(NSCopy, { id: current.user_id, classList: ["flex-row"], children: _jsx("p", { className: `text-center ${Styles.nsa_access_list_dialog_item_id}`, style: { cursor: "pointer" }, children: permission.user_id }) }) })] }) }, permission.id), add_space && _jsx(NSSpace, { size: NSSpaceSizeType.MINI })] }));
51
65
  };
52
- let me = {
53
- id: "",
54
- user_id,
55
- to_user_id: user_id,
56
- from_first_name: first_name,
57
- from_last_name: last_name,
58
- from_email: email,
59
- to_first_name: first_name,
60
- to_last_name: last_name,
61
- to_email: email,
62
- default: this.state.permissions.filter(x => x.default).length === 0,
63
- created_at: new Date(),
64
- updated_at: new Date()
65
- };
66
66
  let permissions = [me, ...this.state.permissions];
67
- let current = permissions.filter(x => x.default)[0];
68
- permissions = permissions.filter(x => !x.default);
67
+ let current = (_a = permissions.filter(p => p.id === this.state.current_id)[0]) !== null && _a !== void 0 ? _a : me;
68
+ permissions = permissions.filter(p => p.id !== current.id);
69
69
  let content_permission = permissions.map((item, index) => generate(item, index !== permissions.length - 1));
70
70
  let content_profile = _jsx(_Fragment, { children: _jsxs("div", { className: 'text-center d-flex flex-column justify-content-center align-items-center pb-2', children: [_jsx("img", { src: "https://static.namirasoft.com/image/namirasoft/access/logo/circle.png", alt: 'No Profile', width: 96, height: 96, className: 'rounded-circle', style: { cursor: "default", pointerEvents: "none" } }), _jsx("p", { className: "pb-2", children: "You are working as:" }), _jsxs("div", { className: 'd-flex flex-column', children: [_jsx("p", { className: Styles.nsa_access_list_dialog_main_name, children: `${current.from_first_name} ${current.from_last_name}`.trim() }), _jsx("p", { className: Styles.nsa_access_list_dialog_main_email, children: current.from_email }), _jsx(NSCopy, { classList: ["flex-row"], id: current.user_id, children: _jsx("p", { className: `text-center ${Styles.nsa_access_list_dialog_main_id}`, style: { cursor: "pointer" }, children: current.user_id }) })] })] }) });
71
71
  content = (_jsxs(_Fragment, { children: [_jsx("a", { className: 'text-left w-100', href: 'https://access.namirasoft.com/permission/incoming/list/', target: "_blank", rel: "noopener noreferrer", children: _jsx("span", { className: 'd-flex justify-content-left', children: "Manage Accesss" }) }), _jsxs("section", { className: Styles.nsa_access_list_dialog_container, children: [content_profile, _jsx(NSSpace, { size: NSSpaceSizeType.SMALL }), _jsx(NSLine, {}), _jsx(NSSpace, { size: NSSpaceSizeType.SMALL }), content_permission.length === 0 &&
@@ -1 +1 @@
1
- {"version":3,"file":"NSAAccessListDialog.js","sourceRoot":"","sources":["../../src/components/NSAAccessListDialog.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"NSAAccessListDialog.js","sourceRoot":"","sources":["../../src/components/NSAAccessListDialog.tsx"],"names":[],"mappings":"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"}
@@ -1,72 +1,72 @@
1
- .nsa_access_list_dialog_container {
2
- width: 302px;
3
- }
4
-
5
- .nsa_access_list_dialog_container p {
6
- padding: 0;
7
- margin: 0;
8
- }
9
-
10
- .nsa_access_list_dialog_item_id {
11
- color: rgba(3, 119, 255, 1);
12
- text-align: right;
13
- font-weight: 600;
14
- font-size: 16px;
15
- cursor: pointer;
16
- margin: 0;
17
- }
18
-
19
- .nsa_access_list_dialog_item_name {
20
- color: rgba(20, 27, 92, 1);
21
- font-weight: 600;
22
- font-size: 16px;
23
- text-align: left;
24
- cursor: pointer;
25
- margin: 0px;
26
- }
27
-
28
- .nsa_access_list_dialog_item_email {
29
- color: rgba(20, 27, 92, 1);
30
- }
31
-
32
- .nsa_access_list_dialog_main_name {
33
- color: rgba(20, 27, 92, 1);
34
- font-weight: 600;
35
- font-size: 24px;
36
- text-align: center;
37
- cursor: pointer;
38
- margin: 0px;
39
- }
40
-
41
- .nsa_access_list_dialog_main_email {
42
- color: rgba(20, 27, 92, 1);
43
- }
44
-
45
- .nsa_access_list_dialog_main_id {
46
- color: rgba(3, 119, 255, 1);
47
- text-align: center;
48
- font-weight: 600;
49
- font-size: 16px;
50
- cursor: pointer;
51
- margin: 0;
52
- }
53
-
54
- .nsa_access_list_dialog_users_container {
55
- padding: 0px 16px 0px 16px;
56
- display: flex;
57
- cursor: pointer;
58
- border: none;
59
- background-color: rgba(224, 226, 235, 1);
60
- border-radius: 8px;
61
- align-items: center;
62
- max-width: 100%;
63
- }
64
-
65
- .nsa_access_list_dialog_users_container:hover {
66
- background-color: rgba(178, 187, 217, 1);
67
- transition: all 0.3s ease-in-out;
68
- }
69
-
70
- .nsa_access_list_dialog_users_container img {
71
- cursor: pointer;
1
+ .nsa_access_list_dialog_container {
2
+ width: 302px;
3
+ }
4
+
5
+ .nsa_access_list_dialog_container p {
6
+ padding: 0;
7
+ margin: 0;
8
+ }
9
+
10
+ .nsa_access_list_dialog_item_id {
11
+ color: rgba(3, 119, 255, 1);
12
+ text-align: right;
13
+ font-weight: 600;
14
+ font-size: 16px;
15
+ cursor: pointer;
16
+ margin: 0;
17
+ }
18
+
19
+ .nsa_access_list_dialog_item_name {
20
+ color: rgba(20, 27, 92, 1);
21
+ font-weight: 600;
22
+ font-size: 16px;
23
+ text-align: left;
24
+ cursor: pointer;
25
+ margin: 0px;
26
+ }
27
+
28
+ .nsa_access_list_dialog_item_email {
29
+ color: rgba(20, 27, 92, 1);
30
+ }
31
+
32
+ .nsa_access_list_dialog_main_name {
33
+ color: rgba(20, 27, 92, 1);
34
+ font-weight: 600;
35
+ font-size: 24px;
36
+ text-align: center;
37
+ cursor: pointer;
38
+ margin: 0px;
39
+ }
40
+
41
+ .nsa_access_list_dialog_main_email {
42
+ color: rgba(20, 27, 92, 1);
43
+ }
44
+
45
+ .nsa_access_list_dialog_main_id {
46
+ color: rgba(3, 119, 255, 1);
47
+ text-align: center;
48
+ font-weight: 600;
49
+ font-size: 16px;
50
+ cursor: pointer;
51
+ margin: 0;
52
+ }
53
+
54
+ .nsa_access_list_dialog_users_container {
55
+ padding: 0px 16px 0px 16px;
56
+ display: flex;
57
+ cursor: pointer;
58
+ border: none;
59
+ background-color: rgba(224, 226, 235, 1);
60
+ border-radius: 8px;
61
+ align-items: center;
62
+ max-width: 100%;
63
+ }
64
+
65
+ .nsa_access_list_dialog_users_container:hover {
66
+ background-color: rgba(178, 187, 217, 1);
67
+ transition: all 0.3s ease-in-out;
68
+ }
69
+
70
+ .nsa_access_list_dialog_users_container img {
71
+ cursor: pointer;
72
72
  }
@@ -1,100 +1,100 @@
1
- .nsa_message_icon {
2
- cursor: pointer;
3
- }
4
-
5
- .nsa_message_title {
6
- color: hsla(212, 100%, 51%, 1)
7
- }
8
-
9
- .nsa_message_item {
10
- background-color: hsla(157, 94%, 42%, 0.1);
11
- padding: 8px 16px;
12
- cursor: pointer !important;
13
- margin: 8px 0;
14
- border-radius: 8px;
15
- }
16
-
17
- .nsa_message_item_title {
18
- color: hsla(234, 64%, 22%, 1);
19
- font-size: 16px;
20
- font-weight: 600;
21
- text-align: left;
22
- }
23
-
24
- .nsa_message_item_content {
25
- color: hsla(234, 64%, 22%, 1);
26
- margin: 0;
27
- text-align: left;
28
- overflow: hidden;
29
- text-overflow: ellipsis;
30
- white-space: nowrap;
31
- }
32
-
33
- .nsa_message_item_ul {
34
- display: flex;
35
- padding-left: 16px !important;
36
- margin-bottom: 0px;
37
- }
38
-
39
- .nsa_message_item_ul li::marker {
40
- color: hsla(157, 94%, 42%, 1);
41
- padding: 20px;
42
- }
43
-
44
- .nsa_message_item_dot_green {
45
- width: 8px;
46
- height: 8px;
47
- background: hsla(157, 94%, 42%, 1);
48
- border-radius: 50%;
49
- }
50
-
51
- .nsa_message_item_dot_gray {
52
- width: 8px;
53
- height: 8px;
54
- background: hsla(228, 9%, 66%, 1);
55
- border-radius: 50%;
56
- }
57
-
58
- .nsa_body_gray {
59
- background-color: #fff;
60
- padding: 16px;
61
- box-shadow: 0px 2px 5px #e6e6e6;
62
- cursor: pointer !important;
63
- }
64
-
65
- .nsa_count {
66
- position: absolute;
67
- background: rgba(3, 119, 255, 1);
68
- right: -5px;
69
- top: -5px;
70
- color: #fff;
71
- width: 18px;
72
- height: 18px;
73
- border-radius: 50%;
74
- display: flex;
75
- justify-content: center;
76
- align-items: center;
77
- }
78
-
79
- .nsa_parent_count {
80
- position: relative;
81
- width: max-content;
82
- }
83
-
84
- .nsa_toast_body {
85
- padding: 0 !important;
86
- height: 100%;
87
- max-width: 302px;
88
- overflow-y: auto;
89
- }
90
-
91
- .nsa_toast_header {
92
- padding: 2px !important;
93
- display: flex;
94
- justify-content: space-between !important;
95
- align-items: center;
96
- }
97
-
98
- .nsa_close_icon {
99
- cursor: pointer;
1
+ .nsa_message_icon {
2
+ cursor: pointer;
3
+ }
4
+
5
+ .nsa_message_title {
6
+ color: hsla(212, 100%, 51%, 1)
7
+ }
8
+
9
+ .nsa_message_item {
10
+ background-color: hsla(157, 94%, 42%, 0.1);
11
+ padding: 8px 16px;
12
+ cursor: pointer !important;
13
+ margin: 8px 0;
14
+ border-radius: 8px;
15
+ }
16
+
17
+ .nsa_message_item_title {
18
+ color: hsla(234, 64%, 22%, 1);
19
+ font-size: 16px;
20
+ font-weight: 600;
21
+ text-align: left;
22
+ }
23
+
24
+ .nsa_message_item_content {
25
+ color: hsla(234, 64%, 22%, 1);
26
+ margin: 0;
27
+ text-align: left;
28
+ overflow: hidden;
29
+ text-overflow: ellipsis;
30
+ white-space: nowrap;
31
+ }
32
+
33
+ .nsa_message_item_ul {
34
+ display: flex;
35
+ padding-left: 16px !important;
36
+ margin-bottom: 0px;
37
+ }
38
+
39
+ .nsa_message_item_ul li::marker {
40
+ color: hsla(157, 94%, 42%, 1);
41
+ padding: 20px;
42
+ }
43
+
44
+ .nsa_message_item_dot_green {
45
+ width: 8px;
46
+ height: 8px;
47
+ background: hsla(157, 94%, 42%, 1);
48
+ border-radius: 50%;
49
+ }
50
+
51
+ .nsa_message_item_dot_gray {
52
+ width: 8px;
53
+ height: 8px;
54
+ background: hsla(228, 9%, 66%, 1);
55
+ border-radius: 50%;
56
+ }
57
+
58
+ .nsa_body_gray {
59
+ background-color: #fff;
60
+ padding: 16px;
61
+ box-shadow: 0px 2px 5px #e6e6e6;
62
+ cursor: pointer !important;
63
+ }
64
+
65
+ .nsa_count {
66
+ position: absolute;
67
+ background: rgba(3, 119, 255, 1);
68
+ right: -5px;
69
+ top: -5px;
70
+ color: #fff;
71
+ width: 18px;
72
+ height: 18px;
73
+ border-radius: 50%;
74
+ display: flex;
75
+ justify-content: center;
76
+ align-items: center;
77
+ }
78
+
79
+ .nsa_parent_count {
80
+ position: relative;
81
+ width: max-content;
82
+ }
83
+
84
+ .nsa_toast_body {
85
+ padding: 0 !important;
86
+ height: 100%;
87
+ max-width: 302px;
88
+ overflow-y: auto;
89
+ }
90
+
91
+ .nsa_toast_header {
92
+ padding: 2px !important;
93
+ display: flex;
94
+ justify-content: space-between !important;
95
+ align-items: center;
96
+ }
97
+
98
+ .nsa_close_icon {
99
+ cursor: pointer;
100
100
  }