synapse-react-client 3.0.18 → 3.0.21
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.
- package/dist/containers/AccessRequestSubmissionTable.d.ts +14 -0
- package/dist/containers/AccessRequestSubmissionTable.js +90 -0
- package/dist/containers/AccessRequestSubmissionTable.js.map +1 -0
- package/dist/containers/EntityIdList.js +8 -5
- package/dist/containers/EntityIdList.js.map +1 -1
- package/dist/containers/EntityLink.js +3 -4
- package/dist/containers/EntityLink.js.map +1 -1
- package/dist/containers/ErrorPage.js +1 -1
- package/dist/containers/ErrorPage.js.map +1 -1
- package/dist/containers/FullWidthAlert.js +10 -9
- package/dist/containers/FullWidthAlert.js.map +1 -1
- package/dist/containers/IconSvg.d.ts +1 -1
- package/dist/containers/IconSvg.js +2 -0
- package/dist/containers/IconSvg.js.map +1 -1
- package/dist/containers/Login.d.ts +1 -1
- package/dist/containers/Login.js +1 -1
- package/dist/containers/QueryWrapper.js +10 -11
- package/dist/containers/QueryWrapper.js.map +1 -1
- package/dist/containers/SqlEditor.d.ts +6 -2
- package/dist/containers/SqlEditor.js +16 -9
- package/dist/containers/SqlEditor.js.map +1 -1
- package/dist/containers/SynapseNavDrawer.js +2 -2
- package/dist/containers/SynapseNavDrawer.js.map +1 -1
- package/dist/containers/UserOrTeamBadge.js +8 -25
- package/dist/containers/UserOrTeamBadge.js.map +1 -1
- package/dist/containers/UserSearchBoxV2.d.ts +13 -0
- package/dist/containers/UserSearchBoxV2.js +91 -0
- package/dist/containers/UserSearchBoxV2.js.map +1 -0
- package/dist/containers/dataaccess/AccessRequirementDashboard.d.ts +6 -0
- package/dist/containers/dataaccess/AccessRequirementDashboard.js +130 -0
- package/dist/containers/dataaccess/AccessRequirementDashboard.js.map +1 -0
- package/dist/containers/dataaccess/AccessRequirementTable.d.ts +10 -0
- package/dist/containers/dataaccess/AccessRequirementTable.js +89 -0
- package/dist/containers/dataaccess/AccessRequirementTable.js.map +1 -0
- package/dist/containers/dataaccess/ReviewerDashboard.d.ts +9 -0
- package/dist/containers/dataaccess/ReviewerDashboard.js +82 -0
- package/dist/containers/dataaccess/ReviewerDashboard.js.map +1 -0
- package/dist/containers/dataaccess/SubmissionPage.d.ts +11 -0
- package/dist/containers/dataaccess/SubmissionPage.js +176 -0
- package/dist/containers/dataaccess/SubmissionPage.js.map +1 -0
- package/dist/containers/synapse_table_functions/SynapseTableCell.js +4 -2
- package/dist/containers/synapse_table_functions/SynapseTableCell.js.map +1 -1
- package/dist/containers/table/SynapseTable.js +1 -1
- package/dist/style/abstracts/_mixins.scss +13 -8
- package/dist/style/components/_global-alert.scss +51 -2
- package/dist/style/components/_governance-dashboard.scss +56 -1
- package/dist/style/components/_submission-page.scss +1 -4
- package/dist/style/main.css +180 -28
- package/dist/umd/synapse-react-client.development.css +174 -28
- package/dist/umd/synapse-react-client.development.css.map +2 -2
- package/dist/umd/synapse-react-client.development.js +3335 -1851
- package/dist/umd/synapse-react-client.development.js.map +3 -3
- package/dist/umd/synapse-react-client.production.min.css +1 -1
- package/dist/umd/synapse-react-client.production.min.js +90 -90
- package/dist/umd.index.d.ts +4 -1
- package/dist/umd.index.js +7 -1
- package/dist/umd.index.js.map +1 -1
- package/dist/utils/SynapseClient.d.ts +4 -2
- package/dist/utils/SynapseClient.js +8 -2
- package/dist/utils/SynapseClient.js.map +1 -1
- package/dist/utils/SynapseConstants.d.ts +1 -1
- package/dist/utils/SynapseConstants.js +1 -1
- package/dist/utils/SynapseConstants.js.map +1 -1
- package/dist/utils/functions/getEndpoint.js.map +1 -1
- package/dist/utils/hooks/SynapseAPI/dataaccess/useAccessSubmission.d.ts +5 -0
- package/dist/utils/hooks/SynapseAPI/dataaccess/useAccessSubmission.js +21 -0
- package/dist/utils/hooks/SynapseAPI/dataaccess/useAccessSubmission.js.map +1 -0
- package/dist/utils/hooks/SynapseAPI/dataaccess/useGetDataAccessSubmission.d.ts +5 -0
- package/dist/utils/hooks/SynapseAPI/dataaccess/useGetDataAccessSubmission.js +11 -0
- package/dist/utils/hooks/SynapseAPI/dataaccess/useGetDataAccessSubmission.js.map +1 -0
- package/dist/utils/hooks/SynapseAPI/entity/useEntity.d.ts +5 -0
- package/dist/utils/hooks/SynapseAPI/entity/useGetQueryResultBundle.js +5 -2
- package/dist/utils/hooks/SynapseAPI/entity/useGetQueryResultBundle.js.map +1 -1
- package/dist/utils/hooks/SynapseAPI/useUserBundle.d.ts +2 -1
- package/dist/utils/hooks/SynapseAPI/useUserBundle.js +17 -2
- package/dist/utils/hooks/SynapseAPI/useUserBundle.js.map +1 -1
- package/dist/utils/hooks/SynapseAPI/useUserGroupHeader.d.ts +5 -0
- package/dist/utils/hooks/SynapseAPI/useUserGroupHeader.js +28 -0
- package/dist/utils/hooks/SynapseAPI/useUserGroupHeader.js.map +1 -0
- package/dist/utils/hooks/useDebouncedEffect.d.ts +9 -0
- package/dist/utils/hooks/useDebouncedEffect.js +21 -0
- package/dist/utils/hooks/useDebouncedEffect.js.map +1 -0
- package/dist/utils/hooks/useGetInfoFromIds.d.ts +6 -0
- package/dist/utils/hooks/useGetInfoFromIds.js +6 -2
- package/dist/utils/hooks/useGetInfoFromIds.js.map +1 -1
- package/dist/utils/synapseTypes/AccessRequirement/Submission.d.ts +52 -0
- package/dist/utils/synapseTypes/AccessRequirement/Submission.js +3 -0
- package/dist/utils/synapseTypes/AccessRequirement/Submission.js.map +1 -0
- package/package.json +2 -2
package/dist/style/main.css
CHANGED
|
@@ -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
|
|
18801
|
+
transition: border-bottom 200ms ease-in;
|
|
18802
|
+
border-bottom: 3px solid transparent;
|
|
18802
18803
|
}
|
|
18803
|
-
.ProgrammaticOptions .Tabs > *[aria-selected=
|
|
18804
|
-
|
|
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 >
|
|
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
|
|
22820
|
+
transition: border-bottom 200ms ease-in;
|
|
22821
|
+
border-bottom: 3px solid transparent;
|
|
22815
22822
|
}
|
|
22816
|
-
.EntityMetadata .Tabs > *[aria-selected=
|
|
22817
|
-
|
|
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 >
|
|
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
|
|
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
|
|
23581
|
+
transition: border-bottom 200ms ease-in;
|
|
23582
|
+
border-bottom: 3px solid transparent;
|
|
23528
23583
|
}
|
|
23529
|
-
.UserProfileLinks .Tabs > *[aria-selected=
|
|
23530
|
-
|
|
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 >
|
|
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,9 +24524,6 @@ 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;
|
|
24468
|
-
}
|
|
24469
24527
|
.SubmissionPage .SubmissionSummary .SubmissionSummaryGrid .DataAccessor {
|
|
24470
24528
|
margin-top: 5px;
|
|
24471
24529
|
margin-bottom: 3px;
|
|
@@ -24495,6 +24553,76 @@ input[type=radio] + span {
|
|
|
24495
24553
|
border-radius: 2px;
|
|
24496
24554
|
}
|
|
24497
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
|
+
|
|
24498
24626
|
.AccessApprovalsTable,
|
|
24499
24627
|
.AccessSubmissionTable,
|
|
24500
24628
|
.AccessRequirementsTable {
|
|
@@ -24530,8 +24658,11 @@ input[type=radio] + span {
|
|
|
24530
24658
|
font-style: italic;
|
|
24531
24659
|
color: #878e95 !important;
|
|
24532
24660
|
}
|
|
24661
|
+
.AccessApprovalsTable .InlineLabel,
|
|
24533
24662
|
.AccessApprovalsTable .expired,
|
|
24663
|
+
.AccessSubmissionTable .InlineLabel,
|
|
24534
24664
|
.AccessSubmissionTable .expired,
|
|
24665
|
+
.AccessRequirementsTable .InlineLabel,
|
|
24535
24666
|
.AccessRequirementsTable .expired {
|
|
24536
24667
|
color: #878e95;
|
|
24537
24668
|
}
|
|
@@ -24542,4 +24673,25 @@ input[type=radio] + span {
|
|
|
24542
24673
|
font-style: italic;
|
|
24543
24674
|
}
|
|
24544
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
|
+
|
|
24545
24697
|
/*# sourceMappingURL=main.css.map */
|
|
@@ -18844,19 +18844,25 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
18844
18844
|
text-align: center;
|
|
18845
18845
|
flex-grow: 1;
|
|
18846
18846
|
padding: 5px 0px;
|
|
18847
|
-
transition: border-bottom
|
|
18847
|
+
transition: border-bottom 200ms ease-in;
|
|
18848
|
+
border-bottom: 3px solid transparent;
|
|
18848
18849
|
}
|
|
18849
|
-
.ProgrammaticOptions .Tabs > *[aria-selected=
|
|
18850
|
-
|
|
18850
|
+
.ProgrammaticOptions .Tabs > *[aria-selected=false],
|
|
18851
|
+
.ProgrammaticOptions .Tabs > *[aria-current=false] {
|
|
18852
|
+
color: #878e95;
|
|
18853
|
+
border-bottom: 3px solid lightgray;
|
|
18854
|
+
}
|
|
18855
|
+
.ProgrammaticOptions .Tabs > *:hover,
|
|
18856
|
+
.ProgrammaticOptions .Tabs > *[aria-selected=true],
|
|
18857
|
+
.ProgrammaticOptions .Tabs > *[aria-current=page] {
|
|
18858
|
+
border-color: #469285;
|
|
18851
18859
|
color: #22252a;
|
|
18852
18860
|
}
|
|
18853
|
-
.ProgrammaticOptions .Tabs >
|
|
18861
|
+
.ProgrammaticOptions .Tabs > *:hover svg,
|
|
18862
|
+
.ProgrammaticOptions .Tabs > *[aria-selected=true] svg,
|
|
18863
|
+
.ProgrammaticOptions .Tabs > *[aria-current=page] svg {
|
|
18854
18864
|
color: #469285;
|
|
18855
18865
|
}
|
|
18856
|
-
.ProgrammaticOptions .Tabs > *[aria-selected=false] {
|
|
18857
|
-
color: #878e95;
|
|
18858
|
-
border-bottom: 3px solid lightgray;
|
|
18859
|
-
}
|
|
18860
18866
|
.ProgrammaticOptions .TabContent {
|
|
18861
18867
|
padding-top: 20px;
|
|
18862
18868
|
min-height: 300px;
|
|
@@ -22665,19 +22671,25 @@ table.DownloadListTableV2 td {
|
|
|
22665
22671
|
text-align: center;
|
|
22666
22672
|
flex-grow: 1;
|
|
22667
22673
|
padding: 5px 0px;
|
|
22668
|
-
transition: border-bottom
|
|
22674
|
+
transition: border-bottom 200ms ease-in;
|
|
22675
|
+
border-bottom: 3px solid transparent;
|
|
22669
22676
|
}
|
|
22670
|
-
.EntityMetadata .Tabs > *[aria-selected=
|
|
22671
|
-
|
|
22677
|
+
.EntityMetadata .Tabs > *[aria-selected=false],
|
|
22678
|
+
.EntityMetadata .Tabs > *[aria-current=false] {
|
|
22679
|
+
color: #878e95;
|
|
22680
|
+
border-bottom: 3px solid lightgray;
|
|
22681
|
+
}
|
|
22682
|
+
.EntityMetadata .Tabs > *:hover,
|
|
22683
|
+
.EntityMetadata .Tabs > *[aria-selected=true],
|
|
22684
|
+
.EntityMetadata .Tabs > *[aria-current=page] {
|
|
22685
|
+
border-color: #469285;
|
|
22672
22686
|
color: #22252a;
|
|
22673
22687
|
}
|
|
22674
|
-
.EntityMetadata .Tabs >
|
|
22688
|
+
.EntityMetadata .Tabs > *:hover svg,
|
|
22689
|
+
.EntityMetadata .Tabs > *[aria-selected=true] svg,
|
|
22690
|
+
.EntityMetadata .Tabs > *[aria-current=page] svg {
|
|
22675
22691
|
color: #469285;
|
|
22676
22692
|
}
|
|
22677
|
-
.EntityMetadata .Tabs > *[aria-selected=false] {
|
|
22678
|
-
color: #878e95;
|
|
22679
|
-
border-bottom: 3px solid lightgray;
|
|
22680
|
-
}
|
|
22681
22693
|
.EntityMetadata .placeholder {
|
|
22682
22694
|
margin: 30px 0px;
|
|
22683
22695
|
text-align: center;
|
|
@@ -22915,6 +22927,16 @@ table.DownloadListTableV2 td {
|
|
|
22915
22927
|
.FullWidthAlert[role=alert] {
|
|
22916
22928
|
padding: 14px;
|
|
22917
22929
|
z-index: 500;
|
|
22930
|
+
color: #323131;
|
|
22931
|
+
-webkit-border-radius: 0px;
|
|
22932
|
+
-moz-border-radius: 0px;
|
|
22933
|
+
-ms-border-radius: 0px;
|
|
22934
|
+
border-radius: 0px;
|
|
22935
|
+
-o-border-radius: 0px;
|
|
22936
|
+
-khtml-border-radius: 0px;
|
|
22937
|
+
box-shadow: none;
|
|
22938
|
+
margin: 10px 0px;
|
|
22939
|
+
border: none;
|
|
22918
22940
|
}
|
|
22919
22941
|
.FullWidthAlert[role=alert].global {
|
|
22920
22942
|
width: 100%;
|
|
@@ -22923,9 +22945,40 @@ table.DownloadListTableV2 td {
|
|
|
22923
22945
|
left: 0px;
|
|
22924
22946
|
z-index: 2500;
|
|
22925
22947
|
}
|
|
22948
|
+
.FullWidthAlert[role=alert] .alert-link {
|
|
22949
|
+
color: inherit;
|
|
22950
|
+
}
|
|
22951
|
+
.FullWidthAlert[role=alert].alert-info {
|
|
22952
|
+
background: #d9ebf2;
|
|
22953
|
+
border-left: 10px solid #017FA5;
|
|
22954
|
+
}
|
|
22955
|
+
.FullWidthAlert[role=alert].alert-info .iconBackground {
|
|
22956
|
+
color: #017FA5;
|
|
22957
|
+
}
|
|
22958
|
+
.FullWidthAlert[role=alert].alert-danger {
|
|
22959
|
+
background: #f7e0dc;
|
|
22960
|
+
border-left: 10px solid #C13415;
|
|
22961
|
+
}
|
|
22962
|
+
.FullWidthAlert[role=alert].alert-danger .iconBackground {
|
|
22963
|
+
color: #C13415;
|
|
22964
|
+
}
|
|
22965
|
+
.FullWidthAlert[role=alert].alert-warning {
|
|
22966
|
+
background: #f8f1d9;
|
|
22967
|
+
border-left: 10px solid #CC9F00;
|
|
22968
|
+
}
|
|
22969
|
+
.FullWidthAlert[role=alert].alert-warning .iconBackground {
|
|
22970
|
+
color: #CC9F00;
|
|
22971
|
+
}
|
|
22972
|
+
.FullWidthAlert[role=alert].alert-success {
|
|
22973
|
+
background: #e0f1e0;
|
|
22974
|
+
border-left: 10px solid #32A330;
|
|
22975
|
+
}
|
|
22976
|
+
.FullWidthAlert[role=alert].alert-success .iconBackground {
|
|
22977
|
+
color: #32A330;
|
|
22978
|
+
}
|
|
22926
22979
|
.FullWidthAlert[role=alert] .gridContainer {
|
|
22927
22980
|
display: grid;
|
|
22928
|
-
grid-template-columns: 50px auto
|
|
22981
|
+
grid-template-columns: 50px auto 120px 170px;
|
|
22929
22982
|
column-gap: 10px;
|
|
22930
22983
|
align-items: center;
|
|
22931
22984
|
justify-items: start;
|
|
@@ -22951,6 +23004,7 @@ table.DownloadListTableV2 td {
|
|
|
22951
23004
|
grid-row: 1/span 1;
|
|
22952
23005
|
justify-self: end;
|
|
22953
23006
|
padding-bottom: 6px;
|
|
23007
|
+
color: #878e95;
|
|
22954
23008
|
}
|
|
22955
23009
|
@media (min-width: 992px) {
|
|
22956
23010
|
.FullWidthAlert[role=alert] .gridContainer {
|
|
@@ -23345,19 +23399,25 @@ table.DownloadListTableV2 td {
|
|
|
23345
23399
|
text-align: center;
|
|
23346
23400
|
flex-grow: 1;
|
|
23347
23401
|
padding: 5px 0px;
|
|
23348
|
-
transition: border-bottom
|
|
23402
|
+
transition: border-bottom 200ms ease-in;
|
|
23403
|
+
border-bottom: 3px solid transparent;
|
|
23404
|
+
}
|
|
23405
|
+
.UserProfileLinks .Tabs > *[aria-selected=false],
|
|
23406
|
+
.UserProfileLinks .Tabs > *[aria-current=false] {
|
|
23407
|
+
color: #878e95;
|
|
23408
|
+
border-bottom: 3px solid lightgray;
|
|
23349
23409
|
}
|
|
23350
|
-
.UserProfileLinks .Tabs >
|
|
23351
|
-
|
|
23410
|
+
.UserProfileLinks .Tabs > *:hover,
|
|
23411
|
+
.UserProfileLinks .Tabs > *[aria-selected=true],
|
|
23412
|
+
.UserProfileLinks .Tabs > *[aria-current=page] {
|
|
23413
|
+
border-color: #469285;
|
|
23352
23414
|
color: #22252a;
|
|
23353
23415
|
}
|
|
23354
|
-
.UserProfileLinks .Tabs >
|
|
23416
|
+
.UserProfileLinks .Tabs > *:hover svg,
|
|
23417
|
+
.UserProfileLinks .Tabs > *[aria-selected=true] svg,
|
|
23418
|
+
.UserProfileLinks .Tabs > *[aria-current=page] svg {
|
|
23355
23419
|
color: #469285;
|
|
23356
23420
|
}
|
|
23357
|
-
.UserProfileLinks .Tabs > *[aria-selected=false] {
|
|
23358
|
-
color: #878e95;
|
|
23359
|
-
border-bottom: 3px solid lightgray;
|
|
23360
|
-
}
|
|
23361
23421
|
.UserProfileLinks .Tabs .Tab {
|
|
23362
23422
|
padding-left: 10px;
|
|
23363
23423
|
}
|
|
@@ -24236,6 +24296,7 @@ input[type=radio] + span {
|
|
|
24236
24296
|
}
|
|
24237
24297
|
.SubmissionPage .SubmissionSummary {
|
|
24238
24298
|
margin-bottom: 15px;
|
|
24299
|
+
min-width: 320px;
|
|
24239
24300
|
}
|
|
24240
24301
|
.SubmissionPage .SubmissionSummary .SubmissionSummaryGrid {
|
|
24241
24302
|
display: grid;
|
|
@@ -24248,9 +24309,6 @@ input[type=radio] + span {
|
|
|
24248
24309
|
.SubmissionPage .SubmissionSummary .SubmissionSummaryGrid .Value {
|
|
24249
24310
|
grid-column: 2;
|
|
24250
24311
|
}
|
|
24251
|
-
.SubmissionPage .SubmissionSummary .SubmissionSummaryGrid > * {
|
|
24252
|
-
white-space: nowrap;
|
|
24253
|
-
}
|
|
24254
24312
|
.SubmissionPage .SubmissionSummary .SubmissionSummaryGrid .DataAccessor {
|
|
24255
24313
|
margin-top: 5px;
|
|
24256
24314
|
margin-bottom: 3px;
|
|
@@ -24279,6 +24337,71 @@ input[type=radio] + span {
|
|
|
24279
24337
|
box-shadow: none;
|
|
24280
24338
|
border-radius: 2px;
|
|
24281
24339
|
}
|
|
24340
|
+
.ReviewerDashboard .Breadcrumb {
|
|
24341
|
+
display: flex;
|
|
24342
|
+
align-items: center;
|
|
24343
|
+
margin-bottom: 20px;
|
|
24344
|
+
}
|
|
24345
|
+
.ReviewerDashboard .Tabs {
|
|
24346
|
+
display: flex;
|
|
24347
|
+
justify-content: space-between;
|
|
24348
|
+
justify-content: flex-start;
|
|
24349
|
+
box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.05);
|
|
24350
|
+
}
|
|
24351
|
+
.ReviewerDashboard .Tabs > * {
|
|
24352
|
+
cursor: pointer;
|
|
24353
|
+
text-align: center;
|
|
24354
|
+
flex-grow: 1;
|
|
24355
|
+
padding: 5px 0px;
|
|
24356
|
+
transition: border-bottom 200ms ease-in;
|
|
24357
|
+
border-bottom: 3px solid transparent;
|
|
24358
|
+
}
|
|
24359
|
+
.ReviewerDashboard .Tabs > *[aria-selected=false],
|
|
24360
|
+
.ReviewerDashboard .Tabs > *[aria-current=false] {
|
|
24361
|
+
color: #878e95;
|
|
24362
|
+
border-bottom: 3px solid lightgray;
|
|
24363
|
+
}
|
|
24364
|
+
.ReviewerDashboard .Tabs > *:hover,
|
|
24365
|
+
.ReviewerDashboard .Tabs > *[aria-selected=true],
|
|
24366
|
+
.ReviewerDashboard .Tabs > *[aria-current=page] {
|
|
24367
|
+
border-color: #469285;
|
|
24368
|
+
color: #22252a;
|
|
24369
|
+
}
|
|
24370
|
+
.ReviewerDashboard .Tabs > *:hover svg,
|
|
24371
|
+
.ReviewerDashboard .Tabs > *[aria-selected=true] svg,
|
|
24372
|
+
.ReviewerDashboard .Tabs > *[aria-current=page] svg {
|
|
24373
|
+
color: #469285;
|
|
24374
|
+
}
|
|
24375
|
+
.ReviewerDashboard .Tabs .Tab {
|
|
24376
|
+
color: unset;
|
|
24377
|
+
text-decoration: unset;
|
|
24378
|
+
font-weight: unset;
|
|
24379
|
+
text-decoration: unset;
|
|
24380
|
+
letter-spacing: unset;
|
|
24381
|
+
flex-grow: 0;
|
|
24382
|
+
height: 45px;
|
|
24383
|
+
padding-left: 30px;
|
|
24384
|
+
padding-right: 30px;
|
|
24385
|
+
display: flex;
|
|
24386
|
+
align-items: center;
|
|
24387
|
+
}
|
|
24388
|
+
.ReviewerDashboard .Tabs .Tab:hover {
|
|
24389
|
+
text-decoration: unset;
|
|
24390
|
+
margin-bottom: unset;
|
|
24391
|
+
}
|
|
24392
|
+
.ReviewerDashboard .Tabs .Tab.disabled {
|
|
24393
|
+
color: #aeb5bc;
|
|
24394
|
+
}
|
|
24395
|
+
.ReviewerDashboard .Tabs .Tab.disabled:hover {
|
|
24396
|
+
text-decoration: underline;
|
|
24397
|
+
text-underline-offset: 4px;
|
|
24398
|
+
text-decoration-thickness: 1px;
|
|
24399
|
+
text-decoration-color: #d6d6d6;
|
|
24400
|
+
cursor: default;
|
|
24401
|
+
}
|
|
24402
|
+
.ReviewerDashboard .TabContentContainer {
|
|
24403
|
+
margin: 20px 30px;
|
|
24404
|
+
}
|
|
24282
24405
|
.AccessApprovalsTable,
|
|
24283
24406
|
.AccessSubmissionTable,
|
|
24284
24407
|
.AccessRequirementsTable {
|
|
@@ -24314,8 +24437,11 @@ input[type=radio] + span {
|
|
|
24314
24437
|
font-style: italic;
|
|
24315
24438
|
color: #878e95 !important;
|
|
24316
24439
|
}
|
|
24440
|
+
.AccessApprovalsTable .InlineLabel,
|
|
24317
24441
|
.AccessApprovalsTable .expired,
|
|
24442
|
+
.AccessSubmissionTable .InlineLabel,
|
|
24318
24443
|
.AccessSubmissionTable .expired,
|
|
24444
|
+
.AccessRequirementsTable .InlineLabel,
|
|
24319
24445
|
.AccessRequirementsTable .expired {
|
|
24320
24446
|
color: #878e95;
|
|
24321
24447
|
}
|
|
@@ -24325,6 +24451,26 @@ input[type=radio] + span {
|
|
|
24325
24451
|
color: #878e95;
|
|
24326
24452
|
font-style: italic;
|
|
24327
24453
|
}
|
|
24454
|
+
.AccessRequirementDashboard .InputPanel {
|
|
24455
|
+
display: grid;
|
|
24456
|
+
grid-template-columns: auto 265px auto;
|
|
24457
|
+
gap: 25px;
|
|
24458
|
+
}
|
|
24459
|
+
.AccessRequirementDashboard .InputPanel input {
|
|
24460
|
+
margin-bottom: 0;
|
|
24461
|
+
}
|
|
24462
|
+
.AccessRequirementDashboard .InputPanel .ProjectIdInputGroup {
|
|
24463
|
+
display: flex;
|
|
24464
|
+
gap: 5px;
|
|
24465
|
+
}
|
|
24466
|
+
.AccessRequirementDashboard .InputPanel .styled-svg-wrapper {
|
|
24467
|
+
position: absolute;
|
|
24468
|
+
right: 5px;
|
|
24469
|
+
z-index: 5;
|
|
24470
|
+
height: 100%;
|
|
24471
|
+
display: flex;
|
|
24472
|
+
align-items: center;
|
|
24473
|
+
}
|
|
24328
24474
|
|
|
24329
24475
|
/* sass-plugin-0:/home/runner/work/Synapse-React-Client/Synapse-React-Client/src/lib/style/components/_spinner.scss */
|
|
24330
24476
|
@keyframes spinner {
|