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