@elliemae/ds-basic 3.22.0-next.8 → 3.22.0-rc.1
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/css/dimsum.css +24 -23
- package/dist/css/dimsum.min.css +1 -1
- package/dist/css/dimsum.min.css.map +1 -1
- package/dist/styles/components/packages/ds-basic/index.scss +47 -47
- package/dist/styles/components/packages/ds-basic/styles/components/index.scss +19 -19
- package/dist/styles/components/packages/ds-button-v1/DSButton.scss +23 -15
- package/dist/styles/components/packages/{ds-page-header/v1 → ds-page-header-v1}/DSPageHeader.scss +4 -4
- package/dist/styles/components/packages/{ds-toolbar → ds-toolbar-v1}/DSToolbar.scss +4 -6
- package/package.json +4 -4
- package/dist/styles/components/packages/ds-circular-progress-indicator/DSCircularProgressIndicator.scss +0 -81
- package/dist/styles/components/packages/ds-dropdownmenu/DSDropdownMenu.scss +0 -128
- package/dist/styles/components/packages/ds-indeterminate-progress-indicator/DSIndeterminateProgressIndicator.scss +0 -167
- package/dist/styles/components/packages/ds-modal-slide/DSModalSlide.scss +0 -170
- package/dist/styles/components/packages/ds-page-header/DSPageHeader.scss +0 -1
- package/dist/styles/components/packages/ds-progress-indicator/DSProgressIndicator.scss +0 -90
- package/dist/styles/components/packages/ds-query-builder/DSQueryBuilder.scss +0 -20
- package/dist/styles/components/packages/ds-query-builder/components/AndOrController/AndOrController.scss +0 -179
- package/dist/styles/components/packages/ds-query-builder/components/ConditionController/ConditionController.scss +0 -60
- package/dist/styles/components/packages/ds-query-builder/components/DisplayOutput/DisplayOutput.scss +0 -27
- package/dist/styles/components/packages/ds-query-builder/components/DragContainerController/DragContainerController.scss +0 -25
- package/dist/styles/components/packages/ds-query-builder/components/DragControllerRow/DragControllerRow.scss +0 -15
- package/dist/styles/components/packages/ds-query-builder/components/FieldControllerRow/FieldControllerRow.scss +0 -92
- package/dist/styles/components/packages/ds-query-builder/components/Nestable/Nestable.scss +0 -140
- package/dist/styles/components/packages/ds-query-builder/components/QueryBuilderItem/QueryBuilderItem.scss +0 -108
- package/dist/styles/components/packages/ds-query-builder/components/QueryBuilderRow/QueryBuilderRow.scss +0 -92
- package/dist/styles/components/packages/ds-ribbon/DSRibbon.scss +0 -5
- package/dist/styles/components/packages/ds-separator/DSSeparator.scss +0 -133
- package/dist/styles/components/packages/ds-tooltip/v1/DSTooltip.scss +0 -92
- package/dist/styles/components/packages/ds-treeview/Tree.scss +0 -262
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
// ********************************************
|
|
2
|
-
// container definition
|
|
3
|
-
$el-container: #{$prefix}-query-builder-drag-group;
|
|
4
|
-
$el-icon: #{$prefix}-icon;
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
.#{$el-container}{
|
|
8
|
-
cursor: move;
|
|
9
|
-
padding: space(xxs) 0;
|
|
10
|
-
display: flex;
|
|
11
|
-
flex-direction: column;
|
|
12
|
-
align-items: center;
|
|
13
|
-
.#{$el-icon}{
|
|
14
|
-
&.additional-drag{
|
|
15
|
-
position: relative;
|
|
16
|
-
bottom: space(xxs);
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
.separator{
|
|
20
|
-
margin: space(xxs) 0;
|
|
21
|
-
background: color(neutral, 100);
|
|
22
|
-
height: 1px;
|
|
23
|
-
width: 80%;
|
|
24
|
-
}
|
|
25
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
// ********************************************
|
|
2
|
-
// container definition
|
|
3
|
-
$el-container: #{$prefix}-query-builder-row;
|
|
4
|
-
|
|
5
|
-
.#{$el-container}{
|
|
6
|
-
|
|
7
|
-
&__drag-controller{
|
|
8
|
-
display: flex;
|
|
9
|
-
justify-content: center;
|
|
10
|
-
align-items: center;
|
|
11
|
-
width: space(m);
|
|
12
|
-
cursor: move;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
}
|
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
// ********************************************
|
|
2
|
-
// container definition
|
|
3
|
-
$el-container: #{$prefix}-query-builder-row;
|
|
4
|
-
$el-field-row-input: #{$el-container}-input;
|
|
5
|
-
$el-field-row-drag: #{$el-container}__drag-controller;
|
|
6
|
-
$el-field-row-controller: #{$el-container}-controller;
|
|
7
|
-
$el-input: #{$prefix}-input;
|
|
8
|
-
$el-input-select:#{$prefix}-combobox-container;
|
|
9
|
-
$el-input-select-separator: #{$prefix}-selectbox__indicator-separator;
|
|
10
|
-
$el-input-textbox:#{$prefix}-form-element-input;
|
|
11
|
-
$el-datepicker: #{$prefix}-datepicker;
|
|
12
|
-
$el-datepicker-picker: #{$el-datepicker}-range__picker;
|
|
13
|
-
|
|
14
|
-
.#{$el-container}{
|
|
15
|
-
@include box-shadow($row-shadow-default);
|
|
16
|
-
background: color(neutral, 0);
|
|
17
|
-
|
|
18
|
-
&__input-controller{
|
|
19
|
-
width: 100%;
|
|
20
|
-
height: $basic-row-height;
|
|
21
|
-
.#{$el-input},
|
|
22
|
-
.#{$el-input}__input{
|
|
23
|
-
height: $basic-row-height;
|
|
24
|
-
border: none;
|
|
25
|
-
background: none;
|
|
26
|
-
}
|
|
27
|
-
.em-ds-input {
|
|
28
|
-
z-index: initial;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
// Custom display Selectbox
|
|
33
|
-
.#{$el-input-select}{
|
|
34
|
-
border-radius: 0;
|
|
35
|
-
border: none;
|
|
36
|
-
height: $basic-row-height;
|
|
37
|
-
padding-top: space(xxs) * 0.5;
|
|
38
|
-
box-shadow: none;
|
|
39
|
-
.#{$el-input-select-separator}{
|
|
40
|
-
width: 0;
|
|
41
|
-
}
|
|
42
|
-
.#{$prefix}-combobox__control{
|
|
43
|
-
&:after{
|
|
44
|
-
border-color: transparent;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
// Custom display Textbox
|
|
49
|
-
.#{$el-input-textbox}{
|
|
50
|
-
border-radius: 0;
|
|
51
|
-
border: none;
|
|
52
|
-
background: none;
|
|
53
|
-
height: $basic-row-height;
|
|
54
|
-
}
|
|
55
|
-
// Custom display DatePicker
|
|
56
|
-
.#{$el-datepicker}{
|
|
57
|
-
.SingleDatePickerInput,
|
|
58
|
-
.DateInput_input,
|
|
59
|
-
.DateInput{
|
|
60
|
-
background: none;
|
|
61
|
-
border: none;
|
|
62
|
-
border-radius: 0;
|
|
63
|
-
}
|
|
64
|
-
.DateInput_input{
|
|
65
|
-
height: $basic-row-height;
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
.#{$el-datepicker-picker}{
|
|
69
|
-
height: $basic-row-height;
|
|
70
|
-
background: none;
|
|
71
|
-
border: none;
|
|
72
|
-
border-radius: 0;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
.#{$el-field-row-input}{
|
|
81
|
-
border-right: $border-style-separator;
|
|
82
|
-
&.child-type-value{
|
|
83
|
-
border: none;
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
.#{$el-field-row-drag}{
|
|
88
|
-
border-right: $border-style-separator;
|
|
89
|
-
}
|
|
90
|
-
.#{$el-field-row-controller}{
|
|
91
|
-
border-left: $border-style-separator;
|
|
92
|
-
}
|
|
@@ -1,140 +0,0 @@
|
|
|
1
|
-
.nestable {
|
|
2
|
-
position: relative;
|
|
3
|
-
}
|
|
4
|
-
.nestable .nestable-list {
|
|
5
|
-
margin: 0;
|
|
6
|
-
padding: 0 0 0 0;
|
|
7
|
-
list-style-type: none;
|
|
8
|
-
}
|
|
9
|
-
.nestable > .nestable-list {
|
|
10
|
-
padding: 0;
|
|
11
|
-
}
|
|
12
|
-
.nestable-item,
|
|
13
|
-
.nestable-item-copy {
|
|
14
|
-
margin: 0 0;
|
|
15
|
-
}
|
|
16
|
-
.nestable-item:first-child,
|
|
17
|
-
.nestable-item-copy:first-child {
|
|
18
|
-
margin-top: 0;
|
|
19
|
-
}
|
|
20
|
-
.nestable-item .nestable-list,
|
|
21
|
-
.nestable-item-copy .nestable-list {
|
|
22
|
-
margin-top: 0;
|
|
23
|
-
}
|
|
24
|
-
.nestable-item {
|
|
25
|
-
position: relative;
|
|
26
|
-
}
|
|
27
|
-
.nestable-item.is-dragging .nestable-list {
|
|
28
|
-
pointer-events: none;
|
|
29
|
-
}
|
|
30
|
-
.nestable-item.is-dragging * {
|
|
31
|
-
opacity: 0;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.nestable-item.is-dragging:before{
|
|
35
|
-
content: ' ';
|
|
36
|
-
position: absolute;
|
|
37
|
-
top: 0;
|
|
38
|
-
left: 0;
|
|
39
|
-
right: 0;
|
|
40
|
-
bottom: 0;
|
|
41
|
-
background: $is-and-color;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.nestable-item-type-group.is-or-group,
|
|
45
|
-
.nested-main-group.is-or-group{
|
|
46
|
-
.nestable-item.is-dragging:before{
|
|
47
|
-
background: $is-or-color;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
.nestable-item-icon {
|
|
54
|
-
margin-right: 5px;
|
|
55
|
-
cursor: pointer;
|
|
56
|
-
}
|
|
57
|
-
.nestable-drag-layer {
|
|
58
|
-
position: fixed;
|
|
59
|
-
top: 0;
|
|
60
|
-
left: 0;
|
|
61
|
-
z-index: 100;
|
|
62
|
-
pointer-events: none;
|
|
63
|
-
}
|
|
64
|
-
.nestable-drag-layer > .nestable-list {
|
|
65
|
-
position: absolute;
|
|
66
|
-
top: 0;
|
|
67
|
-
left: 0;
|
|
68
|
-
padding: 0;
|
|
69
|
-
@include box-shadow($row-shadow-drag);
|
|
70
|
-
min-width: calc(#{space(xl)} * 10);
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
// connector with parent group
|
|
76
|
-
|
|
77
|
-
.nestable-item-type-group{
|
|
78
|
-
&:after{
|
|
79
|
-
display: block;
|
|
80
|
-
content: '';
|
|
81
|
-
position: absolute;
|
|
82
|
-
right: 0;
|
|
83
|
-
top: 40%;
|
|
84
|
-
height: space(xxs);
|
|
85
|
-
width: space(xs);
|
|
86
|
-
background: $is-and-color;
|
|
87
|
-
z-index: -1;
|
|
88
|
-
// @include box-shadow($row-shadow-default);
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
.nestable-item-type-group.is-or-group,
|
|
92
|
-
.nested-main-group.is-or-group{
|
|
93
|
-
.nestable-item-type-group{
|
|
94
|
-
&:after{
|
|
95
|
-
background: $is-or-color;
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
.nestable-item-type-group.is-and-group,
|
|
100
|
-
.nested-main-group.is-and-group{
|
|
101
|
-
.nestable-item-type-group{
|
|
102
|
-
&:after{
|
|
103
|
-
background: $is-and-color;
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
.nestable-list.nestable-child-count-multiple{
|
|
110
|
-
.nestable-item{
|
|
111
|
-
|
|
112
|
-
}
|
|
113
|
-
& > .nestable-item-name--filter{
|
|
114
|
-
padding-bottom: 0;
|
|
115
|
-
}
|
|
116
|
-
.nestable-item.nestable-item-type-filter.is-or-filter{
|
|
117
|
-
background: $is-or-color;
|
|
118
|
-
padding: calc(#{space(xxs)} * 0.5);
|
|
119
|
-
padding-bottom: space(xxs);
|
|
120
|
-
}
|
|
121
|
-
.nestable-item.nestable-item-type-filter.is-and-filter{
|
|
122
|
-
background: $is-and-color;
|
|
123
|
-
padding: calc(#{space(xxs)} * 0.5);
|
|
124
|
-
padding-bottom: space(xxs);
|
|
125
|
-
}
|
|
126
|
-
& > .nestable-item.nestable-item-type-filter{
|
|
127
|
-
margin-bottom: 0;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
& > .nestable-item.nestable-item-type-group{
|
|
131
|
-
margin-top: space(xs);
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
.nestable-list.nestable-child-count-single{
|
|
136
|
-
.nestable-item.nestable-item-type-filter.is-or-filter,
|
|
137
|
-
.nestable-item.nestable-item-type-filter.is-and-filter{
|
|
138
|
-
padding: 0;
|
|
139
|
-
}
|
|
140
|
-
}
|
|
@@ -1,108 +0,0 @@
|
|
|
1
|
-
$main-list: nestable;
|
|
2
|
-
$group: nestable-group;
|
|
3
|
-
$item: nestable-item;
|
|
4
|
-
$el-option: rule-container-options;
|
|
5
|
-
$el-list: nestable-list;
|
|
6
|
-
$query-builder-row: em-ds-query-builder-row;
|
|
7
|
-
|
|
8
|
-
.nested-main-group {
|
|
9
|
-
position: relative;
|
|
10
|
-
display: flex;
|
|
11
|
-
flex-direction: row;
|
|
12
|
-
min-width: 640px;
|
|
13
|
-
|
|
14
|
-
.#{$main-list} {
|
|
15
|
-
flex: 1;
|
|
16
|
-
}
|
|
17
|
-
.#{$el-list} {
|
|
18
|
-
order: 0;
|
|
19
|
-
}
|
|
20
|
-
.#{$el-option} {
|
|
21
|
-
order: 1;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
// main group
|
|
26
|
-
.nestable-item-type-group {
|
|
27
|
-
position: relative;
|
|
28
|
-
display: flex;
|
|
29
|
-
flex-direction: row;
|
|
30
|
-
justify-content: flex-end;
|
|
31
|
-
|
|
32
|
-
.nestable-list {
|
|
33
|
-
order: 0;
|
|
34
|
-
flex: 1;
|
|
35
|
-
}
|
|
36
|
-
.nestable-item-name--group {
|
|
37
|
-
order: 1;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.#{$item} {
|
|
42
|
-
&.is-dragging {
|
|
43
|
-
.#{$query-builder-row} {
|
|
44
|
-
@include box-shadow($row-shadow-drag);
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.#{$group} {
|
|
50
|
-
.#{$item} {
|
|
51
|
-
margin-bottom: space(xs);
|
|
52
|
-
&:last-child {
|
|
53
|
-
margin-bottom: 0;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.nestable-item {
|
|
59
|
-
& > .nestable-list {
|
|
60
|
-
&.nestable-child-count-single {
|
|
61
|
-
.is-or-filter {
|
|
62
|
-
.nestable-item-name--filter {
|
|
63
|
-
background: $is-or-color;
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
.is-and-filter {
|
|
67
|
-
.nestable-item-name--filter {
|
|
68
|
-
background: $is-and-color;
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
.nestable-item-name--filter {
|
|
72
|
-
padding: 1px;
|
|
73
|
-
padding-bottom: 20px;
|
|
74
|
-
@include box-shadow($row-shadow-default-filter);
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
.nested-main-group {
|
|
81
|
-
& > .nestable {
|
|
82
|
-
& > .nestable-child-count-single {
|
|
83
|
-
.is-or-filter {
|
|
84
|
-
.nestable-item-name--filter {
|
|
85
|
-
background: $is-or-color;
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
.is-and-filter {
|
|
89
|
-
.nestable-item-name--filter {
|
|
90
|
-
background: $is-and-color;
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
.nestable-item-name--filter {
|
|
94
|
-
padding: 1px;
|
|
95
|
-
padding-bottom: 20px;
|
|
96
|
-
@include box-shadow($row-shadow-default-filter);
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
&.query-main-single-row > .nestable {
|
|
102
|
-
& > .nestable-child-count-single {
|
|
103
|
-
.nestable-item-name--filter {
|
|
104
|
-
padding: 3px;
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
}
|
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
// ********************************************
|
|
2
|
-
// container definition
|
|
3
|
-
$el-container: #{$prefix}-query-builder-row;
|
|
4
|
-
$el-input: #{$el-container}-input;
|
|
5
|
-
$el-input-wrapper: #{$el-container}__input-controller;
|
|
6
|
-
$el-controller: #{$el-container}-controller;
|
|
7
|
-
|
|
8
|
-
// ********************************************
|
|
9
|
-
// elements
|
|
10
|
-
$el-icon-drag: #{$el-container}__drag-controller;
|
|
11
|
-
|
|
12
|
-
// ********************************************
|
|
13
|
-
// Default state
|
|
14
|
-
.#{$el-container}{
|
|
15
|
-
display: grid;
|
|
16
|
-
height: $basic-row-height;
|
|
17
|
-
width: 100%;
|
|
18
|
-
|
|
19
|
-
&.has-open-tooltip,
|
|
20
|
-
&:hover {
|
|
21
|
-
background: color(neutral, 000);
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
&.has-open-tooltip::after{
|
|
25
|
-
content: '';
|
|
26
|
-
display: block;
|
|
27
|
-
width: 100%;
|
|
28
|
-
height: 100%;
|
|
29
|
-
background: rgba(color(neutral, 000), 0.64);
|
|
30
|
-
position: absolute;
|
|
31
|
-
top: 0;
|
|
32
|
-
left: 0;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.row-icon-alert{
|
|
36
|
-
padding:6px 8px;
|
|
37
|
-
display: inline-block;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
.#{$el-input-wrapper}{
|
|
43
|
-
height: $basic-row-height;
|
|
44
|
-
.#{$prefix}-datepicker-range-inputs .#{$prefix}-input{
|
|
45
|
-
width: 100%;
|
|
46
|
-
}
|
|
47
|
-
.#{$prefix}-datepicker-range {
|
|
48
|
-
height: 32px;
|
|
49
|
-
.#{$prefix}-label{
|
|
50
|
-
display: none; // for now we don't support label
|
|
51
|
-
}
|
|
52
|
-
.#{$prefix}-datepicker-wrapper-button-date-range-picker-controller{
|
|
53
|
-
margin-bottom: 0;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
.#{$prefix}-form-item{
|
|
57
|
-
margin: 0;
|
|
58
|
-
.#{$prefix}-label{
|
|
59
|
-
display: none; // for now we don't support label
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
.#{$prefix}-datepicker-inputs {
|
|
63
|
-
align-items: center; // fix alignment inside QB
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.#{$el-input}{
|
|
68
|
-
flex: 2;
|
|
69
|
-
display: flex;
|
|
70
|
-
height: $basic-row-height;
|
|
71
|
-
border: none;
|
|
72
|
-
&.row-input-error .em-ds-query-builder-row__input-controller{
|
|
73
|
-
position: relative;
|
|
74
|
-
&:after{
|
|
75
|
-
display: block;
|
|
76
|
-
content: '';
|
|
77
|
-
position: absolute;
|
|
78
|
-
border: solid 1px color(danger, 900);
|
|
79
|
-
height: 100%;
|
|
80
|
-
width: 100%;
|
|
81
|
-
top: 0;
|
|
82
|
-
left: 0;
|
|
83
|
-
pointer-events: none;
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.#{$el-controller}{
|
|
89
|
-
display: flex;
|
|
90
|
-
justify-content: center;
|
|
91
|
-
align-items: center;
|
|
92
|
-
}
|
|
@@ -1,133 +0,0 @@
|
|
|
1
|
-
// ********************************************
|
|
2
|
-
// container definition
|
|
3
|
-
$separator-el-wrapper: #{$prefix}-separator-wrapper;
|
|
4
|
-
|
|
5
|
-
// ********************************************
|
|
6
|
-
// element definition
|
|
7
|
-
$separator-el: #{$prefix}-separator;
|
|
8
|
-
|
|
9
|
-
// variable
|
|
10
|
-
$border-type: 0.5px solid;
|
|
11
|
-
|
|
12
|
-
// ********************************************
|
|
13
|
-
.#{$separator-el-wrapper} {
|
|
14
|
-
display: inline-flex;
|
|
15
|
-
position: relative;
|
|
16
|
-
width: 100%;
|
|
17
|
-
height: 100%;
|
|
18
|
-
margin: space(s) 0;
|
|
19
|
-
|
|
20
|
-
&.#{$separator-el-wrapper}--none {
|
|
21
|
-
margin: 0;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
&.#{$separator-el-wrapper}--xs {
|
|
25
|
-
margin: space(xs) 0;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
&.#{$separator-el-wrapper}--m {
|
|
29
|
-
margin: space(m) 0;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
&.#{$separator-el-wrapper}--l {
|
|
33
|
-
margin: space(l) 0;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
&.#{$separator-el-wrapper}--dashed {
|
|
37
|
-
* {
|
|
38
|
-
height: 1px;
|
|
39
|
-
overflow: hidden;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
&.#{$separator-el-wrapper}--horizontal {
|
|
44
|
-
&.#{$separator-el-wrapper}--initial {
|
|
45
|
-
height: unset;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
&.#{$separator-el-wrapper}--center {
|
|
50
|
-
align-items: center;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
&.#{$separator-el-wrapper}--end {
|
|
54
|
-
align-items: flex-end;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
&.#{$separator-el-wrapper}--vertical {
|
|
58
|
-
margin: 0 space(s);
|
|
59
|
-
|
|
60
|
-
&.#{$separator-el-wrapper}--none {
|
|
61
|
-
margin: 0;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
&.#{$separator-el-wrapper}--xs {
|
|
65
|
-
margin: 0 space(xs);
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
&.#{$separator-el-wrapper}--m {
|
|
69
|
-
margin: 0 space(m);
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
&.#{$separator-el-wrapper}--l {
|
|
73
|
-
margin: 0 space(l);
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
&.#{$separator-el-wrapper}--initial {
|
|
77
|
-
width: unset;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
&.#{$separator-el-wrapper}--center {
|
|
81
|
-
justify-content: center;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
&.#{$separator-el-wrapper}--end {
|
|
85
|
-
justify-content: flex-end;
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.#{$separator-el} {
|
|
90
|
-
border-top: $border-type color(neutral, 800);
|
|
91
|
-
|
|
92
|
-
&--vertical {
|
|
93
|
-
width: 1px;
|
|
94
|
-
border: inherit;
|
|
95
|
-
border-left: $border-type color(neutral, 800);
|
|
96
|
-
height: 100%;
|
|
97
|
-
|
|
98
|
-
&.#{$separator-el}--group-level, &.#{$separator-el}--non-form {
|
|
99
|
-
border-left: 1.2px solid color(neutral, 300);
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
&.#{$separator-el}--dashed {
|
|
103
|
-
width: 2px;
|
|
104
|
-
border: none;
|
|
105
|
-
background-image: linear-gradient(color(neutral, 300) 45%, rgba(255,255,255,0) 0%);
|
|
106
|
-
background-position: right;
|
|
107
|
-
background-size: 1px 5px;
|
|
108
|
-
background-repeat: repeat-y;
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
&--horizontal {
|
|
113
|
-
flex: 100%;
|
|
114
|
-
height: 1px;
|
|
115
|
-
|
|
116
|
-
&.#{$separator-el}--group-level {
|
|
117
|
-
border-color: color(neutral, 600);
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
&.#{$separator-el}--non-form {
|
|
121
|
-
border-color: color(neutral, 300);
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
&.#{$separator-el}--dashed {
|
|
125
|
-
border: none;
|
|
126
|
-
background-image: linear-gradient(to right, color(neutral, 300) 45%, rgba(255,255,255,0) 0%);
|
|
127
|
-
background-position: bottom;
|
|
128
|
-
background-size: 5px 1px;
|
|
129
|
-
background-repeat: repeat-x;
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
}
|
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
// ********************************************
|
|
2
|
-
// container definition
|
|
3
|
-
$tooltip-container: #{$prefix}-tooltip;
|
|
4
|
-
$tooltip-toolbar: tooltip-container--toolbar;
|
|
5
|
-
|
|
6
|
-
// ********************************************
|
|
7
|
-
// container definition
|
|
8
|
-
$el-text: #{$prefix}-tooltip__text;
|
|
9
|
-
|
|
10
|
-
$radius: $theme-base-border-radius;
|
|
11
|
-
|
|
12
|
-
$max-width: space(xxl) * 3.9;
|
|
13
|
-
|
|
14
|
-
.#{$tooltip-container} {
|
|
15
|
-
text-align: middle;
|
|
16
|
-
max-width: $max-width;
|
|
17
|
-
min-width: space(xl) * 1.17;
|
|
18
|
-
padding: space(xxs) space(s);
|
|
19
|
-
position: relative;
|
|
20
|
-
background-color: color(neutral, 000);
|
|
21
|
-
@include border-radius($radius);
|
|
22
|
-
@include box-shadow(depth(100));
|
|
23
|
-
@include filter-shadow(drop-shadow-depth(100));
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.#{$tooltip-container}__arrow {
|
|
27
|
-
position: absolute;
|
|
28
|
-
font-size: 30px;
|
|
29
|
-
height: space(m) * 1.1;
|
|
30
|
-
width: 25px;
|
|
31
|
-
pointer-events: none;
|
|
32
|
-
background-color: transparent;
|
|
33
|
-
& .stroke {
|
|
34
|
-
fill: color(neutral, 000);
|
|
35
|
-
}
|
|
36
|
-
& .fill {
|
|
37
|
-
fill: color(neutral, 000);
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
&[data-placement^="top"] {
|
|
41
|
-
transform: rotateZ(180deg);
|
|
42
|
-
}
|
|
43
|
-
&[data-placement^="right"] {
|
|
44
|
-
transform: rotateZ(-90deg);
|
|
45
|
-
height: space(s) * 1.2;
|
|
46
|
-
}
|
|
47
|
-
&[data-placement^="bottom"] {
|
|
48
|
-
transform: rotateZ(360deg);
|
|
49
|
-
height: space(s) * 1.5;
|
|
50
|
-
}
|
|
51
|
-
&[data-placement^="left"] {
|
|
52
|
-
transform: rotateZ(90deg);
|
|
53
|
-
height: space(s) * 1.2;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.#{$el-text} {
|
|
58
|
-
white-space: normal;
|
|
59
|
-
word-wrap: break-word;
|
|
60
|
-
display: inline-block;
|
|
61
|
-
color: color(neutral, 600);
|
|
62
|
-
max-width: $max-width - (space(s) * 2);
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.#{$tooltip-toolbar} {
|
|
66
|
-
padding: 0;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
@include md {
|
|
70
|
-
.#{$tooltip-container} {
|
|
71
|
-
padding: space(xxs) 8px;
|
|
72
|
-
border-radius: 3px;
|
|
73
|
-
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.38);
|
|
74
|
-
min-width: 16vw;
|
|
75
|
-
max-width: 90vw;
|
|
76
|
-
min-height: 20px;
|
|
77
|
-
font-size: 14px;
|
|
78
|
-
text-align: left;
|
|
79
|
-
vertical-align: middle;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
.#{$el-text} {
|
|
83
|
-
color: color(neutral, 800);
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
.#{$tooltip-container}__arrow {
|
|
87
|
-
&[data-placement^="top"],
|
|
88
|
-
&[data-placement^="bottom"] {
|
|
89
|
-
height: space(s) * 1.2;
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
}
|