synapse-react-client 3.3.7 → 3.3.9

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.
@@ -632,53 +632,10 @@ hr ~ .QueryWrapperPlotNav {
632
632
 
633
633
  .SynapseTable {
634
634
  min-height: 400px;
635
- th {
636
- position: relative;
637
- background: map.get(SRC.$colors, 'gray-100') padding-box;
638
- border-right: 1px solid map.get(SRC.$colors, 'gray-400');
639
- }
640
- td,
641
- th {
642
- & > * {
643
- padding: 8px 10px;
644
- }
645
- }
646
-
647
- tr:nth-of-type(2n) {
648
- background-color: #fbfbfc;
649
- }
650
635
 
651
636
  tbody > tr > td {
652
637
  vertical-align: top;
653
638
  }
654
-
655
- .resizer {
656
- position: absolute;
657
- right: 0;
658
- top: 0;
659
- height: 100%;
660
- width: 3px;
661
- padding: 0px;
662
- background: rgba(0, 0, 0, 0.5);
663
- cursor: col-resize;
664
- user-select: none;
665
- touch-action: none;
666
- }
667
-
668
- .resizer.isResizing {
669
- background: SRC.$primary-action-color;
670
- opacity: 1;
671
- }
672
-
673
- @media (hover: hover) {
674
- .resizer {
675
- opacity: 0;
676
- }
677
-
678
- *:hover > .resizer {
679
- opacity: 1;
680
- }
681
- }
682
639
  }
683
640
 
684
641
  .table > tbody > tr > td {
@@ -4,6 +4,7 @@
4
4
  .QueryWrapperPlotNav {
5
5
  display: grid;
6
6
  position: relative;
7
+ grid-template-columns: 100%;
7
8
 
8
9
  @media (min-width: map-get(SRC.$breakpoints, 'medium')) {
9
10
  grid-template-columns: 23% 75%;
@@ -29,7 +30,7 @@
29
30
  .QueryWrapperFullTextSearchInput,
30
31
  .QueryWrapperSearchInput,
31
32
  .QueryWrapperSqlEditorInput,
32
- .FilterAndView,
33
+ .RowSetView,
33
34
  .SynapsePlots {
34
35
  grid-column: 2 / span 1;
35
36
  }
@@ -45,7 +46,7 @@
45
46
  }
46
47
  }
47
48
 
48
- &.hasSelectedRows {
49
+ .hasSelectedRows {
49
50
  margin-bottom: 100px;
50
51
  }
51
52
 
@@ -83,7 +84,7 @@
83
84
  .PlotsContainer {
84
85
  grid-row: 8 / span 1;
85
86
  }
86
- .FilterAndView {
87
+ .RowSetView {
87
88
  grid-row: 9 / span 1;
88
89
  }
89
90
 
@@ -94,7 +95,7 @@
94
95
  display: none;
95
96
  }
96
97
  }
97
- .FilterAndView {
98
+ .RowSetView {
98
99
  margin-top: 10px;
99
100
  }
100
101
  }
@@ -8,6 +8,9 @@
8
8
  &:hover {
9
9
  background-color: map.get(SRC.$secondary-color-palette, 100);
10
10
  }
11
+ &:active {
12
+ background-color: map.get(SRC.$secondary-color-palette, 200);
13
+ }
11
14
  }
12
15
  .Checked {
13
16
  color: #ffffff;
@@ -15,4 +18,7 @@
15
18
  &:hover {
16
19
  background-color: map.get(SRC.$secondary-color-palette, 700);
17
20
  }
21
+ &:active {
22
+ background-color: map.get(SRC.$secondary-color-palette, 600);
23
+ }
18
24
  }
@@ -15333,45 +15333,9 @@ hr ~ .QueryWrapperPlotNav {
15333
15333
  .SynapseTable {
15334
15334
  min-height: 400px;
15335
15335
  }
15336
- .SynapseTable th {
15337
- position: relative;
15338
- background: #fbfbfc padding-box;
15339
- border-right: 1px solid #dfe2e6;
15340
- }
15341
- .SynapseTable td > *,
15342
- .SynapseTable th > * {
15343
- padding: 8px 10px;
15344
- }
15345
- .SynapseTable tr:nth-of-type(2n) {
15346
- background-color: #fbfbfc;
15347
- }
15348
15336
  .SynapseTable tbody > tr > td {
15349
15337
  vertical-align: top;
15350
15338
  }
15351
- .SynapseTable .resizer {
15352
- position: absolute;
15353
- right: 0;
15354
- top: 0;
15355
- height: 100%;
15356
- width: 3px;
15357
- padding: 0px;
15358
- background: rgba(0, 0, 0, 0.5);
15359
- cursor: col-resize;
15360
- user-select: none;
15361
- touch-action: none;
15362
- }
15363
- .SynapseTable .resizer.isResizing {
15364
- background: rgb(64, 123, 160);
15365
- opacity: 1;
15366
- }
15367
- @media (hover: hover) {
15368
- .SynapseTable .resizer {
15369
- opacity: 0;
15370
- }
15371
- .SynapseTable *:hover > .resizer {
15372
- opacity: 1;
15373
- }
15374
- }
15375
15339
 
15376
15340
  .table > tbody > tr > td {
15377
15341
  vertical-align: top;
@@ -17736,6 +17700,7 @@ svg.HelpButton {
17736
17700
  .QueryWrapperPlotNav {
17737
17701
  display: grid;
17738
17702
  position: relative;
17703
+ grid-template-columns: 100%;
17739
17704
  }
17740
17705
  @media (min-width: 768px) {
17741
17706
  .QueryWrapperPlotNav {
@@ -17757,7 +17722,7 @@ svg.HelpButton {
17757
17722
  .QueryWrapperPlotNav.isShowingFacetFilters .QueryWrapperFullTextSearchInput,
17758
17723
  .QueryWrapperPlotNav.isShowingFacetFilters .QueryWrapperSearchInput,
17759
17724
  .QueryWrapperPlotNav.isShowingFacetFilters .QueryWrapperSqlEditorInput,
17760
- .QueryWrapperPlotNav.isShowingFacetFilters .FilterAndView,
17725
+ .QueryWrapperPlotNav.isShowingFacetFilters .RowSetView,
17761
17726
  .QueryWrapperPlotNav.isShowingFacetFilters .SynapsePlots {
17762
17727
  grid-column: 2/span 1;
17763
17728
  }
@@ -17769,7 +17734,7 @@ svg.HelpButton {
17769
17734
  margin-left: 0;
17770
17735
  }
17771
17736
  }
17772
- .QueryWrapperPlotNav.hasSelectedRows {
17737
+ .QueryWrapperPlotNav .hasSelectedRows {
17773
17738
  margin-bottom: 100px;
17774
17739
  }
17775
17740
  .QueryWrapperPlotNav .TopLevelControls {
@@ -17804,7 +17769,7 @@ svg.HelpButton {
17804
17769
  .QueryWrapperPlotNav .PlotsContainer {
17805
17770
  grid-row: 8/span 1;
17806
17771
  }
17807
- .QueryWrapperPlotNav .FilterAndView {
17772
+ .QueryWrapperPlotNav .RowSetView {
17808
17773
  grid-row: 9/span 1;
17809
17774
  }
17810
17775
  .QueryWrapperPlotNav.isHidingFacetFilters .FacetFilterControls {
@@ -17813,7 +17778,7 @@ svg.HelpButton {
17813
17778
  .QueryWrapperPlotNav.isHidingFacetFilters .FacetFilterControls > * {
17814
17779
  display: none;
17815
17780
  }
17816
- .QueryWrapperPlotNav.isHidingFacetFilters .FilterAndView {
17781
+ .QueryWrapperPlotNav.isHidingFacetFilters .RowSetView {
17817
17782
  margin-top: 10px;
17818
17783
  }
17819
17784
  .QueryWrapperPlotNav .QueryWrapperTextInput {
@@ -18438,6 +18403,9 @@ input[type=radio] + span {
18438
18403
  .Chip:hover {
18439
18404
  background-color: #eaeded;
18440
18405
  }
18406
+ .Chip:active {
18407
+ background-color: #8ab4ad;
18408
+ }
18441
18409
 
18442
18410
  .Checked {
18443
18411
  color: #ffffff;
@@ -18446,6 +18414,9 @@ input[type=radio] + span {
18446
18414
  .Checked:hover {
18447
18415
  background-color: #2f8072;
18448
18416
  }
18417
+ .Checked:active {
18418
+ background-color: #3a897c;
18419
+ }
18449
18420
 
18450
18421
  .SynapsePlots {
18451
18422
  padding-top: 5px;