synapse-react-client 3.0.17 → 3.0.20

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 (103) hide show
  1. package/dist/containers/AccessRequestSubmissionTable.d.ts +14 -0
  2. package/dist/containers/AccessRequestSubmissionTable.js +90 -0
  3. package/dist/containers/AccessRequestSubmissionTable.js.map +1 -0
  4. package/dist/containers/EntityIdList.js +8 -5
  5. package/dist/containers/EntityIdList.js.map +1 -1
  6. package/dist/containers/EntityLink.js +3 -4
  7. package/dist/containers/EntityLink.js.map +1 -1
  8. package/dist/containers/FullWidthAlert.js +10 -9
  9. package/dist/containers/FullWidthAlert.js.map +1 -1
  10. package/dist/containers/HasAccess.d.ts +2 -1
  11. package/dist/containers/HasAccess.js.map +1 -1
  12. package/dist/containers/IDUReport.d.ts +6 -0
  13. package/dist/containers/IDUReport.js +41 -0
  14. package/dist/containers/IDUReport.js.map +1 -0
  15. package/dist/containers/IDUReportSubmissionInfo.d.ts +7 -0
  16. package/dist/containers/IDUReportSubmissionInfo.js +50 -0
  17. package/dist/containers/IDUReportSubmissionInfo.js.map +1 -0
  18. package/dist/containers/IconSvg.d.ts +2 -1
  19. package/dist/containers/IconSvg.js +4 -0
  20. package/dist/containers/IconSvg.js.map +1 -1
  21. package/dist/containers/MarkdownSynapse.d.ts +1 -0
  22. package/dist/containers/MarkdownSynapse.js +6 -0
  23. package/dist/containers/MarkdownSynapse.js.map +1 -1
  24. package/dist/containers/SqlEditor.d.ts +6 -2
  25. package/dist/containers/SqlEditor.js +16 -9
  26. package/dist/containers/SqlEditor.js.map +1 -1
  27. package/dist/containers/SynapseNavDrawer.js +1 -1
  28. package/dist/containers/SynapseNavDrawer.js.map +1 -1
  29. package/dist/containers/UserOrTeamBadge.js +8 -25
  30. package/dist/containers/UserOrTeamBadge.js.map +1 -1
  31. package/dist/containers/UserSearchBoxV2.d.ts +13 -0
  32. package/dist/containers/UserSearchBoxV2.js +91 -0
  33. package/dist/containers/UserSearchBoxV2.js.map +1 -0
  34. package/dist/containers/dataaccess/AccessRequirementDashboard.d.ts +6 -0
  35. package/dist/containers/dataaccess/AccessRequirementDashboard.js +130 -0
  36. package/dist/containers/dataaccess/AccessRequirementDashboard.js.map +1 -0
  37. package/dist/containers/dataaccess/AccessRequirementTable.d.ts +10 -0
  38. package/dist/containers/dataaccess/AccessRequirementTable.js +89 -0
  39. package/dist/containers/dataaccess/AccessRequirementTable.js.map +1 -0
  40. package/dist/containers/dataaccess/ReviewerDashboard.d.ts +9 -0
  41. package/dist/containers/dataaccess/ReviewerDashboard.js +82 -0
  42. package/dist/containers/dataaccess/ReviewerDashboard.js.map +1 -0
  43. package/dist/containers/dataaccess/SubmissionPage.d.ts +11 -0
  44. package/dist/containers/dataaccess/SubmissionPage.js +176 -0
  45. package/dist/containers/dataaccess/SubmissionPage.js.map +1 -0
  46. package/dist/containers/synapse_table_functions/SynapseTableCell.js +4 -2
  47. package/dist/containers/synapse_table_functions/SynapseTableCell.js.map +1 -1
  48. package/dist/containers/user_profile_links/UserProfileLinks.js.map +1 -1
  49. package/dist/index.d.ts +0 -1
  50. package/dist/index.js +0 -2
  51. package/dist/index.js.map +1 -1
  52. package/dist/style/abstracts/_mixins.scss +13 -8
  53. package/dist/style/components/_global-alert.scss +51 -2
  54. package/dist/style/components/_governance-dashboard.scss +56 -1
  55. package/dist/style/components/_submission-page.scss +5 -2
  56. package/dist/style/main.css +183 -27
  57. package/dist/umd/synapse-react-client.development.css +177 -27
  58. package/dist/umd/synapse-react-client.development.css.map +2 -2
  59. package/dist/umd/synapse-react-client.development.js +6839 -5550
  60. package/dist/umd/synapse-react-client.development.js.map +3 -3
  61. package/dist/umd/synapse-react-client.production.min.css +1 -1
  62. package/dist/umd/synapse-react-client.production.min.js +96 -96
  63. package/dist/umd.index.d.ts +2 -0
  64. package/dist/umd.index.js +2 -0
  65. package/dist/umd.index.js.map +1 -1
  66. package/dist/utils/SynapseClient.d.ts +9 -2
  67. package/dist/utils/SynapseClient.js +15 -2
  68. package/dist/utils/SynapseClient.js.map +1 -1
  69. package/dist/utils/SynapseConstants.d.ts +1 -1
  70. package/dist/utils/SynapseConstants.js +1 -1
  71. package/dist/utils/SynapseConstants.js.map +1 -1
  72. package/dist/utils/functions/getEndpoint.js.map +1 -1
  73. package/dist/utils/hooks/SynapseAPI/dataaccess/useAccessSubmission.d.ts +5 -0
  74. package/dist/utils/hooks/SynapseAPI/dataaccess/useAccessSubmission.js +21 -0
  75. package/dist/utils/hooks/SynapseAPI/dataaccess/useAccessSubmission.js.map +1 -0
  76. package/dist/utils/hooks/SynapseAPI/dataaccess/useGetDataAccessSubmission.d.ts +5 -0
  77. package/dist/utils/hooks/SynapseAPI/dataaccess/useGetDataAccessSubmission.js +11 -0
  78. package/dist/utils/hooks/SynapseAPI/dataaccess/useGetDataAccessSubmission.js.map +1 -0
  79. package/dist/utils/hooks/SynapseAPI/useGetApprovedSubmissionInfo.d.ts +5 -0
  80. package/dist/utils/hooks/SynapseAPI/useGetApprovedSubmissionInfo.js +24 -0
  81. package/dist/utils/hooks/SynapseAPI/useGetApprovedSubmissionInfo.js.map +1 -0
  82. package/dist/utils/hooks/SynapseAPI/useUserBundle.d.ts +2 -1
  83. package/dist/utils/hooks/SynapseAPI/useUserBundle.js +17 -2
  84. package/dist/utils/hooks/SynapseAPI/useUserBundle.js.map +1 -1
  85. package/dist/utils/hooks/SynapseAPI/useUserGroupHeader.d.ts +5 -0
  86. package/dist/utils/hooks/SynapseAPI/useUserGroupHeader.js +28 -0
  87. package/dist/utils/hooks/SynapseAPI/useUserGroupHeader.js.map +1 -0
  88. package/dist/utils/hooks/useDebouncedEffect.d.ts +9 -0
  89. package/dist/utils/hooks/useDebouncedEffect.js +21 -0
  90. package/dist/utils/hooks/useDebouncedEffect.js.map +1 -0
  91. package/dist/utils/hooks/useGetInfoFromIds.d.ts +6 -0
  92. package/dist/utils/hooks/useGetInfoFromIds.js +6 -2
  93. package/dist/utils/hooks/useGetInfoFromIds.js.map +1 -1
  94. package/dist/utils/synapseTypes/AccessRequirement/Submission.d.ts +52 -0
  95. package/dist/utils/synapseTypes/AccessRequirement/Submission.js +3 -0
  96. package/dist/utils/synapseTypes/AccessRequirement/Submission.js.map +1 -0
  97. package/dist/utils/synapseTypes/SubmissionInfo.d.ts +17 -0
  98. package/dist/utils/synapseTypes/SubmissionInfo.js +3 -0
  99. package/dist/utils/synapseTypes/SubmissionInfo.js.map +1 -0
  100. package/package.json +3 -4
  101. package/dist/containers/download_list/ShowDownload.d.ts +0 -13
  102. package/dist/containers/download_list/ShowDownload.js +0 -74
  103. package/dist/containers/download_list/ShowDownload.js.map +0 -1
@@ -1,5 +1,14 @@
1
1
  @use '../abstracts/variables' as SRC;
2
- @use 'sass:color';
2
+ @use 'sass:map';
3
+
4
+ @mixin border-radius($radius) {
5
+ -webkit-border-radius: $radius;
6
+ -moz-border-radius: $radius;
7
+ -ms-border-radius: $radius;
8
+ border-radius: $radius;
9
+ -o-border-radius: $radius;
10
+ -khtml-border-radius: $radius;
11
+ }
3
12
 
4
13
  .FullWidthAlert[role='alert'] {
5
14
  &.global {
@@ -11,9 +20,48 @@
11
20
  }
12
21
  padding: 14px;
13
22
  z-index: 500;
23
+
24
+ // Set up default FullWidthAlert styles for all portals
25
+ color: #323131;
26
+ @include border-radius(0px);
27
+ box-shadow: none;
28
+ margin: 10px 0px;
29
+ border: none;
30
+ .alert-link {
31
+ color: inherit;
32
+ }
33
+ &.alert-info {
34
+ background: #d9ebf2;
35
+ border-left: 10px solid #017FA5;
36
+ .iconBackground {
37
+ color: #017FA5;
38
+ }
39
+ }
40
+ &.alert-danger {
41
+ background: #f7e0dc;
42
+ border-left: 10px solid #C13415;
43
+ .iconBackground {
44
+ color: #C13415;
45
+ }
46
+ }
47
+ &.alert-warning {
48
+ background: #f8f1d9;
49
+ border-left: 10px solid #CC9F00;
50
+ .iconBackground {
51
+ color: #CC9F00;
52
+ }
53
+ }
54
+ &.alert-success {
55
+ background: #e0f1e0;
56
+ border-left: 10px solid #32A330;
57
+ .iconBackground {
58
+ color: #32A330;
59
+ }
60
+ }
61
+
14
62
  .gridContainer {
15
63
  display: grid;
16
- grid-template-columns: 50px auto 150px 200px;
64
+ grid-template-columns: 50px auto 120px 170px;
17
65
  column-gap: 10px;
18
66
  align-items: center;
19
67
  justify-items: start;
@@ -38,6 +86,7 @@
38
86
  grid-row: 1 / span 1;
39
87
  justify-self: end;
40
88
  padding-bottom: 6px;
89
+ color: map.get(SRC.$colors, 'gray-700');
41
90
  }
42
91
  @media (min-width: 992px) {
43
92
  grid-template-rows: auto;
@@ -1,6 +1,34 @@
1
1
  @use '../abstracts/variables' as SRC;
2
+ @use '../abstracts/mixins' as SrcMixins;
2
3
  @use 'sass:map';
3
4
 
5
+ .ReviewerDashboard {
6
+ .Breadcrumb {
7
+ display: flex;
8
+ align-items: center;
9
+ margin-bottom: 20px;
10
+ }
11
+
12
+ .Tabs {
13
+ @include SrcMixins.underline-tabs();
14
+ justify-content: flex-start;
15
+ box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.05);
16
+ .Tab {
17
+ @include SrcMixins.ignoreLink();
18
+ flex-grow: 0;
19
+ height: 45px;
20
+ padding-left: 30px;
21
+ padding-right: 30px;
22
+
23
+ display: flex;
24
+ align-items: center;
25
+ }
26
+ }
27
+ .TabContentContainer {
28
+ margin: 20px 30px;
29
+ }
30
+ }
31
+
4
32
  .AccessApprovalsTable,
5
33
  .AccessSubmissionTable,
6
34
  .AccessRequirementsTable {
@@ -25,6 +53,7 @@
25
53
  font-style: italic;
26
54
  color: map.get(SRC.$colors, 'gray-700') !important;
27
55
  }
56
+ .InlineLabel,
28
57
  .expired {
29
58
  color: map.get(SRC.$colors, 'gray-700');
30
59
  }
@@ -32,4 +61,30 @@
32
61
  color: map.get(SRC.$colors, 'gray-700');
33
62
  font-style: italic;
34
63
  }
35
- }
64
+ }
65
+
66
+ .AccessRequirementDashboard {
67
+ .InputPanel {
68
+ display: grid;
69
+ grid-template-columns: auto 265px auto;
70
+ gap: 25px;
71
+
72
+ input {
73
+ margin-bottom: 0;
74
+ }
75
+
76
+ .ProjectIdInputGroup {
77
+ display: flex;
78
+ gap: 5px;
79
+ }
80
+
81
+ .styled-svg-wrapper {
82
+ position: absolute;
83
+ right: 5px;
84
+ z-index: 5;
85
+ height: 100%;
86
+ display: flex;
87
+ align-items: center;
88
+ }
89
+ }
90
+ }
@@ -22,6 +22,7 @@
22
22
  }
23
23
  .SubmissionSummary {
24
24
  margin-bottom: 15px;
25
+ min-width: 320px;
25
26
  .SubmissionSummaryGrid {
26
27
  display: grid;
27
28
  column-gap: 10px;
@@ -35,11 +36,13 @@
35
36
  grid-column: 2;
36
37
  }
37
38
 
38
- > * {
39
- white-space: nowrap;
39
+ .DataAccessor {
40
+ margin-top: 5px;
41
+ margin-bottom: 3px;
40
42
  }
41
43
  }
42
44
  }
45
+
43
46
  ul {
44
47
  padding-left: 25px;
45
48
  li {
@@ -18798,19 +18798,25 @@ button:hover .SRC-column-light-theme .SRC-light-column {
18798
18798
  text-align: center;
18799
18799
  flex-grow: 1;
18800
18800
  padding: 5px 0px;
18801
- transition: border-bottom 300ms ease-in;
18801
+ transition: border-bottom 200ms ease-in;
18802
+ border-bottom: 3px solid transparent;
18802
18803
  }
18803
- .ProgrammaticOptions .Tabs > *[aria-selected=true] {
18804
- border-bottom: 3px solid #469285;
18804
+ .ProgrammaticOptions .Tabs > *[aria-selected=false],
18805
+ .ProgrammaticOptions .Tabs > *[aria-current=false] {
18806
+ color: #878e95;
18807
+ border-bottom: 3px solid lightgray;
18808
+ }
18809
+ .ProgrammaticOptions .Tabs > *:hover,
18810
+ .ProgrammaticOptions .Tabs > *[aria-selected=true],
18811
+ .ProgrammaticOptions .Tabs > *[aria-current=page] {
18812
+ border-color: #469285;
18805
18813
  color: #22252a;
18806
18814
  }
18807
- .ProgrammaticOptions .Tabs > *[aria-selected=true] svg {
18815
+ .ProgrammaticOptions .Tabs > *:hover svg,
18816
+ .ProgrammaticOptions .Tabs > *[aria-selected=true] svg,
18817
+ .ProgrammaticOptions .Tabs > *[aria-current=page] svg {
18808
18818
  color: #469285;
18809
18819
  }
18810
- .ProgrammaticOptions .Tabs > *[aria-selected=false] {
18811
- color: #878e95;
18812
- border-bottom: 3px solid lightgray;
18813
- }
18814
18820
  .ProgrammaticOptions .TabContent {
18815
18821
  padding-top: 20px;
18816
18822
  min-height: 300px;
@@ -22811,19 +22817,25 @@ table.DownloadListTableV2 td {
22811
22817
  text-align: center;
22812
22818
  flex-grow: 1;
22813
22819
  padding: 5px 0px;
22814
- transition: border-bottom 300ms ease-in;
22820
+ transition: border-bottom 200ms ease-in;
22821
+ border-bottom: 3px solid transparent;
22815
22822
  }
22816
- .EntityMetadata .Tabs > *[aria-selected=true] {
22817
- border-bottom: 3px solid #469285;
22823
+ .EntityMetadata .Tabs > *[aria-selected=false],
22824
+ .EntityMetadata .Tabs > *[aria-current=false] {
22825
+ color: #878e95;
22826
+ border-bottom: 3px solid lightgray;
22827
+ }
22828
+ .EntityMetadata .Tabs > *:hover,
22829
+ .EntityMetadata .Tabs > *[aria-selected=true],
22830
+ .EntityMetadata .Tabs > *[aria-current=page] {
22831
+ border-color: #469285;
22818
22832
  color: #22252a;
22819
22833
  }
22820
- .EntityMetadata .Tabs > *[aria-selected=true] svg {
22834
+ .EntityMetadata .Tabs > *:hover svg,
22835
+ .EntityMetadata .Tabs > *[aria-selected=true] svg,
22836
+ .EntityMetadata .Tabs > *[aria-current=page] svg {
22821
22837
  color: #469285;
22822
22838
  }
22823
- .EntityMetadata .Tabs > *[aria-selected=false] {
22824
- color: #878e95;
22825
- border-bottom: 3px solid lightgray;
22826
- }
22827
22839
  .EntityMetadata .placeholder {
22828
22840
  margin: 30px 0px;
22829
22841
  text-align: center;
@@ -23071,6 +23083,16 @@ table.DownloadListTableV2 td {
23071
23083
  .FullWidthAlert[role=alert] {
23072
23084
  padding: 14px;
23073
23085
  z-index: 500;
23086
+ color: #323131;
23087
+ -webkit-border-radius: 0px;
23088
+ -moz-border-radius: 0px;
23089
+ -ms-border-radius: 0px;
23090
+ border-radius: 0px;
23091
+ -o-border-radius: 0px;
23092
+ -khtml-border-radius: 0px;
23093
+ box-shadow: none;
23094
+ margin: 10px 0px;
23095
+ border: none;
23074
23096
  }
23075
23097
  .FullWidthAlert[role=alert].global {
23076
23098
  width: 100%;
@@ -23079,9 +23101,40 @@ table.DownloadListTableV2 td {
23079
23101
  left: 0px;
23080
23102
  z-index: 2500;
23081
23103
  }
23104
+ .FullWidthAlert[role=alert] .alert-link {
23105
+ color: inherit;
23106
+ }
23107
+ .FullWidthAlert[role=alert].alert-info {
23108
+ background: #d9ebf2;
23109
+ border-left: 10px solid #017FA5;
23110
+ }
23111
+ .FullWidthAlert[role=alert].alert-info .iconBackground {
23112
+ color: #017FA5;
23113
+ }
23114
+ .FullWidthAlert[role=alert].alert-danger {
23115
+ background: #f7e0dc;
23116
+ border-left: 10px solid #C13415;
23117
+ }
23118
+ .FullWidthAlert[role=alert].alert-danger .iconBackground {
23119
+ color: #C13415;
23120
+ }
23121
+ .FullWidthAlert[role=alert].alert-warning {
23122
+ background: #f8f1d9;
23123
+ border-left: 10px solid #CC9F00;
23124
+ }
23125
+ .FullWidthAlert[role=alert].alert-warning .iconBackground {
23126
+ color: #CC9F00;
23127
+ }
23128
+ .FullWidthAlert[role=alert].alert-success {
23129
+ background: #e0f1e0;
23130
+ border-left: 10px solid #32A330;
23131
+ }
23132
+ .FullWidthAlert[role=alert].alert-success .iconBackground {
23133
+ color: #32A330;
23134
+ }
23082
23135
  .FullWidthAlert[role=alert] .gridContainer {
23083
23136
  display: grid;
23084
- grid-template-columns: 50px auto 150px 200px;
23137
+ grid-template-columns: 50px auto 120px 170px;
23085
23138
  column-gap: 10px;
23086
23139
  align-items: center;
23087
23140
  justify-items: start;
@@ -23107,6 +23160,7 @@ table.DownloadListTableV2 td {
23107
23160
  grid-row: 1/span 1;
23108
23161
  justify-self: end;
23109
23162
  padding-bottom: 6px;
23163
+ color: #878e95;
23110
23164
  }
23111
23165
  @media (min-width: 992px) {
23112
23166
  .FullWidthAlert[role=alert] .gridContainer {
@@ -23524,19 +23578,25 @@ table.DownloadListTableV2 td {
23524
23578
  text-align: center;
23525
23579
  flex-grow: 1;
23526
23580
  padding: 5px 0px;
23527
- transition: border-bottom 300ms ease-in;
23581
+ transition: border-bottom 200ms ease-in;
23582
+ border-bottom: 3px solid transparent;
23528
23583
  }
23529
- .UserProfileLinks .Tabs > *[aria-selected=true] {
23530
- border-bottom: 3px solid #469285;
23584
+ .UserProfileLinks .Tabs > *[aria-selected=false],
23585
+ .UserProfileLinks .Tabs > *[aria-current=false] {
23586
+ color: #878e95;
23587
+ border-bottom: 3px solid lightgray;
23588
+ }
23589
+ .UserProfileLinks .Tabs > *:hover,
23590
+ .UserProfileLinks .Tabs > *[aria-selected=true],
23591
+ .UserProfileLinks .Tabs > *[aria-current=page] {
23592
+ border-color: #469285;
23531
23593
  color: #22252a;
23532
23594
  }
23533
- .UserProfileLinks .Tabs > *[aria-selected=true] svg {
23595
+ .UserProfileLinks .Tabs > *:hover svg,
23596
+ .UserProfileLinks .Tabs > *[aria-selected=true] svg,
23597
+ .UserProfileLinks .Tabs > *[aria-current=page] svg {
23534
23598
  color: #469285;
23535
23599
  }
23536
- .UserProfileLinks .Tabs > *[aria-selected=false] {
23537
- color: #878e95;
23538
- border-bottom: 3px solid lightgray;
23539
- }
23540
23600
  .UserProfileLinks .Tabs .Tab {
23541
23601
  padding-left: 10px;
23542
23602
  }
@@ -24451,6 +24511,7 @@ input[type=radio] + span {
24451
24511
  }
24452
24512
  .SubmissionPage .SubmissionSummary {
24453
24513
  margin-bottom: 15px;
24514
+ min-width: 320px;
24454
24515
  }
24455
24516
  .SubmissionPage .SubmissionSummary .SubmissionSummaryGrid {
24456
24517
  display: grid;
@@ -24463,8 +24524,9 @@ input[type=radio] + span {
24463
24524
  .SubmissionPage .SubmissionSummary .SubmissionSummaryGrid .Value {
24464
24525
  grid-column: 2;
24465
24526
  }
24466
- .SubmissionPage .SubmissionSummary .SubmissionSummaryGrid > * {
24467
- white-space: nowrap;
24527
+ .SubmissionPage .SubmissionSummary .SubmissionSummaryGrid .DataAccessor {
24528
+ margin-top: 5px;
24529
+ margin-bottom: 3px;
24468
24530
  }
24469
24531
  .SubmissionPage ul {
24470
24532
  padding-left: 25px;
@@ -24491,6 +24553,76 @@ input[type=radio] + span {
24491
24553
  border-radius: 2px;
24492
24554
  }
24493
24555
 
24556
+ /*
24557
+ @param $color string e.g. #eee or red
24558
+ @param $width unit e.g. 15%
24559
+ */
24560
+ .ReviewerDashboard .Breadcrumb {
24561
+ display: flex;
24562
+ align-items: center;
24563
+ margin-bottom: 20px;
24564
+ }
24565
+ .ReviewerDashboard .Tabs {
24566
+ display: flex;
24567
+ justify-content: space-between;
24568
+ justify-content: flex-start;
24569
+ box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.05);
24570
+ }
24571
+ .ReviewerDashboard .Tabs > * {
24572
+ cursor: pointer;
24573
+ text-align: center;
24574
+ flex-grow: 1;
24575
+ padding: 5px 0px;
24576
+ transition: border-bottom 200ms ease-in;
24577
+ border-bottom: 3px solid transparent;
24578
+ }
24579
+ .ReviewerDashboard .Tabs > *[aria-selected=false],
24580
+ .ReviewerDashboard .Tabs > *[aria-current=false] {
24581
+ color: #878e95;
24582
+ border-bottom: 3px solid lightgray;
24583
+ }
24584
+ .ReviewerDashboard .Tabs > *:hover,
24585
+ .ReviewerDashboard .Tabs > *[aria-selected=true],
24586
+ .ReviewerDashboard .Tabs > *[aria-current=page] {
24587
+ border-color: #469285;
24588
+ color: #22252a;
24589
+ }
24590
+ .ReviewerDashboard .Tabs > *:hover svg,
24591
+ .ReviewerDashboard .Tabs > *[aria-selected=true] svg,
24592
+ .ReviewerDashboard .Tabs > *[aria-current=page] svg {
24593
+ color: #469285;
24594
+ }
24595
+ .ReviewerDashboard .Tabs .Tab {
24596
+ color: unset;
24597
+ text-decoration: unset;
24598
+ font-weight: unset;
24599
+ text-decoration: unset;
24600
+ letter-spacing: unset;
24601
+ flex-grow: 0;
24602
+ height: 45px;
24603
+ padding-left: 30px;
24604
+ padding-right: 30px;
24605
+ display: flex;
24606
+ align-items: center;
24607
+ }
24608
+ .ReviewerDashboard .Tabs .Tab:hover {
24609
+ text-decoration: unset;
24610
+ margin-bottom: unset;
24611
+ }
24612
+ .ReviewerDashboard .Tabs .Tab.disabled {
24613
+ color: #aeb5bc;
24614
+ }
24615
+ .ReviewerDashboard .Tabs .Tab.disabled:hover {
24616
+ text-decoration: underline;
24617
+ text-underline-offset: 4px;
24618
+ text-decoration-thickness: 1px;
24619
+ text-decoration-color: #d6d6d6;
24620
+ cursor: default;
24621
+ }
24622
+ .ReviewerDashboard .TabContentContainer {
24623
+ margin: 20px 30px;
24624
+ }
24625
+
24494
24626
  .AccessApprovalsTable,
24495
24627
  .AccessSubmissionTable,
24496
24628
  .AccessRequirementsTable {
@@ -24526,8 +24658,11 @@ input[type=radio] + span {
24526
24658
  font-style: italic;
24527
24659
  color: #878e95 !important;
24528
24660
  }
24661
+ .AccessApprovalsTable .InlineLabel,
24529
24662
  .AccessApprovalsTable .expired,
24663
+ .AccessSubmissionTable .InlineLabel,
24530
24664
  .AccessSubmissionTable .expired,
24665
+ .AccessRequirementsTable .InlineLabel,
24531
24666
  .AccessRequirementsTable .expired {
24532
24667
  color: #878e95;
24533
24668
  }
@@ -24538,4 +24673,25 @@ input[type=radio] + span {
24538
24673
  font-style: italic;
24539
24674
  }
24540
24675
 
24676
+ .AccessRequirementDashboard .InputPanel {
24677
+ display: grid;
24678
+ grid-template-columns: auto 265px auto;
24679
+ gap: 25px;
24680
+ }
24681
+ .AccessRequirementDashboard .InputPanel input {
24682
+ margin-bottom: 0;
24683
+ }
24684
+ .AccessRequirementDashboard .InputPanel .ProjectIdInputGroup {
24685
+ display: flex;
24686
+ gap: 5px;
24687
+ }
24688
+ .AccessRequirementDashboard .InputPanel .styled-svg-wrapper {
24689
+ position: absolute;
24690
+ right: 5px;
24691
+ z-index: 5;
24692
+ height: 100%;
24693
+ display: flex;
24694
+ align-items: center;
24695
+ }
24696
+
24541
24697
  /*# sourceMappingURL=main.css.map */