@elliemae/ds-basic 2.2.1 → 2.2.3-next.0

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/css/dimsum.css CHANGED
@@ -8778,30 +8778,24 @@ body > .em-ds-tree-item {
8778
8778
  white-space: nowrap; }
8779
8779
  .em-ds-tree-item-children-count-displayer {
8780
8780
  color: #697489; }
8781
- .em-ds-tree-item--valid-drop-before {
8782
- border-top-width: 2px;
8783
- border-top-style: solid;
8784
- border-top-color: #1e79c2; }
8785
- .em-ds-tree-item--valid-drop-in {
8786
- border-width: 2px;
8787
- border-style: solid;
8788
- border-color: #1e79c2; }
8789
- .em-ds-tree-item--valid-drop-after {
8790
- border-bottom-width: 2px;
8791
- border-bottom-style: solid;
8792
- border-bottom-color: #1e79c2; }
8793
- .em-ds-tree-item--invalid-drop-before {
8794
- border-top-width: 2px;
8795
- border-top-style: solid;
8796
- border-top-color: #C64252; }
8797
- .em-ds-tree-item--invalid-drop-in {
8798
- border-width: 2px;
8799
- border-style: solid;
8800
- border-color: #C64252; }
8801
- .em-ds-tree-item--invalid-drop-after {
8802
- border-bottom-width: 2px;
8803
- border-bottom-style: solid;
8804
- border-bottom-color: #C64252; }
8781
+ .em-ds-tree-item--valid-drop-in:after {
8782
+ content: '';
8783
+ display: block;
8784
+ position: absolute;
8785
+ top: 0;
8786
+ left: 0;
8787
+ right: 0;
8788
+ bottom: 0;
8789
+ border: 2px solid #1e79c2; }
8790
+ .em-ds-tree-item--invalid-drop-in:after {
8791
+ content: '';
8792
+ display: block;
8793
+ position: absolute;
8794
+ top: 0;
8795
+ left: 0;
8796
+ right: 0;
8797
+ bottom: 0;
8798
+ border: 2px solid #C64252; }
8805
8799
  .em-ds-tree-item .em-ds-tree-item__value {
8806
8800
  min-width: 0;
8807
8801
  width: 100%;
@@ -8821,14 +8815,40 @@ body > .em-ds-tree-item {
8821
8815
  fill: #005181; }
8822
8816
  .em-ds-tree-item.selected {
8823
8817
  background-color: #EBF6FF; }
8818
+ .em-ds-tree-item.selected:before {
8819
+ content: '';
8820
+ position: absolute;
8821
+ top: 0;
8822
+ left: 0;
8823
+ width: 100%;
8824
+ height: 100%;
8825
+ border: 1px solid #1394E5;
8826
+ pointer-events: none; }
8827
+ .em-ds-tree-item.drag-overlay {
8828
+ box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
8829
+ border-radius: 2px; }
8824
8830
  .em-ds-tree-item .drag-handle {
8831
+ position: relative;
8825
8832
  transition: 100ms cubic-bezier(0.64, 0, 0.35, 1);
8826
8833
  align-items: center;
8827
8834
  display: flex;
8835
+ height: 24px;
8828
8836
  visibility: visible;
8829
8837
  opacity: 1;
8830
8838
  margin-left: 8px;
8831
- fill: #697489; }
8839
+ outline: none;
8840
+ cursor: grab; }
8841
+ .em-ds-tree-item .drag-handle[data-isactive='true'], .em-ds-tree-item .drag-handle[data-isdragoverlay='true'] {
8842
+ cursor: grabbing; }
8843
+ .em-ds-tree-item .drag-handle.focuseable:focus:after {
8844
+ content: '';
8845
+ position: absolute;
8846
+ top: 0;
8847
+ left: 0;
8848
+ width: 100%;
8849
+ height: 100%;
8850
+ border: 2px solid #006AA9;
8851
+ pointer-events: none; }
8832
8852
  .em-ds-tree-item .expandable-arrow {
8833
8853
  margin-left: 8px;
8834
8854
  width: 16px;
@@ -8853,9 +8873,7 @@ body > .em-ds-tree-item {
8853
8873
  .em-ds-tree-item .tree-item-radio {
8854
8874
  padding-bottom: 0; }
8855
8875
  .em-ds-tree-item.hover {
8856
- background-color: #EBEDF0; }
8857
- .em-ds-tree-item.hover .drag-handle {
8858
- fill: #005181; }
8876
+ background-color: #EBF6FF; }
8859
8877
  .em-ds-tree-item.hover.selected {
8860
8878
  background-color: #EBF6FF; }
8861
8879
  .em-ds-tree-item:focus {
@@ -8864,13 +8882,13 @@ body > .em-ds-tree-item {
8864
8882
  border-radius: 0px;
8865
8883
  z-index: 1; }
8866
8884
  .em-ds-tree-item:focus:before {
8867
- content: "";
8885
+ content: '';
8868
8886
  position: absolute;
8869
8887
  top: 0;
8870
8888
  left: 0;
8871
8889
  width: 100%;
8872
8890
  height: 100%;
8873
- border: 1px solid #1e79c2;
8891
+ border: 2px solid #006AA9;
8874
8892
  pointer-events: none; }
8875
8893
  .em-ds-tree-item:focus.selected {
8876
8894
  outline: unset; }