synapse-react-client 3.0.0 → 3.0.3
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/EntityLink.js +2 -2
- package/dist/containers/EntityLink.js.map +1 -1
- package/dist/containers/HasAccess.js +3 -2
- package/dist/containers/HasAccess.js.map +1 -1
- package/dist/containers/MarkdownPopover.js +1 -1
- package/dist/containers/MarkdownPopover.js.map +1 -1
- package/dist/containers/MissingQueryResultsWarning.d.ts +12 -0
- package/dist/containers/MissingQueryResultsWarning.js +64 -0
- package/dist/containers/MissingQueryResultsWarning.js.map +1 -0
- package/dist/containers/QueryCount.js +16 -44
- package/dist/containers/QueryCount.js.map +1 -1
- package/dist/containers/QueryWrapper.d.ts +3 -3
- package/dist/containers/QueryWrapper.js +4 -22
- package/dist/containers/QueryWrapper.js.map +1 -1
- package/dist/containers/download_list/DownloadConfirmation.d.ts +5 -0
- package/dist/containers/download_list/DownloadConfirmation.js +18 -16
- package/dist/containers/download_list/DownloadConfirmation.js.map +1 -1
- package/dist/containers/query_wrapper_plot_nav/QueryWrapperPlotNav.js +1 -1
- package/dist/containers/query_wrapper_plot_nav/QueryWrapperPlotNav.js.map +1 -1
- package/dist/containers/table/TopLevelControls.js +8 -5
- package/dist/containers/table/TopLevelControls.js.map +1 -1
- package/dist/containers/table/table-top/ProgrammaticTableDownload.js +15 -8
- package/dist/containers/table/table-top/ProgrammaticTableDownload.js.map +1 -1
- package/dist/style/base/_icons.scss +4 -0
- package/dist/style/components/_dataset-editor.scss +6 -0
- package/dist/style/components/_markdown.scss +1 -1
- package/dist/style/components/entity_finder/_details-view.scss +6 -6
- package/dist/style/components/entity_finder/_entity-finder.scss +3 -7
- package/dist/style/components/entity_finder/_tree-node-browse.scss +1 -3
- package/dist/style/components/entity_finder/_tree-node-select.scss +0 -4
- package/dist/style/components/query_filter/_enum-facet-filter.scss +4 -1
- package/dist/style/main.css +887 -19
- package/dist/template_style/_form.scss +150 -105
- package/dist/umd/synapse-react-client.development.css +805 -19
- package/dist/umd/synapse-react-client.development.css.map +2 -2
- package/dist/umd/synapse-react-client.development.js +2086 -2039
- 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 +77 -77
- package/dist/utils/APIConstants.d.ts +3 -0
- package/dist/utils/APIConstants.js +11 -1
- package/dist/utils/APIConstants.js.map +1 -1
- package/dist/utils/SynapseClient.js +9 -6
- package/dist/utils/SynapseClient.js.map +1 -1
- package/dist/utils/functions/sqlFunctions.d.ts +4 -0
- package/dist/utils/functions/sqlFunctions.js +13 -1
- package/dist/utils/functions/sqlFunctions.js.map +1 -1
- package/dist/utils/synapseTypes/DownloadListV2/DownloadListQueryResponse.d.ts +5 -0
- package/dist/utils/synapseTypes/DownloadListV2/DownloadListQueryResponse.js +3 -0
- package/dist/utils/synapseTypes/DownloadListV2/DownloadListQueryResponse.js.map +1 -0
- package/dist/utils/synapseTypes/Entity/Entity.js.map +1 -1
- package/package.json +5 -3
package/dist/style/main.css
CHANGED
|
@@ -16100,6 +16100,10 @@ svg.HelpButton {
|
|
|
16100
16100
|
font-size: 0.8em;
|
|
16101
16101
|
}
|
|
16102
16102
|
|
|
16103
|
+
.SRC-color-warning {
|
|
16104
|
+
color: #cc9f00;
|
|
16105
|
+
}
|
|
16106
|
+
|
|
16103
16107
|
.modal-dialog-scrollable {
|
|
16104
16108
|
height: 100%;
|
|
16105
16109
|
}
|
|
@@ -17360,7 +17364,7 @@ img.iconImg.SRC-datasetIcon {
|
|
|
17360
17364
|
word-wrap: break-word;
|
|
17361
17365
|
overflow-x: auto;
|
|
17362
17366
|
overflow-y: hidden;
|
|
17363
|
-
line-height: 1.
|
|
17367
|
+
line-height: 1.5em;
|
|
17364
17368
|
color: #515359;
|
|
17365
17369
|
font-weight: normal;
|
|
17366
17370
|
}
|
|
@@ -18471,6 +18475,172 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
18471
18475
|
border-radius: 2px;
|
|
18472
18476
|
}
|
|
18473
18477
|
|
|
18478
|
+
/**
|
|
18479
|
+
* Defines our custom checkboxes and radio buttons
|
|
18480
|
+
* These handle both the Checkbox and RadioGroup components, as well as checkboxes and radio buttons rendered by other libraries (such as react-jsonschema-form)
|
|
18481
|
+
* So if you modify this file, please check all cases!
|
|
18482
|
+
*
|
|
18483
|
+
* The styles work by hijacking an adjacent <span> or <label> and appending two pseudo-elements.
|
|
18484
|
+
* The :before pseudo-element creates the "empty" checkbox/radio, and, when checked, the :after pseudo-element creates the "check" or circle
|
|
18485
|
+
*/
|
|
18486
|
+
.checkbox,
|
|
18487
|
+
.radio {
|
|
18488
|
+
padding-left: 0px;
|
|
18489
|
+
min-width: 27px;
|
|
18490
|
+
margin-top: 0px;
|
|
18491
|
+
margin-bottom: 0px;
|
|
18492
|
+
}
|
|
18493
|
+
|
|
18494
|
+
.checkbox label,
|
|
18495
|
+
.radio label {
|
|
18496
|
+
padding-left: 0px;
|
|
18497
|
+
}
|
|
18498
|
+
|
|
18499
|
+
.rjsf .checkbox,
|
|
18500
|
+
.rjsf .radio {
|
|
18501
|
+
margin-bottom: 10px;
|
|
18502
|
+
}
|
|
18503
|
+
|
|
18504
|
+
input[type=checkbox],
|
|
18505
|
+
input[type=radio] {
|
|
18506
|
+
position: absolute !important;
|
|
18507
|
+
height: 1px;
|
|
18508
|
+
width: 1px;
|
|
18509
|
+
overflow: hidden;
|
|
18510
|
+
clip: rect(1px, 1px, 1px, 1px);
|
|
18511
|
+
margin-left: unset;
|
|
18512
|
+
}
|
|
18513
|
+
|
|
18514
|
+
input[type=checkbox] + label,
|
|
18515
|
+
input[type=checkbox] + span,
|
|
18516
|
+
input[type=radio] + label,
|
|
18517
|
+
input[type=radio] + span {
|
|
18518
|
+
position: relative;
|
|
18519
|
+
padding-left: 22px;
|
|
18520
|
+
margin-top: 5px;
|
|
18521
|
+
margin-bottom: 5px;
|
|
18522
|
+
}
|
|
18523
|
+
|
|
18524
|
+
input[type=checkbox] + label::before,
|
|
18525
|
+
input[type=checkbox] + span::before,
|
|
18526
|
+
input[type=radio] + label::before,
|
|
18527
|
+
input[type=radio] + span::before {
|
|
18528
|
+
position: absolute;
|
|
18529
|
+
content: "";
|
|
18530
|
+
vertical-align: middle;
|
|
18531
|
+
width: 16px;
|
|
18532
|
+
height: 16px;
|
|
18533
|
+
border: 1px solid #aeb5bc;
|
|
18534
|
+
background: white;
|
|
18535
|
+
}
|
|
18536
|
+
|
|
18537
|
+
.indeterminate-checkbox input[type=checkbox] + label::before,
|
|
18538
|
+
input[type=checkbox]:checked + label::before,
|
|
18539
|
+
input[type=checkbox]:checked + span::before {
|
|
18540
|
+
border: none;
|
|
18541
|
+
background: #469285;
|
|
18542
|
+
}
|
|
18543
|
+
|
|
18544
|
+
input[type=checkbox] + label::before,
|
|
18545
|
+
input[type=checkbox] + span::before {
|
|
18546
|
+
top: 0px;
|
|
18547
|
+
left: 0px;
|
|
18548
|
+
}
|
|
18549
|
+
|
|
18550
|
+
input[type=radio] + label::before,
|
|
18551
|
+
input[type=radio] + span::before {
|
|
18552
|
+
border-radius: 50%;
|
|
18553
|
+
top: 1px;
|
|
18554
|
+
left: 4px;
|
|
18555
|
+
}
|
|
18556
|
+
|
|
18557
|
+
input[type=checkbox]:focus + label::before,
|
|
18558
|
+
input[type=checkbox]:focus + span::before,
|
|
18559
|
+
input[type=radio]:focus:checked + label::before,
|
|
18560
|
+
input[type=radio]:focus:checked + span::before,
|
|
18561
|
+
input[type=checkbox]:hover:checked:not(:disabled) + label::before,
|
|
18562
|
+
input[type=checkbox]:hover:checked:not(:disabled) + span::before,
|
|
18563
|
+
input[type=radio]:hover:checked:not(:disabled) + label::before,
|
|
18564
|
+
input[type=radio]:hover:checked:not(:disabled) + span::before {
|
|
18565
|
+
box-shadow: 0px 0px 2px 2px #eaeded;
|
|
18566
|
+
}
|
|
18567
|
+
|
|
18568
|
+
input[type=checkbox]:hover:not(:checked):not(:disabled) + label::before,
|
|
18569
|
+
input[type=checkbox]:hover:not(:checked):not(:disabled) + span::before,
|
|
18570
|
+
input[type=radio]:hover:not(:checked):not(:disabled) + label::before,
|
|
18571
|
+
input[type=radio]:hover:not(:checked):not(:disabled) + span::before {
|
|
18572
|
+
box-shadow: 0px 0px 2px 2px #dfe2e6;
|
|
18573
|
+
}
|
|
18574
|
+
|
|
18575
|
+
input[type=checkbox]:disabled:checked + label::before,
|
|
18576
|
+
input[type=checkbox]:disabled:checked + span::before {
|
|
18577
|
+
background: #ddd;
|
|
18578
|
+
}
|
|
18579
|
+
|
|
18580
|
+
input[type=radio]:disabled:checked + label::after,
|
|
18581
|
+
input[type=radio]:disabled:checked + span::after {
|
|
18582
|
+
background: #dfe2e6;
|
|
18583
|
+
}
|
|
18584
|
+
|
|
18585
|
+
input[type=checkbox]:disabled:not(:checked) + label::before,
|
|
18586
|
+
input[type=checkbox]:disabled:not(:checked) + span::before,
|
|
18587
|
+
input[type=radio]:disabled + label::before,
|
|
18588
|
+
input[type=radio]:disabled + span::before {
|
|
18589
|
+
background: white;
|
|
18590
|
+
}
|
|
18591
|
+
|
|
18592
|
+
input[type=checkbox]:disabled + label,
|
|
18593
|
+
input[type=checkbox]:disabled + span,
|
|
18594
|
+
input[type=radio]:disabled + label,
|
|
18595
|
+
input[type=radio]:disabled + span {
|
|
18596
|
+
color: #777;
|
|
18597
|
+
}
|
|
18598
|
+
|
|
18599
|
+
.indeterminate-checkbox input[type=checkbox] + label::after,
|
|
18600
|
+
.indeterminate-checkbox input[type=checkbox] + span::after {
|
|
18601
|
+
content: "—";
|
|
18602
|
+
color: white;
|
|
18603
|
+
font-size: 12px;
|
|
18604
|
+
position: absolute;
|
|
18605
|
+
top: -1px;
|
|
18606
|
+
left: 3px;
|
|
18607
|
+
font-weight: bolder;
|
|
18608
|
+
}
|
|
18609
|
+
|
|
18610
|
+
input[type=checkbox]:checked + label::after,
|
|
18611
|
+
input[type=checkbox]:checked + span::after {
|
|
18612
|
+
content: "";
|
|
18613
|
+
transform: rotate(45deg);
|
|
18614
|
+
height: 9px;
|
|
18615
|
+
width: 4px;
|
|
18616
|
+
border-bottom: 2px solid white;
|
|
18617
|
+
border-right: 2px solid white;
|
|
18618
|
+
position: absolute;
|
|
18619
|
+
top: 2px;
|
|
18620
|
+
left: 6px;
|
|
18621
|
+
}
|
|
18622
|
+
|
|
18623
|
+
input[type=radio]:checked + label::after,
|
|
18624
|
+
input[type=radio]:checked + span::after {
|
|
18625
|
+
content: "";
|
|
18626
|
+
vertical-align: middle;
|
|
18627
|
+
width: 10px;
|
|
18628
|
+
height: 10px;
|
|
18629
|
+
border-radius: 50%;
|
|
18630
|
+
background: #469285;
|
|
18631
|
+
position: absolute;
|
|
18632
|
+
top: 4px;
|
|
18633
|
+
left: 7px;
|
|
18634
|
+
}
|
|
18635
|
+
|
|
18636
|
+
input[type=radio] + label,
|
|
18637
|
+
input[type=radio] + span,
|
|
18638
|
+
input[type=radio] + label,
|
|
18639
|
+
input[type=radio] + span {
|
|
18640
|
+
padding-left: 23px;
|
|
18641
|
+
color: #515359;
|
|
18642
|
+
}
|
|
18643
|
+
|
|
18474
18644
|
.EnumFacetFilter__dropdown_menu {
|
|
18475
18645
|
overflow-y: auto;
|
|
18476
18646
|
max-height: 300px;
|
|
@@ -18554,13 +18724,137 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
18554
18724
|
.EnumFacetFilter__resetSearch {
|
|
18555
18725
|
right: 5px;
|
|
18556
18726
|
}
|
|
18727
|
+
.EnumFacetFilter input[type=checkbox],
|
|
18728
|
+
.EnumFacetFilter input[type=radio] {
|
|
18729
|
+
position: absolute !important;
|
|
18730
|
+
height: 1px;
|
|
18731
|
+
width: 1px;
|
|
18732
|
+
overflow: hidden;
|
|
18733
|
+
clip: rect(1px, 1px, 1px, 1px);
|
|
18734
|
+
margin-left: unset;
|
|
18735
|
+
}
|
|
18736
|
+
.EnumFacetFilter input[type=checkbox] + label,
|
|
18737
|
+
.EnumFacetFilter input[type=checkbox] + span,
|
|
18738
|
+
.EnumFacetFilter input[type=radio] + label,
|
|
18739
|
+
.EnumFacetFilter input[type=radio] + span {
|
|
18740
|
+
position: relative;
|
|
18741
|
+
padding-left: 22px;
|
|
18742
|
+
margin-top: 5px;
|
|
18743
|
+
margin-bottom: 5px;
|
|
18744
|
+
}
|
|
18745
|
+
.EnumFacetFilter input[type=checkbox] + label::before,
|
|
18746
|
+
.EnumFacetFilter input[type=checkbox] + span::before,
|
|
18747
|
+
.EnumFacetFilter input[type=radio] + label::before,
|
|
18748
|
+
.EnumFacetFilter input[type=radio] + span::before {
|
|
18749
|
+
position: absolute;
|
|
18750
|
+
content: "";
|
|
18751
|
+
vertical-align: middle;
|
|
18752
|
+
width: 16px;
|
|
18753
|
+
height: 16px;
|
|
18754
|
+
border: 1px solid #aeb5bc;
|
|
18755
|
+
background: white;
|
|
18756
|
+
}
|
|
18757
|
+
.EnumFacetFilter .indeterminate-checkbox input[type=checkbox] + label::before,
|
|
18758
|
+
.EnumFacetFilter input[type=checkbox]:checked + label::before,
|
|
18759
|
+
.EnumFacetFilter input[type=checkbox]:checked + span::before {
|
|
18760
|
+
border: none;
|
|
18761
|
+
background: #469285;
|
|
18762
|
+
}
|
|
18763
|
+
.EnumFacetFilter input[type=checkbox] + label::before,
|
|
18764
|
+
.EnumFacetFilter input[type=checkbox] + span::before {
|
|
18765
|
+
top: 3px;
|
|
18766
|
+
left: 0px;
|
|
18767
|
+
}
|
|
18768
|
+
.EnumFacetFilter input[type=radio] + label::before,
|
|
18769
|
+
.EnumFacetFilter input[type=radio] + span::before {
|
|
18770
|
+
border-radius: 50%;
|
|
18771
|
+
top: 1px;
|
|
18772
|
+
left: 4px;
|
|
18773
|
+
}
|
|
18774
|
+
.EnumFacetFilter input[type=checkbox]:focus + label::before,
|
|
18775
|
+
.EnumFacetFilter input[type=checkbox]:focus + span::before,
|
|
18776
|
+
.EnumFacetFilter input[type=radio]:focus:checked + label::before,
|
|
18777
|
+
.EnumFacetFilter input[type=radio]:focus:checked + span::before,
|
|
18778
|
+
.EnumFacetFilter input[type=checkbox]:hover:checked:not(:disabled) + label::before,
|
|
18779
|
+
.EnumFacetFilter input[type=checkbox]:hover:checked:not(:disabled) + span::before,
|
|
18780
|
+
.EnumFacetFilter input[type=radio]:hover:checked:not(:disabled) + label::before,
|
|
18781
|
+
.EnumFacetFilter input[type=radio]:hover:checked:not(:disabled) + span::before {
|
|
18782
|
+
box-shadow: 0px 0px 2px 2px #eaeded;
|
|
18783
|
+
}
|
|
18784
|
+
.EnumFacetFilter input[type=checkbox]:hover:not(:checked):not(:disabled) + label::before,
|
|
18785
|
+
.EnumFacetFilter input[type=checkbox]:hover:not(:checked):not(:disabled) + span::before,
|
|
18786
|
+
.EnumFacetFilter input[type=radio]:hover:not(:checked):not(:disabled) + label::before,
|
|
18787
|
+
.EnumFacetFilter input[type=radio]:hover:not(:checked):not(:disabled) + span::before {
|
|
18788
|
+
box-shadow: 0px 0px 2px 2px #dfe2e6;
|
|
18789
|
+
}
|
|
18790
|
+
.EnumFacetFilter input[type=checkbox]:disabled:checked + label::before,
|
|
18791
|
+
.EnumFacetFilter input[type=checkbox]:disabled:checked + span::before {
|
|
18792
|
+
background: #ddd;
|
|
18793
|
+
}
|
|
18794
|
+
.EnumFacetFilter input[type=radio]:disabled:checked + label::after,
|
|
18795
|
+
.EnumFacetFilter input[type=radio]:disabled:checked + span::after {
|
|
18796
|
+
background: #dfe2e6;
|
|
18797
|
+
}
|
|
18798
|
+
.EnumFacetFilter input[type=checkbox]:disabled:not(:checked) + label::before,
|
|
18799
|
+
.EnumFacetFilter input[type=checkbox]:disabled:not(:checked) + span::before,
|
|
18800
|
+
.EnumFacetFilter input[type=radio]:disabled + label::before,
|
|
18801
|
+
.EnumFacetFilter input[type=radio]:disabled + span::before {
|
|
18802
|
+
background: white;
|
|
18803
|
+
}
|
|
18804
|
+
.EnumFacetFilter input[type=checkbox]:disabled + label,
|
|
18805
|
+
.EnumFacetFilter input[type=checkbox]:disabled + span,
|
|
18806
|
+
.EnumFacetFilter input[type=radio]:disabled + label,
|
|
18807
|
+
.EnumFacetFilter input[type=radio]:disabled + span {
|
|
18808
|
+
color: #777;
|
|
18809
|
+
}
|
|
18810
|
+
.EnumFacetFilter .indeterminate-checkbox input[type=checkbox] + label::after,
|
|
18811
|
+
.EnumFacetFilter .indeterminate-checkbox input[type=checkbox] + span::after {
|
|
18812
|
+
content: "—";
|
|
18813
|
+
color: white;
|
|
18814
|
+
font-size: 12px;
|
|
18815
|
+
position: absolute;
|
|
18816
|
+
top: 2px;
|
|
18817
|
+
left: 3px;
|
|
18818
|
+
font-weight: bolder;
|
|
18819
|
+
}
|
|
18820
|
+
.EnumFacetFilter input[type=checkbox]:checked + label::after,
|
|
18821
|
+
.EnumFacetFilter input[type=checkbox]:checked + span::after {
|
|
18822
|
+
content: "";
|
|
18823
|
+
transform: rotate(45deg);
|
|
18824
|
+
height: 9px;
|
|
18825
|
+
width: 4px;
|
|
18826
|
+
border-bottom: 2px solid white;
|
|
18827
|
+
border-right: 2px solid white;
|
|
18828
|
+
position: absolute;
|
|
18829
|
+
top: 5px;
|
|
18830
|
+
left: 6px;
|
|
18831
|
+
}
|
|
18832
|
+
.EnumFacetFilter input[type=radio]:checked + label::after,
|
|
18833
|
+
.EnumFacetFilter input[type=radio]:checked + span::after {
|
|
18834
|
+
content: "";
|
|
18835
|
+
vertical-align: middle;
|
|
18836
|
+
width: 10px;
|
|
18837
|
+
height: 10px;
|
|
18838
|
+
border-radius: 50%;
|
|
18839
|
+
background: #469285;
|
|
18840
|
+
position: absolute;
|
|
18841
|
+
top: 4px;
|
|
18842
|
+
left: 7px;
|
|
18843
|
+
}
|
|
18844
|
+
.EnumFacetFilter input[type=radio] + label,
|
|
18845
|
+
.EnumFacetFilter input[type=radio] + span,
|
|
18846
|
+
.EnumFacetFilter input[type=radio] + label,
|
|
18847
|
+
.EnumFacetFilter input[type=radio] + span {
|
|
18848
|
+
padding-left: 23px;
|
|
18849
|
+
color: #515359;
|
|
18850
|
+
}
|
|
18557
18851
|
.EnumFacetFilter__checkbox > label {
|
|
18558
18852
|
display: flex;
|
|
18559
18853
|
flex-wrap: nowrap;
|
|
18560
18854
|
}
|
|
18561
18855
|
.EnumFacetFilter__checkbox > label::before {
|
|
18562
18856
|
flex: none;
|
|
18563
|
-
align-self:
|
|
18857
|
+
align-self: start;
|
|
18564
18858
|
}
|
|
18565
18859
|
.EnumFacetFilter__checkbox > label > span {
|
|
18566
18860
|
margin-left: 2px;
|
|
@@ -20615,6 +20909,172 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
20615
20909
|
@param $color string e.g. #eee or red
|
|
20616
20910
|
@param $width unit e.g. 15%
|
|
20617
20911
|
*/
|
|
20912
|
+
/**
|
|
20913
|
+
* Defines our custom checkboxes and radio buttons
|
|
20914
|
+
* These handle both the Checkbox and RadioGroup components, as well as checkboxes and radio buttons rendered by other libraries (such as react-jsonschema-form)
|
|
20915
|
+
* So if you modify this file, please check all cases!
|
|
20916
|
+
*
|
|
20917
|
+
* The styles work by hijacking an adjacent <span> or <label> and appending two pseudo-elements.
|
|
20918
|
+
* The :before pseudo-element creates the "empty" checkbox/radio, and, when checked, the :after pseudo-element creates the "check" or circle
|
|
20919
|
+
*/
|
|
20920
|
+
.checkbox,
|
|
20921
|
+
.radio {
|
|
20922
|
+
padding-left: 0px;
|
|
20923
|
+
min-width: 27px;
|
|
20924
|
+
margin-top: 0px;
|
|
20925
|
+
margin-bottom: 0px;
|
|
20926
|
+
}
|
|
20927
|
+
|
|
20928
|
+
.checkbox label,
|
|
20929
|
+
.radio label {
|
|
20930
|
+
padding-left: 0px;
|
|
20931
|
+
}
|
|
20932
|
+
|
|
20933
|
+
.rjsf .checkbox,
|
|
20934
|
+
.rjsf .radio {
|
|
20935
|
+
margin-bottom: 10px;
|
|
20936
|
+
}
|
|
20937
|
+
|
|
20938
|
+
input[type=checkbox],
|
|
20939
|
+
input[type=radio] {
|
|
20940
|
+
position: absolute !important;
|
|
20941
|
+
height: 1px;
|
|
20942
|
+
width: 1px;
|
|
20943
|
+
overflow: hidden;
|
|
20944
|
+
clip: rect(1px, 1px, 1px, 1px);
|
|
20945
|
+
margin-left: unset;
|
|
20946
|
+
}
|
|
20947
|
+
|
|
20948
|
+
input[type=checkbox] + label,
|
|
20949
|
+
input[type=checkbox] + span,
|
|
20950
|
+
input[type=radio] + label,
|
|
20951
|
+
input[type=radio] + span {
|
|
20952
|
+
position: relative;
|
|
20953
|
+
padding-left: 22px;
|
|
20954
|
+
margin-top: 5px;
|
|
20955
|
+
margin-bottom: 5px;
|
|
20956
|
+
}
|
|
20957
|
+
|
|
20958
|
+
input[type=checkbox] + label::before,
|
|
20959
|
+
input[type=checkbox] + span::before,
|
|
20960
|
+
input[type=radio] + label::before,
|
|
20961
|
+
input[type=radio] + span::before {
|
|
20962
|
+
position: absolute;
|
|
20963
|
+
content: "";
|
|
20964
|
+
vertical-align: middle;
|
|
20965
|
+
width: 16px;
|
|
20966
|
+
height: 16px;
|
|
20967
|
+
border: 1px solid #aeb5bc;
|
|
20968
|
+
background: white;
|
|
20969
|
+
}
|
|
20970
|
+
|
|
20971
|
+
.indeterminate-checkbox input[type=checkbox] + label::before,
|
|
20972
|
+
input[type=checkbox]:checked + label::before,
|
|
20973
|
+
input[type=checkbox]:checked + span::before {
|
|
20974
|
+
border: none;
|
|
20975
|
+
background: #469285;
|
|
20976
|
+
}
|
|
20977
|
+
|
|
20978
|
+
input[type=checkbox] + label::before,
|
|
20979
|
+
input[type=checkbox] + span::before {
|
|
20980
|
+
top: 0px;
|
|
20981
|
+
left: 0px;
|
|
20982
|
+
}
|
|
20983
|
+
|
|
20984
|
+
input[type=radio] + label::before,
|
|
20985
|
+
input[type=radio] + span::before {
|
|
20986
|
+
border-radius: 50%;
|
|
20987
|
+
top: 1px;
|
|
20988
|
+
left: 4px;
|
|
20989
|
+
}
|
|
20990
|
+
|
|
20991
|
+
input[type=checkbox]:focus + label::before,
|
|
20992
|
+
input[type=checkbox]:focus + span::before,
|
|
20993
|
+
input[type=radio]:focus:checked + label::before,
|
|
20994
|
+
input[type=radio]:focus:checked + span::before,
|
|
20995
|
+
input[type=checkbox]:hover:checked:not(:disabled) + label::before,
|
|
20996
|
+
input[type=checkbox]:hover:checked:not(:disabled) + span::before,
|
|
20997
|
+
input[type=radio]:hover:checked:not(:disabled) + label::before,
|
|
20998
|
+
input[type=radio]:hover:checked:not(:disabled) + span::before {
|
|
20999
|
+
box-shadow: 0px 0px 2px 2px #eaeded;
|
|
21000
|
+
}
|
|
21001
|
+
|
|
21002
|
+
input[type=checkbox]:hover:not(:checked):not(:disabled) + label::before,
|
|
21003
|
+
input[type=checkbox]:hover:not(:checked):not(:disabled) + span::before,
|
|
21004
|
+
input[type=radio]:hover:not(:checked):not(:disabled) + label::before,
|
|
21005
|
+
input[type=radio]:hover:not(:checked):not(:disabled) + span::before {
|
|
21006
|
+
box-shadow: 0px 0px 2px 2px #dfe2e6;
|
|
21007
|
+
}
|
|
21008
|
+
|
|
21009
|
+
input[type=checkbox]:disabled:checked + label::before,
|
|
21010
|
+
input[type=checkbox]:disabled:checked + span::before {
|
|
21011
|
+
background: #ddd;
|
|
21012
|
+
}
|
|
21013
|
+
|
|
21014
|
+
input[type=radio]:disabled:checked + label::after,
|
|
21015
|
+
input[type=radio]:disabled:checked + span::after {
|
|
21016
|
+
background: #dfe2e6;
|
|
21017
|
+
}
|
|
21018
|
+
|
|
21019
|
+
input[type=checkbox]:disabled:not(:checked) + label::before,
|
|
21020
|
+
input[type=checkbox]:disabled:not(:checked) + span::before,
|
|
21021
|
+
input[type=radio]:disabled + label::before,
|
|
21022
|
+
input[type=radio]:disabled + span::before {
|
|
21023
|
+
background: white;
|
|
21024
|
+
}
|
|
21025
|
+
|
|
21026
|
+
input[type=checkbox]:disabled + label,
|
|
21027
|
+
input[type=checkbox]:disabled + span,
|
|
21028
|
+
input[type=radio]:disabled + label,
|
|
21029
|
+
input[type=radio]:disabled + span {
|
|
21030
|
+
color: #777;
|
|
21031
|
+
}
|
|
21032
|
+
|
|
21033
|
+
.indeterminate-checkbox input[type=checkbox] + label::after,
|
|
21034
|
+
.indeterminate-checkbox input[type=checkbox] + span::after {
|
|
21035
|
+
content: "—";
|
|
21036
|
+
color: white;
|
|
21037
|
+
font-size: 12px;
|
|
21038
|
+
position: absolute;
|
|
21039
|
+
top: -1px;
|
|
21040
|
+
left: 3px;
|
|
21041
|
+
font-weight: bolder;
|
|
21042
|
+
}
|
|
21043
|
+
|
|
21044
|
+
input[type=checkbox]:checked + label::after,
|
|
21045
|
+
input[type=checkbox]:checked + span::after {
|
|
21046
|
+
content: "";
|
|
21047
|
+
transform: rotate(45deg);
|
|
21048
|
+
height: 9px;
|
|
21049
|
+
width: 4px;
|
|
21050
|
+
border-bottom: 2px solid white;
|
|
21051
|
+
border-right: 2px solid white;
|
|
21052
|
+
position: absolute;
|
|
21053
|
+
top: 2px;
|
|
21054
|
+
left: 6px;
|
|
21055
|
+
}
|
|
21056
|
+
|
|
21057
|
+
input[type=radio]:checked + label::after,
|
|
21058
|
+
input[type=radio]:checked + span::after {
|
|
21059
|
+
content: "";
|
|
21060
|
+
vertical-align: middle;
|
|
21061
|
+
width: 10px;
|
|
21062
|
+
height: 10px;
|
|
21063
|
+
border-radius: 50%;
|
|
21064
|
+
background: #469285;
|
|
21065
|
+
position: absolute;
|
|
21066
|
+
top: 4px;
|
|
21067
|
+
left: 7px;
|
|
21068
|
+
}
|
|
21069
|
+
|
|
21070
|
+
input[type=radio] + label,
|
|
21071
|
+
input[type=radio] + span,
|
|
21072
|
+
input[type=radio] + label,
|
|
21073
|
+
input[type=radio] + span {
|
|
21074
|
+
padding-left: 23px;
|
|
21075
|
+
color: #515359;
|
|
21076
|
+
}
|
|
21077
|
+
|
|
20618
21078
|
.DetailsViewTable {
|
|
20619
21079
|
box-shadow: 0 2px 4px 0 #eeeeee;
|
|
20620
21080
|
background-color: #ffffff;
|
|
@@ -20840,9 +21300,133 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
20840
21300
|
overflow-y: hidden;
|
|
20841
21301
|
}
|
|
20842
21302
|
|
|
20843
|
-
.DetailsViewTable__header {
|
|
21303
|
+
.DetailsViewTable .DetailsViewTable__header {
|
|
20844
21304
|
box-shadow: 3px 3px 7px -1px rgba(0, 0, 30, 0.2);
|
|
20845
21305
|
}
|
|
21306
|
+
.DetailsViewTable input[type=checkbox],
|
|
21307
|
+
.DetailsViewTable input[type=radio] {
|
|
21308
|
+
position: absolute !important;
|
|
21309
|
+
height: 1px;
|
|
21310
|
+
width: 1px;
|
|
21311
|
+
overflow: hidden;
|
|
21312
|
+
clip: rect(1px, 1px, 1px, 1px);
|
|
21313
|
+
margin-left: unset;
|
|
21314
|
+
}
|
|
21315
|
+
.DetailsViewTable input[type=checkbox] + label,
|
|
21316
|
+
.DetailsViewTable input[type=checkbox] + span,
|
|
21317
|
+
.DetailsViewTable input[type=radio] + label,
|
|
21318
|
+
.DetailsViewTable input[type=radio] + span {
|
|
21319
|
+
position: relative;
|
|
21320
|
+
padding-left: 22px;
|
|
21321
|
+
margin-top: 5px;
|
|
21322
|
+
margin-bottom: 5px;
|
|
21323
|
+
}
|
|
21324
|
+
.DetailsViewTable input[type=checkbox] + label::before,
|
|
21325
|
+
.DetailsViewTable input[type=checkbox] + span::before,
|
|
21326
|
+
.DetailsViewTable input[type=radio] + label::before,
|
|
21327
|
+
.DetailsViewTable input[type=radio] + span::before {
|
|
21328
|
+
position: absolute;
|
|
21329
|
+
content: "";
|
|
21330
|
+
vertical-align: middle;
|
|
21331
|
+
width: 16px;
|
|
21332
|
+
height: 16px;
|
|
21333
|
+
border: 1px solid #aeb5bc;
|
|
21334
|
+
background: white;
|
|
21335
|
+
}
|
|
21336
|
+
.DetailsViewTable .indeterminate-checkbox input[type=checkbox] + label::before,
|
|
21337
|
+
.DetailsViewTable input[type=checkbox]:checked + label::before,
|
|
21338
|
+
.DetailsViewTable input[type=checkbox]:checked + span::before {
|
|
21339
|
+
border: none;
|
|
21340
|
+
background: #469285;
|
|
21341
|
+
}
|
|
21342
|
+
.DetailsViewTable input[type=checkbox] + label::before,
|
|
21343
|
+
.DetailsViewTable input[type=checkbox] + span::before {
|
|
21344
|
+
top: 3px;
|
|
21345
|
+
left: 0px;
|
|
21346
|
+
}
|
|
21347
|
+
.DetailsViewTable input[type=radio] + label::before,
|
|
21348
|
+
.DetailsViewTable input[type=radio] + span::before {
|
|
21349
|
+
border-radius: 50%;
|
|
21350
|
+
top: 1px;
|
|
21351
|
+
left: 4px;
|
|
21352
|
+
}
|
|
21353
|
+
.DetailsViewTable input[type=checkbox]:focus + label::before,
|
|
21354
|
+
.DetailsViewTable input[type=checkbox]:focus + span::before,
|
|
21355
|
+
.DetailsViewTable input[type=radio]:focus:checked + label::before,
|
|
21356
|
+
.DetailsViewTable input[type=radio]:focus:checked + span::before,
|
|
21357
|
+
.DetailsViewTable input[type=checkbox]:hover:checked:not(:disabled) + label::before,
|
|
21358
|
+
.DetailsViewTable input[type=checkbox]:hover:checked:not(:disabled) + span::before,
|
|
21359
|
+
.DetailsViewTable input[type=radio]:hover:checked:not(:disabled) + label::before,
|
|
21360
|
+
.DetailsViewTable input[type=radio]:hover:checked:not(:disabled) + span::before {
|
|
21361
|
+
box-shadow: 0px 0px 2px 2px #eaeded;
|
|
21362
|
+
}
|
|
21363
|
+
.DetailsViewTable input[type=checkbox]:hover:not(:checked):not(:disabled) + label::before,
|
|
21364
|
+
.DetailsViewTable input[type=checkbox]:hover:not(:checked):not(:disabled) + span::before,
|
|
21365
|
+
.DetailsViewTable input[type=radio]:hover:not(:checked):not(:disabled) + label::before,
|
|
21366
|
+
.DetailsViewTable input[type=radio]:hover:not(:checked):not(:disabled) + span::before {
|
|
21367
|
+
box-shadow: 0px 0px 2px 2px #dfe2e6;
|
|
21368
|
+
}
|
|
21369
|
+
.DetailsViewTable input[type=checkbox]:disabled:checked + label::before,
|
|
21370
|
+
.DetailsViewTable input[type=checkbox]:disabled:checked + span::before {
|
|
21371
|
+
background: #ddd;
|
|
21372
|
+
}
|
|
21373
|
+
.DetailsViewTable input[type=radio]:disabled:checked + label::after,
|
|
21374
|
+
.DetailsViewTable input[type=radio]:disabled:checked + span::after {
|
|
21375
|
+
background: #dfe2e6;
|
|
21376
|
+
}
|
|
21377
|
+
.DetailsViewTable input[type=checkbox]:disabled:not(:checked) + label::before,
|
|
21378
|
+
.DetailsViewTable input[type=checkbox]:disabled:not(:checked) + span::before,
|
|
21379
|
+
.DetailsViewTable input[type=radio]:disabled + label::before,
|
|
21380
|
+
.DetailsViewTable input[type=radio]:disabled + span::before {
|
|
21381
|
+
background: white;
|
|
21382
|
+
}
|
|
21383
|
+
.DetailsViewTable input[type=checkbox]:disabled + label,
|
|
21384
|
+
.DetailsViewTable input[type=checkbox]:disabled + span,
|
|
21385
|
+
.DetailsViewTable input[type=radio]:disabled + label,
|
|
21386
|
+
.DetailsViewTable input[type=radio]:disabled + span {
|
|
21387
|
+
color: #777;
|
|
21388
|
+
}
|
|
21389
|
+
.DetailsViewTable .indeterminate-checkbox input[type=checkbox] + label::after,
|
|
21390
|
+
.DetailsViewTable .indeterminate-checkbox input[type=checkbox] + span::after {
|
|
21391
|
+
content: "—";
|
|
21392
|
+
color: white;
|
|
21393
|
+
font-size: 12px;
|
|
21394
|
+
position: absolute;
|
|
21395
|
+
top: 2px;
|
|
21396
|
+
left: 3px;
|
|
21397
|
+
font-weight: bolder;
|
|
21398
|
+
}
|
|
21399
|
+
.DetailsViewTable input[type=checkbox]:checked + label::after,
|
|
21400
|
+
.DetailsViewTable input[type=checkbox]:checked + span::after {
|
|
21401
|
+
content: "";
|
|
21402
|
+
transform: rotate(45deg);
|
|
21403
|
+
height: 9px;
|
|
21404
|
+
width: 4px;
|
|
21405
|
+
border-bottom: 2px solid white;
|
|
21406
|
+
border-right: 2px solid white;
|
|
21407
|
+
position: absolute;
|
|
21408
|
+
top: 5px;
|
|
21409
|
+
left: 6px;
|
|
21410
|
+
}
|
|
21411
|
+
.DetailsViewTable input[type=radio]:checked + label::after,
|
|
21412
|
+
.DetailsViewTable input[type=radio]:checked + span::after {
|
|
21413
|
+
content: "";
|
|
21414
|
+
vertical-align: middle;
|
|
21415
|
+
width: 10px;
|
|
21416
|
+
height: 10px;
|
|
21417
|
+
border-radius: 50%;
|
|
21418
|
+
background: #469285;
|
|
21419
|
+
position: absolute;
|
|
21420
|
+
top: 4px;
|
|
21421
|
+
left: 7px;
|
|
21422
|
+
}
|
|
21423
|
+
.DetailsViewTable input[type=radio] + label,
|
|
21424
|
+
.DetailsViewTable input[type=radio] + span,
|
|
21425
|
+
.DetailsViewTable input[type=radio] + label,
|
|
21426
|
+
.DetailsViewTable input[type=radio] + span {
|
|
21427
|
+
padding-left: 23px;
|
|
21428
|
+
color: #515359;
|
|
21429
|
+
}
|
|
20846
21430
|
|
|
20847
21431
|
.EntityFinderDetailsView {
|
|
20848
21432
|
height: 500px;
|
|
@@ -20876,18 +21460,13 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
20876
21460
|
background: #f9f9f9;
|
|
20877
21461
|
}
|
|
20878
21462
|
.EntityFinderDetailsViewRow[aria-disabled=false][aria-selected=false]:hover {
|
|
20879
|
-
background-color:
|
|
21463
|
+
background-color: #edf0f2;
|
|
20880
21464
|
}
|
|
20881
21465
|
.EntityFinderDetailsViewRow[aria-disabled=false][aria-selected=true]:hover {
|
|
20882
|
-
background-color: #
|
|
21466
|
+
background-color: #6ba097;
|
|
20883
21467
|
}
|
|
20884
21468
|
.EntityFinderDetailsViewRow[aria-selected=true] {
|
|
20885
|
-
color:
|
|
20886
|
-
background-color: #0888d8;
|
|
20887
|
-
}
|
|
20888
|
-
.EntityFinderDetailsViewRow[aria-selected=true] .UserCardSmall {
|
|
20889
|
-
color: white !important;
|
|
20890
|
-
border-color: white !important;
|
|
21469
|
+
background-color: #8ab4ad;
|
|
20891
21470
|
}
|
|
20892
21471
|
.EntityFinderDetailsViewRow[aria-disabled=true] {
|
|
20893
21472
|
opacity: 0.5;
|
|
@@ -21240,7 +21819,7 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
21240
21819
|
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .EntityName:hover {
|
|
21241
21820
|
text-underline-offset: 2px;
|
|
21242
21821
|
}
|
|
21243
|
-
.TreeView.BrowseTree .Node.BrowseNode[aria-disabled=false][aria-selected=true] > .EntityName
|
|
21822
|
+
.TreeView.BrowseTree .Node.BrowseNode[aria-disabled=false][aria-selected=true] > .EntityName {
|
|
21244
21823
|
font-weight: bold;
|
|
21245
21824
|
}
|
|
21246
21825
|
|
|
@@ -21385,17 +21964,13 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
21385
21964
|
margin-bottom: 3px;
|
|
21386
21965
|
}
|
|
21387
21966
|
.TreeView.SelectTree .Tree .Node.SelectNode[aria-selected=true] {
|
|
21388
|
-
background: #
|
|
21389
|
-
color: white;
|
|
21390
|
-
}
|
|
21391
|
-
.TreeView.SelectTree .Tree .Node.SelectNode[aria-selected=true] > .ExpandButton {
|
|
21392
|
-
color: white;
|
|
21967
|
+
background: #8ab4ad;
|
|
21393
21968
|
}
|
|
21394
21969
|
.TreeView.SelectTree .Tree .Node.SelectNode[aria-selected=true]:hover {
|
|
21395
|
-
background-color: #
|
|
21970
|
+
background-color: #6ba097;
|
|
21396
21971
|
}
|
|
21397
21972
|
.TreeView.SelectTree .Node[aria-disabled=false]:hover {
|
|
21398
|
-
background-color:
|
|
21973
|
+
background-color: #edf0f2;
|
|
21399
21974
|
}
|
|
21400
21975
|
|
|
21401
21976
|
.terms-conditions .view-terms a,
|
|
@@ -22793,6 +23368,172 @@ table.DownloadListTableV2 td {
|
|
|
22793
23368
|
@param $color string e.g. #eee or red
|
|
22794
23369
|
@param $width unit e.g. 15%
|
|
22795
23370
|
*/
|
|
23371
|
+
/**
|
|
23372
|
+
* Defines our custom checkboxes and radio buttons
|
|
23373
|
+
* These handle both the Checkbox and RadioGroup components, as well as checkboxes and radio buttons rendered by other libraries (such as react-jsonschema-form)
|
|
23374
|
+
* So if you modify this file, please check all cases!
|
|
23375
|
+
*
|
|
23376
|
+
* The styles work by hijacking an adjacent <span> or <label> and appending two pseudo-elements.
|
|
23377
|
+
* The :before pseudo-element creates the "empty" checkbox/radio, and, when checked, the :after pseudo-element creates the "check" or circle
|
|
23378
|
+
*/
|
|
23379
|
+
.checkbox,
|
|
23380
|
+
.radio {
|
|
23381
|
+
padding-left: 0px;
|
|
23382
|
+
min-width: 27px;
|
|
23383
|
+
margin-top: 0px;
|
|
23384
|
+
margin-bottom: 0px;
|
|
23385
|
+
}
|
|
23386
|
+
|
|
23387
|
+
.checkbox label,
|
|
23388
|
+
.radio label {
|
|
23389
|
+
padding-left: 0px;
|
|
23390
|
+
}
|
|
23391
|
+
|
|
23392
|
+
.rjsf .checkbox,
|
|
23393
|
+
.rjsf .radio {
|
|
23394
|
+
margin-bottom: 10px;
|
|
23395
|
+
}
|
|
23396
|
+
|
|
23397
|
+
input[type=checkbox],
|
|
23398
|
+
input[type=radio] {
|
|
23399
|
+
position: absolute !important;
|
|
23400
|
+
height: 1px;
|
|
23401
|
+
width: 1px;
|
|
23402
|
+
overflow: hidden;
|
|
23403
|
+
clip: rect(1px, 1px, 1px, 1px);
|
|
23404
|
+
margin-left: unset;
|
|
23405
|
+
}
|
|
23406
|
+
|
|
23407
|
+
input[type=checkbox] + label,
|
|
23408
|
+
input[type=checkbox] + span,
|
|
23409
|
+
input[type=radio] + label,
|
|
23410
|
+
input[type=radio] + span {
|
|
23411
|
+
position: relative;
|
|
23412
|
+
padding-left: 22px;
|
|
23413
|
+
margin-top: 5px;
|
|
23414
|
+
margin-bottom: 5px;
|
|
23415
|
+
}
|
|
23416
|
+
|
|
23417
|
+
input[type=checkbox] + label::before,
|
|
23418
|
+
input[type=checkbox] + span::before,
|
|
23419
|
+
input[type=radio] + label::before,
|
|
23420
|
+
input[type=radio] + span::before {
|
|
23421
|
+
position: absolute;
|
|
23422
|
+
content: "";
|
|
23423
|
+
vertical-align: middle;
|
|
23424
|
+
width: 16px;
|
|
23425
|
+
height: 16px;
|
|
23426
|
+
border: 1px solid #aeb5bc;
|
|
23427
|
+
background: white;
|
|
23428
|
+
}
|
|
23429
|
+
|
|
23430
|
+
.indeterminate-checkbox input[type=checkbox] + label::before,
|
|
23431
|
+
input[type=checkbox]:checked + label::before,
|
|
23432
|
+
input[type=checkbox]:checked + span::before {
|
|
23433
|
+
border: none;
|
|
23434
|
+
background: #469285;
|
|
23435
|
+
}
|
|
23436
|
+
|
|
23437
|
+
input[type=checkbox] + label::before,
|
|
23438
|
+
input[type=checkbox] + span::before {
|
|
23439
|
+
top: 0px;
|
|
23440
|
+
left: 0px;
|
|
23441
|
+
}
|
|
23442
|
+
|
|
23443
|
+
input[type=radio] + label::before,
|
|
23444
|
+
input[type=radio] + span::before {
|
|
23445
|
+
border-radius: 50%;
|
|
23446
|
+
top: 1px;
|
|
23447
|
+
left: 4px;
|
|
23448
|
+
}
|
|
23449
|
+
|
|
23450
|
+
input[type=checkbox]:focus + label::before,
|
|
23451
|
+
input[type=checkbox]:focus + span::before,
|
|
23452
|
+
input[type=radio]:focus:checked + label::before,
|
|
23453
|
+
input[type=radio]:focus:checked + span::before,
|
|
23454
|
+
input[type=checkbox]:hover:checked:not(:disabled) + label::before,
|
|
23455
|
+
input[type=checkbox]:hover:checked:not(:disabled) + span::before,
|
|
23456
|
+
input[type=radio]:hover:checked:not(:disabled) + label::before,
|
|
23457
|
+
input[type=radio]:hover:checked:not(:disabled) + span::before {
|
|
23458
|
+
box-shadow: 0px 0px 2px 2px #eaeded;
|
|
23459
|
+
}
|
|
23460
|
+
|
|
23461
|
+
input[type=checkbox]:hover:not(:checked):not(:disabled) + label::before,
|
|
23462
|
+
input[type=checkbox]:hover:not(:checked):not(:disabled) + span::before,
|
|
23463
|
+
input[type=radio]:hover:not(:checked):not(:disabled) + label::before,
|
|
23464
|
+
input[type=radio]:hover:not(:checked):not(:disabled) + span::before {
|
|
23465
|
+
box-shadow: 0px 0px 2px 2px #dfe2e6;
|
|
23466
|
+
}
|
|
23467
|
+
|
|
23468
|
+
input[type=checkbox]:disabled:checked + label::before,
|
|
23469
|
+
input[type=checkbox]:disabled:checked + span::before {
|
|
23470
|
+
background: #ddd;
|
|
23471
|
+
}
|
|
23472
|
+
|
|
23473
|
+
input[type=radio]:disabled:checked + label::after,
|
|
23474
|
+
input[type=radio]:disabled:checked + span::after {
|
|
23475
|
+
background: #dfe2e6;
|
|
23476
|
+
}
|
|
23477
|
+
|
|
23478
|
+
input[type=checkbox]:disabled:not(:checked) + label::before,
|
|
23479
|
+
input[type=checkbox]:disabled:not(:checked) + span::before,
|
|
23480
|
+
input[type=radio]:disabled + label::before,
|
|
23481
|
+
input[type=radio]:disabled + span::before {
|
|
23482
|
+
background: white;
|
|
23483
|
+
}
|
|
23484
|
+
|
|
23485
|
+
input[type=checkbox]:disabled + label,
|
|
23486
|
+
input[type=checkbox]:disabled + span,
|
|
23487
|
+
input[type=radio]:disabled + label,
|
|
23488
|
+
input[type=radio]:disabled + span {
|
|
23489
|
+
color: #777;
|
|
23490
|
+
}
|
|
23491
|
+
|
|
23492
|
+
.indeterminate-checkbox input[type=checkbox] + label::after,
|
|
23493
|
+
.indeterminate-checkbox input[type=checkbox] + span::after {
|
|
23494
|
+
content: "—";
|
|
23495
|
+
color: white;
|
|
23496
|
+
font-size: 12px;
|
|
23497
|
+
position: absolute;
|
|
23498
|
+
top: -1px;
|
|
23499
|
+
left: 3px;
|
|
23500
|
+
font-weight: bolder;
|
|
23501
|
+
}
|
|
23502
|
+
|
|
23503
|
+
input[type=checkbox]:checked + label::after,
|
|
23504
|
+
input[type=checkbox]:checked + span::after {
|
|
23505
|
+
content: "";
|
|
23506
|
+
transform: rotate(45deg);
|
|
23507
|
+
height: 9px;
|
|
23508
|
+
width: 4px;
|
|
23509
|
+
border-bottom: 2px solid white;
|
|
23510
|
+
border-right: 2px solid white;
|
|
23511
|
+
position: absolute;
|
|
23512
|
+
top: 2px;
|
|
23513
|
+
left: 6px;
|
|
23514
|
+
}
|
|
23515
|
+
|
|
23516
|
+
input[type=radio]:checked + label::after,
|
|
23517
|
+
input[type=radio]:checked + span::after {
|
|
23518
|
+
content: "";
|
|
23519
|
+
vertical-align: middle;
|
|
23520
|
+
width: 10px;
|
|
23521
|
+
height: 10px;
|
|
23522
|
+
border-radius: 50%;
|
|
23523
|
+
background: #469285;
|
|
23524
|
+
position: absolute;
|
|
23525
|
+
top: 4px;
|
|
23526
|
+
left: 7px;
|
|
23527
|
+
}
|
|
23528
|
+
|
|
23529
|
+
input[type=radio] + label,
|
|
23530
|
+
input[type=radio] + span,
|
|
23531
|
+
input[type=radio] + label,
|
|
23532
|
+
input[type=radio] + span {
|
|
23533
|
+
padding-left: 23px;
|
|
23534
|
+
color: #515359;
|
|
23535
|
+
}
|
|
23536
|
+
|
|
22796
23537
|
.DatasetEditor {
|
|
22797
23538
|
border: 1px solid #eaecee;
|
|
22798
23539
|
}
|
|
@@ -22816,6 +23557,130 @@ table.DownloadListTableV2 td {
|
|
|
22816
23557
|
width: 100%;
|
|
22817
23558
|
overflow-x: auto;
|
|
22818
23559
|
}
|
|
23560
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=checkbox],
|
|
23561
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=radio] {
|
|
23562
|
+
position: absolute !important;
|
|
23563
|
+
height: 1px;
|
|
23564
|
+
width: 1px;
|
|
23565
|
+
overflow: hidden;
|
|
23566
|
+
clip: rect(1px, 1px, 1px, 1px);
|
|
23567
|
+
margin-left: unset;
|
|
23568
|
+
}
|
|
23569
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=checkbox] + label,
|
|
23570
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=checkbox] + span,
|
|
23571
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=radio] + label,
|
|
23572
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=radio] + span {
|
|
23573
|
+
position: relative;
|
|
23574
|
+
padding-left: 22px;
|
|
23575
|
+
margin-top: 5px;
|
|
23576
|
+
margin-bottom: 5px;
|
|
23577
|
+
}
|
|
23578
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=checkbox] + label::before,
|
|
23579
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=checkbox] + span::before,
|
|
23580
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=radio] + label::before,
|
|
23581
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=radio] + span::before {
|
|
23582
|
+
position: absolute;
|
|
23583
|
+
content: "";
|
|
23584
|
+
vertical-align: middle;
|
|
23585
|
+
width: 16px;
|
|
23586
|
+
height: 16px;
|
|
23587
|
+
border: 1px solid #aeb5bc;
|
|
23588
|
+
background: white;
|
|
23589
|
+
}
|
|
23590
|
+
.DatasetEditor .DatasetEditorTableContainer .indeterminate-checkbox input[type=checkbox] + label::before,
|
|
23591
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=checkbox]:checked + label::before,
|
|
23592
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=checkbox]:checked + span::before {
|
|
23593
|
+
border: none;
|
|
23594
|
+
background: #469285;
|
|
23595
|
+
}
|
|
23596
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=checkbox] + label::before,
|
|
23597
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=checkbox] + span::before {
|
|
23598
|
+
top: 5px;
|
|
23599
|
+
left: 0px;
|
|
23600
|
+
}
|
|
23601
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=radio] + label::before,
|
|
23602
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=radio] + span::before {
|
|
23603
|
+
border-radius: 50%;
|
|
23604
|
+
top: 1px;
|
|
23605
|
+
left: 4px;
|
|
23606
|
+
}
|
|
23607
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=checkbox]:focus + label::before,
|
|
23608
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=checkbox]:focus + span::before,
|
|
23609
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=radio]:focus:checked + label::before,
|
|
23610
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=radio]:focus:checked + span::before,
|
|
23611
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=checkbox]:hover:checked:not(:disabled) + label::before,
|
|
23612
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=checkbox]:hover:checked:not(:disabled) + span::before,
|
|
23613
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=radio]:hover:checked:not(:disabled) + label::before,
|
|
23614
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=radio]:hover:checked:not(:disabled) + span::before {
|
|
23615
|
+
box-shadow: 0px 0px 2px 2px #eaeded;
|
|
23616
|
+
}
|
|
23617
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=checkbox]:hover:not(:checked):not(:disabled) + label::before,
|
|
23618
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=checkbox]:hover:not(:checked):not(:disabled) + span::before,
|
|
23619
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=radio]:hover:not(:checked):not(:disabled) + label::before,
|
|
23620
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=radio]:hover:not(:checked):not(:disabled) + span::before {
|
|
23621
|
+
box-shadow: 0px 0px 2px 2px #dfe2e6;
|
|
23622
|
+
}
|
|
23623
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=checkbox]:disabled:checked + label::before,
|
|
23624
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=checkbox]:disabled:checked + span::before {
|
|
23625
|
+
background: #ddd;
|
|
23626
|
+
}
|
|
23627
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=radio]:disabled:checked + label::after,
|
|
23628
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=radio]:disabled:checked + span::after {
|
|
23629
|
+
background: #dfe2e6;
|
|
23630
|
+
}
|
|
23631
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=checkbox]:disabled:not(:checked) + label::before,
|
|
23632
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=checkbox]:disabled:not(:checked) + span::before,
|
|
23633
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=radio]:disabled + label::before,
|
|
23634
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=radio]:disabled + span::before {
|
|
23635
|
+
background: white;
|
|
23636
|
+
}
|
|
23637
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=checkbox]:disabled + label,
|
|
23638
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=checkbox]:disabled + span,
|
|
23639
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=radio]:disabled + label,
|
|
23640
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=radio]:disabled + span {
|
|
23641
|
+
color: #777;
|
|
23642
|
+
}
|
|
23643
|
+
.DatasetEditor .DatasetEditorTableContainer .indeterminate-checkbox input[type=checkbox] + label::after,
|
|
23644
|
+
.DatasetEditor .DatasetEditorTableContainer .indeterminate-checkbox input[type=checkbox] + span::after {
|
|
23645
|
+
content: "—";
|
|
23646
|
+
color: white;
|
|
23647
|
+
font-size: 12px;
|
|
23648
|
+
position: absolute;
|
|
23649
|
+
top: 4px;
|
|
23650
|
+
left: 3px;
|
|
23651
|
+
font-weight: bolder;
|
|
23652
|
+
}
|
|
23653
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=checkbox]:checked + label::after,
|
|
23654
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=checkbox]:checked + span::after {
|
|
23655
|
+
content: "";
|
|
23656
|
+
transform: rotate(45deg);
|
|
23657
|
+
height: 9px;
|
|
23658
|
+
width: 4px;
|
|
23659
|
+
border-bottom: 2px solid white;
|
|
23660
|
+
border-right: 2px solid white;
|
|
23661
|
+
position: absolute;
|
|
23662
|
+
top: 7px;
|
|
23663
|
+
left: 6px;
|
|
23664
|
+
}
|
|
23665
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=radio]:checked + label::after,
|
|
23666
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=radio]:checked + span::after {
|
|
23667
|
+
content: "";
|
|
23668
|
+
vertical-align: middle;
|
|
23669
|
+
width: 10px;
|
|
23670
|
+
height: 10px;
|
|
23671
|
+
border-radius: 50%;
|
|
23672
|
+
background: #469285;
|
|
23673
|
+
position: absolute;
|
|
23674
|
+
top: 4px;
|
|
23675
|
+
left: 7px;
|
|
23676
|
+
}
|
|
23677
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=radio] + label,
|
|
23678
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=radio] + span,
|
|
23679
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=radio] + label,
|
|
23680
|
+
.DatasetEditor .DatasetEditorTableContainer input[type=radio] + span {
|
|
23681
|
+
padding-left: 23px;
|
|
23682
|
+
color: #515359;
|
|
23683
|
+
}
|
|
22819
23684
|
.DatasetEditor .DatasetEditorTableContainer .DatasetEditorTable p {
|
|
22820
23685
|
margin-bottom: unset;
|
|
22821
23686
|
}
|
|
@@ -22844,6 +23709,9 @@ table.DownloadListTableV2 td {
|
|
|
22844
23709
|
text-overflow: ellipsis;
|
|
22845
23710
|
white-space: nowrap;
|
|
22846
23711
|
}
|
|
23712
|
+
.EntityNameWithIconRenderer svg {
|
|
23713
|
+
margin-bottom: 3px;
|
|
23714
|
+
}
|
|
22847
23715
|
|
|
22848
23716
|
.EntityErrorRenderer {
|
|
22849
23717
|
color: #cc9f00;
|