synapse-react-client 3.0.35 → 3.0.36
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/README.md +2 -10
- package/dist/containers/TotalQueryResults.d.ts +1 -1
- package/dist/containers/TotalQueryResults.js +11 -8
- package/dist/containers/TotalQueryResults.js.map +1 -1
- package/dist/containers/entity_finder/EntityFinderModal.d.ts +1 -0
- package/dist/containers/entity_finder/EntityFinderModal.js +32 -15
- package/dist/containers/entity_finder/EntityFinderModal.js.map +1 -1
- package/dist/containers/entity_finder/details/configurations/FavoritesDetails.js +1 -1
- package/dist/containers/entity_finder/details/configurations/FavoritesDetails.js.map +1 -1
- package/dist/containers/entity_finder/tree/EntityTree.js +1 -1
- package/dist/containers/entity_finder/tree/EntityTree.js.map +1 -1
- package/dist/containers/query_wrapper_plot_nav/QueryWrapperPlotNav.js +3 -5
- package/dist/containers/query_wrapper_plot_nav/QueryWrapperPlotNav.js.map +1 -1
- package/dist/containers/table/StandaloneQueryWrapper.js +1 -1
- package/dist/containers/table/StandaloneQueryWrapper.js.map +1 -1
- package/dist/containers/table/SynapseTable.js +5 -14
- package/dist/containers/table/SynapseTable.js.map +1 -1
- package/dist/containers/table/TopLevelControls.js +18 -17
- package/dist/containers/table/TopLevelControls.js.map +1 -1
- package/dist/containers/widgets/ElementWithTooltip.js +1 -1
- package/dist/containers/widgets/ElementWithTooltip.js.map +1 -1
- package/dist/containers/widgets/Range.d.ts +3 -3
- package/dist/containers/widgets/Range.js +1 -1
- package/dist/containers/widgets/Range.js.map +1 -1
- package/dist/containers/widgets/RangeSlider.d.ts +1 -1
- package/dist/containers/widgets/RangeSlider.js.map +1 -1
- package/dist/containers/widgets/facet-nav/FacetNav.d.ts +0 -1
- package/dist/containers/widgets/facet-nav/FacetNav.js +10 -10
- package/dist/containers/widgets/facet-nav/FacetNav.js.map +1 -1
- package/dist/containers/widgets/query-filter/QueryFilter.js +0 -1
- package/dist/containers/widgets/query-filter/QueryFilter.js.map +1 -1
- package/dist/style/base/_core.scss +7 -0
- package/dist/style/components/_column-selection.scss +0 -16
- package/dist/style/components/_element-with-tooltip.scss +0 -28
- package/dist/style/components/_query-filter.scss +1 -2
- package/dist/style/components/_query-wrapper-plot-nav.scss +59 -70
- package/dist/style/components/_total-query-results.scss +1 -31
- package/dist/style/main.css +58 -123
- package/dist/umd/synapse-react-client.development.css +61 -127
- package/dist/umd/synapse-react-client.development.css.map +2 -2
- package/dist/umd/synapse-react-client.development.js +1967 -1987
- 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 +75 -75
- package/dist/utils/SynapseClient.d.ts +2 -1
- package/dist/utils/SynapseClient.js +10 -4
- package/dist/utils/SynapseClient.js.map +1 -1
- package/dist/utils/hooks/SynapseAPI/user/useFavorites.d.ts +3 -2
- package/dist/utils/hooks/SynapseAPI/user/useFavorites.js +13 -6
- package/dist/utils/hooks/SynapseAPI/user/useFavorites.js.map +1 -1
- package/dist/utils/synapseTypes/FavoriteSortBy.d.ts +2 -0
- package/dist/utils/synapseTypes/FavoriteSortBy.js +3 -0
- package/dist/utils/synapseTypes/FavoriteSortBy.js.map +1 -0
- package/package.json +1 -5
- package/dist/containers/query_wrapper_plot_nav/QueryFilterToggleButton.d.ts +0 -3
- package/dist/containers/query_wrapper_plot_nav/QueryFilterToggleButton.js +0 -25
- package/dist/containers/query_wrapper_plot_nav/QueryFilterToggleButton.js.map +0 -1
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
border-radius: 2px;
|
|
27
27
|
white-space: nowrap;
|
|
28
28
|
height: fit-content;
|
|
29
|
+
margin-top: 8px;
|
|
29
30
|
}
|
|
30
31
|
}
|
|
31
32
|
|
|
@@ -55,34 +56,3 @@
|
|
|
55
56
|
}
|
|
56
57
|
}
|
|
57
58
|
}
|
|
58
|
-
|
|
59
|
-
.notch-down {
|
|
60
|
-
position: relative;
|
|
61
|
-
&:after,
|
|
62
|
-
&::after {
|
|
63
|
-
position: absolute;
|
|
64
|
-
left: 2.4rem;
|
|
65
|
-
bottom: -10px;
|
|
66
|
-
content: '';
|
|
67
|
-
width: 0;
|
|
68
|
-
height: 0;
|
|
69
|
-
border-top: solid 10px;
|
|
70
|
-
border-top-color: #f9f9f9;
|
|
71
|
-
border-left: solid 10px transparent;
|
|
72
|
-
border-right: solid 10px transparent;
|
|
73
|
-
}
|
|
74
|
-
// https://stackoverflow.com/questions/9450733/css-triangle-custom-border-color
|
|
75
|
-
&:before,
|
|
76
|
-
&::before {
|
|
77
|
-
position: absolute;
|
|
78
|
-
left: calc(2.4rem - 2px);
|
|
79
|
-
bottom: -12px;
|
|
80
|
-
content: '';
|
|
81
|
-
width: 0;
|
|
82
|
-
height: 0;
|
|
83
|
-
border-top: solid 12px;
|
|
84
|
-
border-top-color: inherit;
|
|
85
|
-
border-left: solid 12px transparent;
|
|
86
|
-
border-right: solid 12px transparent;
|
|
87
|
-
}
|
|
88
|
-
}
|
package/dist/style/main.css
CHANGED
|
@@ -14333,6 +14333,10 @@ svg.SRC-hoverBox:hover:after {
|
|
|
14333
14333
|
fill: #fff;
|
|
14334
14334
|
}
|
|
14335
14335
|
|
|
14336
|
+
.SRC-grey-background-hover:hover, .SRC-grey-background-hover[aria-expanded=true] {
|
|
14337
|
+
background-color: #dfe2e6;
|
|
14338
|
+
}
|
|
14339
|
+
|
|
14336
14340
|
.SRC-facets {
|
|
14337
14341
|
padding: 4px 12px;
|
|
14338
14342
|
border-radius: 20px;
|
|
@@ -17406,8 +17410,7 @@ svg.HelpButton {
|
|
|
17406
17410
|
}
|
|
17407
17411
|
|
|
17408
17412
|
.QueryFilter {
|
|
17409
|
-
padding:
|
|
17410
|
-
background-color: rgba(64, 123, 160, 0.05);
|
|
17413
|
+
padding-top: 18px;
|
|
17411
17414
|
}
|
|
17412
17415
|
.QueryFilter__title {
|
|
17413
17416
|
font-weight: bold;
|
|
@@ -17991,6 +17994,7 @@ svg.HelpButton {
|
|
|
17991
17994
|
border-radius: 2px;
|
|
17992
17995
|
white-space: nowrap;
|
|
17993
17996
|
height: fit-content;
|
|
17997
|
+
margin-top: 8px;
|
|
17994
17998
|
}
|
|
17995
17999
|
|
|
17996
18000
|
.SelectionCriteriaPill {
|
|
@@ -18019,34 +18023,6 @@ svg.HelpButton {
|
|
|
18019
18023
|
font-size: 1.25rem;
|
|
18020
18024
|
}
|
|
18021
18025
|
|
|
18022
|
-
.notch-down {
|
|
18023
|
-
position: relative;
|
|
18024
|
-
}
|
|
18025
|
-
.notch-down:after, .notch-down::after {
|
|
18026
|
-
position: absolute;
|
|
18027
|
-
left: 2.4rem;
|
|
18028
|
-
bottom: -10px;
|
|
18029
|
-
content: "";
|
|
18030
|
-
width: 0;
|
|
18031
|
-
height: 0;
|
|
18032
|
-
border-top: solid 10px;
|
|
18033
|
-
border-top-color: #f9f9f9;
|
|
18034
|
-
border-left: solid 10px transparent;
|
|
18035
|
-
border-right: solid 10px transparent;
|
|
18036
|
-
}
|
|
18037
|
-
.notch-down:before, .notch-down::before {
|
|
18038
|
-
position: absolute;
|
|
18039
|
-
left: calc(2.4rem - 2px);
|
|
18040
|
-
bottom: -12px;
|
|
18041
|
-
content: "";
|
|
18042
|
-
width: 0;
|
|
18043
|
-
height: 0;
|
|
18044
|
-
border-top: solid 12px;
|
|
18045
|
-
border-top-color: inherit;
|
|
18046
|
-
border-left: solid 12px transparent;
|
|
18047
|
-
border-right: solid 12px transparent;
|
|
18048
|
-
}
|
|
18049
|
-
|
|
18050
18026
|
.page-progress button,
|
|
18051
18027
|
.page-progress button:active,
|
|
18052
18028
|
.page-progress button:focus,
|
|
@@ -18223,71 +18199,41 @@ svg.HelpButton {
|
|
|
18223
18199
|
@media (min-width: 768px) {
|
|
18224
18200
|
.QueryWrapperPlotNav .SRC-wrapper {
|
|
18225
18201
|
display: grid;
|
|
18226
|
-
grid-template-columns: 25%
|
|
18227
|
-
padding-right: 15px;
|
|
18202
|
+
grid-template-columns: 25% 75%;
|
|
18228
18203
|
}
|
|
18229
18204
|
.QueryWrapperPlotNav .SRC-wrapper > * {
|
|
18230
|
-
grid-column: 1/span
|
|
18205
|
+
grid-column: 1/span 2;
|
|
18231
18206
|
}
|
|
18232
18207
|
.QueryWrapperPlotNav .SRC-wrapper.has-facets {
|
|
18233
|
-
|
|
18234
|
-
grid-template-columns: 60px 10px 25% 10px 75%;
|
|
18208
|
+
grid-template-columns: 25% 75%;
|
|
18235
18209
|
}
|
|
18236
18210
|
.QueryWrapperPlotNav .SRC-wrapper.has-facets > * {
|
|
18237
|
-
grid-column:
|
|
18238
|
-
}
|
|
18239
|
-
.QueryWrapperPlotNav .SRC-wrapper.has-facets .download-confirmation,
|
|
18240
|
-
.QueryWrapperPlotNav .SRC-wrapper.has-facets .TotalQueryResults,
|
|
18241
|
-
.QueryWrapperPlotNav .SRC-wrapper.has-facets .FacetNav,
|
|
18242
|
-
.QueryWrapperPlotNav .SRC-wrapper.has-facets .FilterAndView,
|
|
18243
|
-
.QueryWrapperPlotNav .SRC-wrapper.has-facets .TopLevelControls,
|
|
18244
|
-
.QueryWrapperPlotNav .SRC-wrapper.has-facets .QueryWrapperSearchInput,
|
|
18245
|
-
.QueryWrapperPlotNav .SRC-wrapper.has-facets .QueryWrapperSqlEditorInput,
|
|
18246
|
-
.QueryWrapperPlotNav .SRC-wrapper.has-facets .ErrorBannerWrapper {
|
|
18247
|
-
margin-left: 30px;
|
|
18248
|
-
}
|
|
18249
|
-
.QueryWrapperPlotNav .SRC-wrapper .QueryFilterToggleButton {
|
|
18250
|
-
position: relative;
|
|
18251
|
-
left: -23px;
|
|
18252
|
-
top: 20px;
|
|
18253
|
-
}
|
|
18254
|
-
.QueryWrapperPlotNav .SRC-wrapper .QueryFilterToggleButton button.btn.btn-outline-primary {
|
|
18255
|
-
border-radius: 50% !important;
|
|
18256
|
-
background-color: white;
|
|
18257
|
-
box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25) !important;
|
|
18258
|
-
border: none;
|
|
18259
|
-
width: 45px;
|
|
18260
|
-
height: 45px;
|
|
18261
|
-
}
|
|
18262
|
-
.QueryWrapperPlotNav .SRC-wrapper .QueryFilterToggleButton button.btn.btn-outline-primary:hover {
|
|
18263
|
-
background-color: rgb(64, 123, 160);
|
|
18211
|
+
grid-column: 1/span 2;
|
|
18264
18212
|
}
|
|
18265
18213
|
.QueryWrapperPlotNav .SRC-wrapper .QueryFilter {
|
|
18266
|
-
grid-row:
|
|
18267
|
-
}
|
|
18268
|
-
.QueryWrapperPlotNav .SRC-wrapper .QueryFilterToggleButton {
|
|
18269
|
-
grid-row: 1/span 1;
|
|
18270
|
-
}
|
|
18271
|
-
.QueryWrapperPlotNav .SRC-wrapper .QueryFilterToggleButton svg {
|
|
18272
|
-
margin-bottom: 2px;
|
|
18214
|
+
grid-row: 3/span 100;
|
|
18273
18215
|
}
|
|
18274
18216
|
.QueryWrapperPlotNav .SRC-wrapper .TopLevelControls {
|
|
18275
18217
|
grid-row: 1/span 1;
|
|
18276
18218
|
}
|
|
18277
|
-
.QueryWrapperPlotNav .SRC-wrapper .
|
|
18219
|
+
.QueryWrapperPlotNav .SRC-wrapper .TotalQueryResults {
|
|
18278
18220
|
grid-row: 2/span 1;
|
|
18279
18221
|
}
|
|
18280
|
-
.QueryWrapperPlotNav .SRC-wrapper .
|
|
18222
|
+
.QueryWrapperPlotNav .SRC-wrapper .download-confirmation {
|
|
18281
18223
|
grid-row: 3/span 1;
|
|
18282
|
-
margin-bottom: 10px;
|
|
18283
18224
|
}
|
|
18284
|
-
.QueryWrapperPlotNav .SRC-wrapper .
|
|
18225
|
+
.QueryWrapperPlotNav .SRC-wrapper .QueryWrapperSearchInput {
|
|
18285
18226
|
grid-row: 4/span 1;
|
|
18286
|
-
margin-bottom: 10px;
|
|
18287
18227
|
}
|
|
18288
|
-
.QueryWrapperPlotNav .SRC-wrapper .
|
|
18228
|
+
.QueryWrapperPlotNav .SRC-wrapper .QueryWrapperSearchInput .MuiCollapse-entered {
|
|
18229
|
+
margin: 5px 0px;
|
|
18230
|
+
}
|
|
18231
|
+
.QueryWrapperPlotNav .SRC-wrapper .QueryWrapperSqlEditorInput {
|
|
18289
18232
|
grid-row: 5/span 1;
|
|
18290
18233
|
}
|
|
18234
|
+
.QueryWrapperPlotNav .SRC-wrapper .QueryWrapperSqlEditorInput .MuiCollapse-entered {
|
|
18235
|
+
margin: 5px 0px;
|
|
18236
|
+
}
|
|
18291
18237
|
.QueryWrapperPlotNav .SRC-wrapper .ErrorBannerWrapper {
|
|
18292
18238
|
grid-row: 6/span 1;
|
|
18293
18239
|
}
|
|
@@ -18298,16 +18244,13 @@ svg.HelpButton {
|
|
|
18298
18244
|
grid-row: 8/span 1;
|
|
18299
18245
|
}
|
|
18300
18246
|
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.QueryFilter {
|
|
18301
|
-
grid-column: 1/span
|
|
18302
|
-
}
|
|
18303
|
-
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.QueryFilterToggleButton {
|
|
18304
|
-
grid-column: 4/span 1;
|
|
18247
|
+
grid-column: 1/span 1;
|
|
18305
18248
|
}
|
|
18306
|
-
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.
|
|
18307
|
-
|
|
18249
|
+
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.download-confirmation, .QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.FacetNav, .QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.QueryWrapperSearchInput, .QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.QueryWrapperSqlEditorInput, .QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.ErrorBannerWrapper, .QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.FilterAndView {
|
|
18250
|
+
grid-column: 2/span 1;
|
|
18308
18251
|
}
|
|
18309
|
-
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.
|
|
18310
|
-
grid-column:
|
|
18252
|
+
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.TopLevelControls, .QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.TotalQueryResults {
|
|
18253
|
+
grid-column: 1/span 2;
|
|
18311
18254
|
}
|
|
18312
18255
|
.QueryWrapperPlotNav .SRC-wrapper .isHidingFacetFilters.QueryFilter {
|
|
18313
18256
|
grid-column: 1/span 1;
|
|
@@ -18315,14 +18258,19 @@ svg.HelpButton {
|
|
|
18315
18258
|
.QueryWrapperPlotNav .SRC-wrapper .isHidingFacetFilters.QueryFilter > * {
|
|
18316
18259
|
display: none;
|
|
18317
18260
|
}
|
|
18318
|
-
.QueryWrapperPlotNav .SRC-wrapper .isHidingFacetFilters.
|
|
18319
|
-
|
|
18261
|
+
.QueryWrapperPlotNav .SRC-wrapper .isHidingFacetFilters.FilterAndView {
|
|
18262
|
+
margin-top: 10px;
|
|
18320
18263
|
}
|
|
18321
18264
|
}
|
|
18322
|
-
|
|
18323
|
-
|
|
18324
|
-
|
|
18325
|
-
|
|
18265
|
+
.QueryWrapperPlotNav .SRC-wrapper > .QueryFilter,
|
|
18266
|
+
.QueryWrapperPlotNav .SRC-wrapper > .download-confirmation,
|
|
18267
|
+
.QueryWrapperPlotNav .SRC-wrapper > .FacetNav,
|
|
18268
|
+
.QueryWrapperPlotNav .SRC-wrapper > .TotalQueryResults,
|
|
18269
|
+
.QueryWrapperPlotNav .SRC-wrapper > .QueryWrapperSearchInput,
|
|
18270
|
+
.QueryWrapperPlotNav .SRC-wrapper > .QueryWrapperSqlEditorInput,
|
|
18271
|
+
.QueryWrapperPlotNav .SRC-wrapper > .ErrorBannerWrapper,
|
|
18272
|
+
.QueryWrapperPlotNav .SRC-wrapper > .FilterAndView {
|
|
18273
|
+
margin-left: 15px;
|
|
18326
18274
|
}
|
|
18327
18275
|
.QueryWrapperPlotNav .QueryWrapperTextInput {
|
|
18328
18276
|
z-index: 600;
|
|
@@ -18346,15 +18294,15 @@ svg.HelpButton {
|
|
|
18346
18294
|
}
|
|
18347
18295
|
|
|
18348
18296
|
.TopLevelControls {
|
|
18349
|
-
|
|
18350
|
-
padding-bottom: 10px;
|
|
18351
|
-
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
|
18352
|
-
margin-bottom: 15px;
|
|
18297
|
+
background-color: rgba(64, 123, 160, 0.05);
|
|
18353
18298
|
}
|
|
18354
|
-
.TopLevelControls
|
|
18299
|
+
.TopLevelControls > * {
|
|
18355
18300
|
display: flex;
|
|
18356
18301
|
justify-content: space-between;
|
|
18357
18302
|
font-weight: bold;
|
|
18303
|
+
margin: 0px 0px 0px 15px;
|
|
18304
|
+
}
|
|
18305
|
+
.TopLevelControls > * p {
|
|
18358
18306
|
margin-top: 0px;
|
|
18359
18307
|
}
|
|
18360
18308
|
.TopLevelControls__showhidefacetfilters {
|
|
@@ -18364,6 +18312,22 @@ svg.HelpButton {
|
|
|
18364
18312
|
display: inline-flex;
|
|
18365
18313
|
align-items: center;
|
|
18366
18314
|
}
|
|
18315
|
+
.TopLevelControls__querycount__facetFilterLink {
|
|
18316
|
+
height: 100%;
|
|
18317
|
+
display: flex;
|
|
18318
|
+
flex-wrap: nowrap;
|
|
18319
|
+
justify-content: flex-start;
|
|
18320
|
+
align-items: stretch;
|
|
18321
|
+
margin-left: 15px;
|
|
18322
|
+
font-weight: 400 !important;
|
|
18323
|
+
}
|
|
18324
|
+
.TopLevelControls__querycount__facetFilterLink__text {
|
|
18325
|
+
margin-top: 4px;
|
|
18326
|
+
}
|
|
18327
|
+
.TopLevelControls__querycount__facetFilterLink svg {
|
|
18328
|
+
margin-right: 7px;
|
|
18329
|
+
margin-top: 8px;
|
|
18330
|
+
}
|
|
18367
18331
|
.TopLevelControls__actions {
|
|
18368
18332
|
display: inline-flex;
|
|
18369
18333
|
align-items: center;
|
|
@@ -18526,10 +18490,6 @@ svg.HelpButton {
|
|
|
18526
18490
|
.ElementWithTooltip svg path {
|
|
18527
18491
|
fill: rgb(64, 123, 160);
|
|
18528
18492
|
}
|
|
18529
|
-
.ElementWithTooltip:hover svg,
|
|
18530
|
-
.ElementWithTooltip:hover path {
|
|
18531
|
-
fill: #fff;
|
|
18532
|
-
}
|
|
18533
18493
|
.ElementWithTooltip.dark-theme svg {
|
|
18534
18494
|
fill: rgb(64, 123, 160);
|
|
18535
18495
|
color: rgb(64, 123, 160) !important;
|
|
@@ -18539,18 +18499,6 @@ svg.HelpButton {
|
|
|
18539
18499
|
.ElementWithTooltip.dark-theme svg path {
|
|
18540
18500
|
fill: rgb(64, 123, 160);
|
|
18541
18501
|
}
|
|
18542
|
-
.ElementWithTooltip.dark-theme:hover svg,
|
|
18543
|
-
.ElementWithTooltip.dark-theme:hover path {
|
|
18544
|
-
fill: #fff;
|
|
18545
|
-
}
|
|
18546
|
-
|
|
18547
|
-
.show .ElementWithTooltip.dark-theme svg {
|
|
18548
|
-
fill: rgb(64, 123, 160);
|
|
18549
|
-
color: white !important;
|
|
18550
|
-
}
|
|
18551
|
-
.show .ElementWithTooltip.dark-theme svg path {
|
|
18552
|
-
fill: white;
|
|
18553
|
-
}
|
|
18554
18502
|
|
|
18555
18503
|
button.ElementWithTooltip:active:focus, button.ElementWithTooltip:focus {
|
|
18556
18504
|
outline: none;
|
|
@@ -18567,19 +18515,6 @@ button.ElementWithTooltip:active:focus, button.ElementWithTooltip:focus {
|
|
|
18567
18515
|
border-radius: 2px;
|
|
18568
18516
|
}
|
|
18569
18517
|
|
|
18570
|
-
.show button svg .SRC-primary-fill-color, button:hover .SRC-primary-fill-color {
|
|
18571
|
-
fill: white;
|
|
18572
|
-
}
|
|
18573
|
-
.show button svg .SRC-primary-stroke-color, button:hover .SRC-primary-stroke-color {
|
|
18574
|
-
fill: rgb(64, 123, 160) !important;
|
|
18575
|
-
stroke: white !important;
|
|
18576
|
-
}
|
|
18577
|
-
|
|
18578
|
-
button:hover .SRC-column-light-theme .SRC-light-column {
|
|
18579
|
-
fill: rgb(64, 123, 160) !important;
|
|
18580
|
-
stroke: white !important;
|
|
18581
|
-
}
|
|
18582
|
-
|
|
18583
18518
|
.page-progress button,
|
|
18584
18519
|
.page-progress button:active,
|
|
18585
18520
|
.page-progress button:focus,
|
|
@@ -15233,6 +15233,10 @@ svg.SRC-hoverBox:hover:after {
|
|
|
15233
15233
|
.table .SRC-primary-background-color-hover[aria-expanded=true] path {
|
|
15234
15234
|
fill: #fff;
|
|
15235
15235
|
}
|
|
15236
|
+
.SRC-grey-background-hover:hover,
|
|
15237
|
+
.SRC-grey-background-hover[aria-expanded=true] {
|
|
15238
|
+
background-color: #dfe2e6;
|
|
15239
|
+
}
|
|
15236
15240
|
.SRC-facets {
|
|
15237
15241
|
padding: 4px 12px;
|
|
15238
15242
|
border-radius: 20px;
|
|
@@ -18098,8 +18102,7 @@ svg.HelpButton {
|
|
|
18098
18102
|
border-radius: 2px;
|
|
18099
18103
|
}
|
|
18100
18104
|
.QueryFilter {
|
|
18101
|
-
padding:
|
|
18102
|
-
background-color: rgba(64, 123, 160, 0.05);
|
|
18105
|
+
padding-top: 18px;
|
|
18103
18106
|
}
|
|
18104
18107
|
.QueryFilter__title {
|
|
18105
18108
|
font-weight: bold;
|
|
@@ -18644,6 +18647,7 @@ svg.HelpButton {
|
|
|
18644
18647
|
border-radius: 2px;
|
|
18645
18648
|
white-space: nowrap;
|
|
18646
18649
|
height: fit-content;
|
|
18650
|
+
margin-top: 8px;
|
|
18647
18651
|
}
|
|
18648
18652
|
.SelectionCriteriaPill {
|
|
18649
18653
|
padding: 3px 10px;
|
|
@@ -18670,35 +18674,6 @@ svg.HelpButton {
|
|
|
18670
18674
|
.SelectionCriteriaPill__btnRemove svg {
|
|
18671
18675
|
font-size: 1.25rem;
|
|
18672
18676
|
}
|
|
18673
|
-
.notch-down {
|
|
18674
|
-
position: relative;
|
|
18675
|
-
}
|
|
18676
|
-
.notch-down:after,
|
|
18677
|
-
.notch-down::after {
|
|
18678
|
-
position: absolute;
|
|
18679
|
-
left: 2.4rem;
|
|
18680
|
-
bottom: -10px;
|
|
18681
|
-
content: "";
|
|
18682
|
-
width: 0;
|
|
18683
|
-
height: 0;
|
|
18684
|
-
border-top: solid 10px;
|
|
18685
|
-
border-top-color: #f9f9f9;
|
|
18686
|
-
border-left: solid 10px transparent;
|
|
18687
|
-
border-right: solid 10px transparent;
|
|
18688
|
-
}
|
|
18689
|
-
.notch-down:before,
|
|
18690
|
-
.notch-down::before {
|
|
18691
|
-
position: absolute;
|
|
18692
|
-
left: calc(2.4rem - 2px);
|
|
18693
|
-
bottom: -12px;
|
|
18694
|
-
content: "";
|
|
18695
|
-
width: 0;
|
|
18696
|
-
height: 0;
|
|
18697
|
-
border-top: solid 12px;
|
|
18698
|
-
border-top-color: inherit;
|
|
18699
|
-
border-left: solid 12px transparent;
|
|
18700
|
-
border-right: solid 12px transparent;
|
|
18701
|
-
}
|
|
18702
18677
|
.page-progress button,
|
|
18703
18678
|
.page-progress button:active,
|
|
18704
18679
|
.page-progress button:focus,
|
|
@@ -18874,71 +18849,41 @@ svg.HelpButton {
|
|
|
18874
18849
|
@media (min-width: 768px) {
|
|
18875
18850
|
.QueryWrapperPlotNav .SRC-wrapper {
|
|
18876
18851
|
display: grid;
|
|
18877
|
-
grid-template-columns: 25%
|
|
18878
|
-
padding-right: 15px;
|
|
18852
|
+
grid-template-columns: 25% 75%;
|
|
18879
18853
|
}
|
|
18880
18854
|
.QueryWrapperPlotNav .SRC-wrapper > * {
|
|
18881
|
-
grid-column: 1/span
|
|
18855
|
+
grid-column: 1/span 2;
|
|
18882
18856
|
}
|
|
18883
18857
|
.QueryWrapperPlotNav .SRC-wrapper.has-facets {
|
|
18884
|
-
|
|
18885
|
-
grid-template-columns: 60px 10px 25% 10px 75%;
|
|
18858
|
+
grid-template-columns: 25% 75%;
|
|
18886
18859
|
}
|
|
18887
18860
|
.QueryWrapperPlotNav .SRC-wrapper.has-facets > * {
|
|
18888
|
-
grid-column:
|
|
18889
|
-
}
|
|
18890
|
-
.QueryWrapperPlotNav .SRC-wrapper.has-facets .download-confirmation,
|
|
18891
|
-
.QueryWrapperPlotNav .SRC-wrapper.has-facets .TotalQueryResults,
|
|
18892
|
-
.QueryWrapperPlotNav .SRC-wrapper.has-facets .FacetNav,
|
|
18893
|
-
.QueryWrapperPlotNav .SRC-wrapper.has-facets .FilterAndView,
|
|
18894
|
-
.QueryWrapperPlotNav .SRC-wrapper.has-facets .TopLevelControls,
|
|
18895
|
-
.QueryWrapperPlotNav .SRC-wrapper.has-facets .QueryWrapperSearchInput,
|
|
18896
|
-
.QueryWrapperPlotNav .SRC-wrapper.has-facets .QueryWrapperSqlEditorInput,
|
|
18897
|
-
.QueryWrapperPlotNav .SRC-wrapper.has-facets .ErrorBannerWrapper {
|
|
18898
|
-
margin-left: 30px;
|
|
18899
|
-
}
|
|
18900
|
-
.QueryWrapperPlotNav .SRC-wrapper .QueryFilterToggleButton {
|
|
18901
|
-
position: relative;
|
|
18902
|
-
left: -23px;
|
|
18903
|
-
top: 20px;
|
|
18904
|
-
}
|
|
18905
|
-
.QueryWrapperPlotNav .SRC-wrapper .QueryFilterToggleButton button.btn.btn-outline-primary {
|
|
18906
|
-
border-radius: 50% !important;
|
|
18907
|
-
background-color: white;
|
|
18908
|
-
box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25) !important;
|
|
18909
|
-
border: none;
|
|
18910
|
-
width: 45px;
|
|
18911
|
-
height: 45px;
|
|
18912
|
-
}
|
|
18913
|
-
.QueryWrapperPlotNav .SRC-wrapper .QueryFilterToggleButton button.btn.btn-outline-primary:hover {
|
|
18914
|
-
background-color: rgb(64, 123, 160);
|
|
18861
|
+
grid-column: 1/span 2;
|
|
18915
18862
|
}
|
|
18916
18863
|
.QueryWrapperPlotNav .SRC-wrapper .QueryFilter {
|
|
18917
|
-
grid-row:
|
|
18918
|
-
}
|
|
18919
|
-
.QueryWrapperPlotNav .SRC-wrapper .QueryFilterToggleButton {
|
|
18920
|
-
grid-row: 1/span 1;
|
|
18921
|
-
}
|
|
18922
|
-
.QueryWrapperPlotNav .SRC-wrapper .QueryFilterToggleButton svg {
|
|
18923
|
-
margin-bottom: 2px;
|
|
18864
|
+
grid-row: 3/span 100;
|
|
18924
18865
|
}
|
|
18925
18866
|
.QueryWrapperPlotNav .SRC-wrapper .TopLevelControls {
|
|
18926
18867
|
grid-row: 1/span 1;
|
|
18927
18868
|
}
|
|
18928
|
-
.QueryWrapperPlotNav .SRC-wrapper .
|
|
18869
|
+
.QueryWrapperPlotNav .SRC-wrapper .TotalQueryResults {
|
|
18929
18870
|
grid-row: 2/span 1;
|
|
18930
18871
|
}
|
|
18931
|
-
.QueryWrapperPlotNav .SRC-wrapper .
|
|
18872
|
+
.QueryWrapperPlotNav .SRC-wrapper .download-confirmation {
|
|
18932
18873
|
grid-row: 3/span 1;
|
|
18933
|
-
margin-bottom: 10px;
|
|
18934
18874
|
}
|
|
18935
|
-
.QueryWrapperPlotNav .SRC-wrapper .
|
|
18875
|
+
.QueryWrapperPlotNav .SRC-wrapper .QueryWrapperSearchInput {
|
|
18936
18876
|
grid-row: 4/span 1;
|
|
18937
|
-
margin-bottom: 10px;
|
|
18938
18877
|
}
|
|
18939
|
-
.QueryWrapperPlotNav .SRC-wrapper .
|
|
18878
|
+
.QueryWrapperPlotNav .SRC-wrapper .QueryWrapperSearchInput .MuiCollapse-entered {
|
|
18879
|
+
margin: 5px 0px;
|
|
18880
|
+
}
|
|
18881
|
+
.QueryWrapperPlotNav .SRC-wrapper .QueryWrapperSqlEditorInput {
|
|
18940
18882
|
grid-row: 5/span 1;
|
|
18941
18883
|
}
|
|
18884
|
+
.QueryWrapperPlotNav .SRC-wrapper .QueryWrapperSqlEditorInput .MuiCollapse-entered {
|
|
18885
|
+
margin: 5px 0px;
|
|
18886
|
+
}
|
|
18942
18887
|
.QueryWrapperPlotNav .SRC-wrapper .ErrorBannerWrapper {
|
|
18943
18888
|
grid-row: 6/span 1;
|
|
18944
18889
|
}
|
|
@@ -18949,23 +18894,19 @@ svg.HelpButton {
|
|
|
18949
18894
|
grid-row: 8/span 1;
|
|
18950
18895
|
}
|
|
18951
18896
|
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.QueryFilter {
|
|
18952
|
-
grid-column: 1/span
|
|
18953
|
-
}
|
|
18954
|
-
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.QueryFilterToggleButton {
|
|
18955
|
-
grid-column: 4/span 1;
|
|
18956
|
-
}
|
|
18957
|
-
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.QueryFilterToggleButton svg {
|
|
18958
|
-
margin-left: 2px;
|
|
18897
|
+
grid-column: 1/span 1;
|
|
18959
18898
|
}
|
|
18960
18899
|
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.download-confirmation,
|
|
18961
18900
|
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.FacetNav,
|
|
18962
|
-
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.TotalQueryResults,
|
|
18963
|
-
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.FilterAndView,
|
|
18964
|
-
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.TopLevelControls,
|
|
18965
18901
|
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.QueryWrapperSearchInput,
|
|
18966
18902
|
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.QueryWrapperSqlEditorInput,
|
|
18967
|
-
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.ErrorBannerWrapper
|
|
18968
|
-
|
|
18903
|
+
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.ErrorBannerWrapper,
|
|
18904
|
+
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.FilterAndView {
|
|
18905
|
+
grid-column: 2/span 1;
|
|
18906
|
+
}
|
|
18907
|
+
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.TopLevelControls,
|
|
18908
|
+
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.TotalQueryResults {
|
|
18909
|
+
grid-column: 1/span 2;
|
|
18969
18910
|
}
|
|
18970
18911
|
.QueryWrapperPlotNav .SRC-wrapper .isHidingFacetFilters.QueryFilter {
|
|
18971
18912
|
grid-column: 1/span 1;
|
|
@@ -18973,14 +18914,19 @@ svg.HelpButton {
|
|
|
18973
18914
|
.QueryWrapperPlotNav .SRC-wrapper .isHidingFacetFilters.QueryFilter > * {
|
|
18974
18915
|
display: none;
|
|
18975
18916
|
}
|
|
18976
|
-
.QueryWrapperPlotNav .SRC-wrapper .isHidingFacetFilters.
|
|
18977
|
-
|
|
18917
|
+
.QueryWrapperPlotNav .SRC-wrapper .isHidingFacetFilters.FilterAndView {
|
|
18918
|
+
margin-top: 10px;
|
|
18978
18919
|
}
|
|
18979
18920
|
}
|
|
18980
|
-
|
|
18981
|
-
|
|
18982
|
-
|
|
18983
|
-
|
|
18921
|
+
.QueryWrapperPlotNav .SRC-wrapper > .QueryFilter,
|
|
18922
|
+
.QueryWrapperPlotNav .SRC-wrapper > .download-confirmation,
|
|
18923
|
+
.QueryWrapperPlotNav .SRC-wrapper > .FacetNav,
|
|
18924
|
+
.QueryWrapperPlotNav .SRC-wrapper > .TotalQueryResults,
|
|
18925
|
+
.QueryWrapperPlotNav .SRC-wrapper > .QueryWrapperSearchInput,
|
|
18926
|
+
.QueryWrapperPlotNav .SRC-wrapper > .QueryWrapperSqlEditorInput,
|
|
18927
|
+
.QueryWrapperPlotNav .SRC-wrapper > .ErrorBannerWrapper,
|
|
18928
|
+
.QueryWrapperPlotNav .SRC-wrapper > .FilterAndView {
|
|
18929
|
+
margin-left: 15px;
|
|
18984
18930
|
}
|
|
18985
18931
|
.QueryWrapperPlotNav .QueryWrapperTextInput {
|
|
18986
18932
|
z-index: 600;
|
|
@@ -19003,15 +18949,15 @@ svg.HelpButton {
|
|
|
19003
18949
|
text-align: center;
|
|
19004
18950
|
}
|
|
19005
18951
|
.TopLevelControls {
|
|
19006
|
-
|
|
19007
|
-
padding-bottom: 10px;
|
|
19008
|
-
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
|
19009
|
-
margin-bottom: 15px;
|
|
18952
|
+
background-color: rgba(64, 123, 160, 0.05);
|
|
19010
18953
|
}
|
|
19011
|
-
.TopLevelControls
|
|
18954
|
+
.TopLevelControls > * {
|
|
19012
18955
|
display: flex;
|
|
19013
18956
|
justify-content: space-between;
|
|
19014
18957
|
font-weight: bold;
|
|
18958
|
+
margin: 0px 0px 0px 15px;
|
|
18959
|
+
}
|
|
18960
|
+
.TopLevelControls > * p {
|
|
19015
18961
|
margin-top: 0px;
|
|
19016
18962
|
}
|
|
19017
18963
|
.TopLevelControls__showhidefacetfilters {
|
|
@@ -19021,6 +18967,22 @@ svg.HelpButton {
|
|
|
19021
18967
|
display: inline-flex;
|
|
19022
18968
|
align-items: center;
|
|
19023
18969
|
}
|
|
18970
|
+
.TopLevelControls__querycount__facetFilterLink {
|
|
18971
|
+
height: 100%;
|
|
18972
|
+
display: flex;
|
|
18973
|
+
flex-wrap: nowrap;
|
|
18974
|
+
justify-content: flex-start;
|
|
18975
|
+
align-items: stretch;
|
|
18976
|
+
margin-left: 15px;
|
|
18977
|
+
font-weight: 400 !important;
|
|
18978
|
+
}
|
|
18979
|
+
.TopLevelControls__querycount__facetFilterLink__text {
|
|
18980
|
+
margin-top: 4px;
|
|
18981
|
+
}
|
|
18982
|
+
.TopLevelControls__querycount__facetFilterLink svg {
|
|
18983
|
+
margin-right: 7px;
|
|
18984
|
+
margin-top: 8px;
|
|
18985
|
+
}
|
|
19024
18986
|
.TopLevelControls__actions {
|
|
19025
18987
|
display: inline-flex;
|
|
19026
18988
|
align-items: center;
|
|
@@ -19183,10 +19145,6 @@ svg.HelpButton {
|
|
|
19183
19145
|
.ElementWithTooltip svg path {
|
|
19184
19146
|
fill: rgb(64, 123, 160);
|
|
19185
19147
|
}
|
|
19186
|
-
.ElementWithTooltip:hover svg,
|
|
19187
|
-
.ElementWithTooltip:hover path {
|
|
19188
|
-
fill: #fff;
|
|
19189
|
-
}
|
|
19190
19148
|
.ElementWithTooltip.dark-theme svg {
|
|
19191
19149
|
fill: rgb(64, 123, 160);
|
|
19192
19150
|
color: rgb(64, 123, 160) !important;
|
|
@@ -19196,17 +19154,6 @@ svg.HelpButton {
|
|
|
19196
19154
|
.ElementWithTooltip.dark-theme svg path {
|
|
19197
19155
|
fill: rgb(64, 123, 160);
|
|
19198
19156
|
}
|
|
19199
|
-
.ElementWithTooltip.dark-theme:hover svg,
|
|
19200
|
-
.ElementWithTooltip.dark-theme:hover path {
|
|
19201
|
-
fill: #fff;
|
|
19202
|
-
}
|
|
19203
|
-
.show .ElementWithTooltip.dark-theme svg {
|
|
19204
|
-
fill: rgb(64, 123, 160);
|
|
19205
|
-
color: white !important;
|
|
19206
|
-
}
|
|
19207
|
-
.show .ElementWithTooltip.dark-theme svg path {
|
|
19208
|
-
fill: white;
|
|
19209
|
-
}
|
|
19210
19157
|
button.ElementWithTooltip:active:focus,
|
|
19211
19158
|
button.ElementWithTooltip:focus {
|
|
19212
19159
|
outline: none;
|
|
@@ -19222,19 +19169,6 @@ button.ElementWithTooltip:focus {
|
|
|
19222
19169
|
box-shadow: none;
|
|
19223
19170
|
border-radius: 2px;
|
|
19224
19171
|
}
|
|
19225
|
-
.show button svg .SRC-primary-fill-color,
|
|
19226
|
-
button:hover .SRC-primary-fill-color {
|
|
19227
|
-
fill: white;
|
|
19228
|
-
}
|
|
19229
|
-
.show button svg .SRC-primary-stroke-color,
|
|
19230
|
-
button:hover .SRC-primary-stroke-color {
|
|
19231
|
-
fill: rgb(64, 123, 160) !important;
|
|
19232
|
-
stroke: white !important;
|
|
19233
|
-
}
|
|
19234
|
-
button:hover .SRC-column-light-theme .SRC-light-column {
|
|
19235
|
-
fill: rgb(64, 123, 160) !important;
|
|
19236
|
-
stroke: white !important;
|
|
19237
|
-
}
|
|
19238
19172
|
.page-progress button,
|
|
19239
19173
|
.page-progress button:active,
|
|
19240
19174
|
.page-progress button:focus,
|