linear-react-components-ui 0.4.76-rc.11 → 0.4.76-rc.15

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.
Files changed (70) hide show
  1. package/.DS_Store +0 -0
  2. package/.tool-versions +1 -0
  3. package/.vscode/settings.json +1 -2
  4. package/README.md +33 -0
  5. package/lib/assets/styles/dropdown.scss +28 -2
  6. package/lib/assets/styles/effects.scss +12 -0
  7. package/lib/assets/styles/floatMenu.scss +0 -1
  8. package/lib/assets/styles/multiSelect.scss +105 -0
  9. package/lib/assets/styles/panel.scss +0 -1
  10. package/lib/assets/styles/periodpicker.scss +65 -0
  11. package/lib/assets/styles/progress.scss +8 -1
  12. package/lib/assets/styles/select.scss +1 -0
  13. package/lib/assets/styles/table.scss +13 -5
  14. package/lib/assets/styles/tabs.scss +79 -44
  15. package/lib/assets/styles/treeview.scss +32 -0
  16. package/lib/avatar/avatar.spec.js +17 -6
  17. package/lib/avatar/index.js +1 -1
  18. package/lib/buttons/DefaultButton.js +7 -1
  19. package/lib/checkbox/Label.js +37 -0
  20. package/lib/checkbox/index.js +20 -6
  21. package/lib/dialog/base/index.js +15 -6
  22. package/lib/dialog/form/index.js +16 -3
  23. package/lib/drawer/index.js +4 -1
  24. package/lib/form/Field.js +2 -0
  25. package/lib/form/FieldNumber.js +10 -2
  26. package/lib/form/FieldPeriod.js +100 -0
  27. package/lib/form/helpers.js +9 -1
  28. package/lib/form/index.js +209 -222
  29. package/lib/form/withFieldHOC.js +2 -0
  30. package/lib/form/withFormSecurity.js +106 -0
  31. package/lib/icons/helper.js +16 -0
  32. package/lib/inputs/base/helpers.js +12 -4
  33. package/lib/inputs/multiSelect/ActionButtons.js +68 -0
  34. package/lib/inputs/multiSelect/Dropdown.js +200 -0
  35. package/lib/inputs/multiSelect/helper.js +18 -0
  36. package/lib/inputs/multiSelect/index.js +343 -0
  37. package/lib/inputs/number/BaseNumber.js +1 -1
  38. package/lib/inputs/number/index.js +7 -5
  39. package/lib/inputs/period/Dialog.js +38 -0
  40. package/lib/inputs/period/Dropdown.js +90 -0
  41. package/lib/inputs/period/PeriodList.js +79 -0
  42. package/lib/inputs/period/helper.js +118 -0
  43. package/lib/inputs/period/index.js +490 -0
  44. package/lib/inputs/select/Dropdown.js +4 -4
  45. package/lib/inputs/select/index.js +26 -3
  46. package/lib/inputs/select/multiple/index.js +9 -7
  47. package/lib/inputs/select/simple/index.js +30 -18
  48. package/lib/internals/withTooltip.js +85 -81
  49. package/lib/list/Item.js +3 -3
  50. package/lib/list/index.js +20 -10
  51. package/lib/list/list.spec.js +129 -85
  52. package/lib/menus/float/MenuItem.js +25 -8
  53. package/lib/menus/sidenav/index.js +7 -3
  54. package/lib/menus/sidenav/popup_menu_search/index.js +1 -1
  55. package/lib/progress/Bar.js +40 -9
  56. package/lib/progress/index.js +12 -4
  57. package/lib/spinner/index.js +6 -1
  58. package/lib/split/Split.js +5 -11
  59. package/lib/table/Row.js +1 -1
  60. package/lib/tabs/DropdownItems.js +84 -0
  61. package/lib/tabs/Menu.js +18 -5
  62. package/lib/tabs/MenuItems.js +7 -7
  63. package/lib/tabs/Panel.js +1 -3
  64. package/lib/tabs/index.js +151 -20
  65. package/lib/tabs/tabs.spec.js +8 -5
  66. package/lib/toolbar/index.js +8 -4
  67. package/lib/tooltip/index.js +20 -7
  68. package/lib/treeview/Node.js +347 -48
  69. package/lib/treeview/index.js +456 -35
  70. package/package.json +9 -8
package/.DS_Store ADDED
Binary file
package/.tool-versions ADDED
@@ -0,0 +1 @@
1
+ nodejs 10.16.0
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "files.exclude": {
3
- "__error": "Not found",
4
- "config": false,
3
+ "config": true,
5
4
  "coverage": true,
6
5
  "node_modules": true,
7
6
  "scripts": true,
package/README.md CHANGED
@@ -36,6 +36,39 @@ Compilar para publicação:
36
36
 
37
37
  `npm run demo:prod`
38
38
 
39
+ ### Publicação da lib no NPM
40
+ A princípio precisaremos fazer o login no npm para isso rode o comando abaixo:
41
+
42
+ `npm login`
43
+
44
+ Para gerar uma build nova e fazer a publicação no npm rode os comandos a seguir:
45
+
46
+ `npm version <versão>`
47
+
48
+ `npm run publish:npm`
49
+
50
+ Caso queira gerar uma build com versão beta e fazer a publicação no npm rode os comandos da seguinte forma:
51
+
52
+ `npm version <versão>`
53
+
54
+ `npm run publish:npm --tag beta`
55
+
56
+ Caso queira gerar uma build com versão candidata e fazer a publicação no npm rode os comandos da seguinte forma:
57
+
58
+ `npm version <versão>`
59
+
60
+ `npm run publish:npm --tag rc`
61
+
62
+ no local onde esta denominado o campo versão, você deverá colocar a nova versão do pacote, alguns exemplos para o campo versão:
63
+ - release: 0.4.75
64
+ - beta: 0.4.75-beta.0
65
+ - candidata: 0.4.75-rc.0
66
+
67
+ ficando da seguinte maneira:
68
+
69
+ `npm version 0.4.75`
70
+
71
+
39
72
  ### Publicar versão de demonstração no Heroku
40
73
 
41
74
 
@@ -76,12 +76,12 @@
76
76
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
77
77
  animation: revealelement 0.3s forwards ease-in-out;
78
78
  margin-right: 7px;
79
- > .floatmenulink {
79
+ > .floatmenuitem {
80
80
  text-decoration: none;
81
81
  color: #666666;
82
82
  text-align: center;
83
83
  }
84
- > .floatmenulink .-items {
84
+ > .floatmenuitem .-items {
85
85
  border: solid 1px $default-hover-color;
86
86
  margin: 0 5px 5px 0;
87
87
  font-size: 12px;
@@ -106,6 +106,32 @@
106
106
  transition: all 0.2s ease-in-out;
107
107
  &:hover {
108
108
  background: $default-hover-color;
109
+
110
+ > .floatmenudropdown {
111
+ visibility: visible;
112
+ pointer-events: initial;
113
+ opacity: 1;
114
+ }
115
+ }
116
+ > .floatmenudropdown {
117
+ position: absolute;
118
+ padding: 0;
119
+ top: 5px;
120
+ right: 5px;
121
+ visibility: hidden;
122
+ opacity: 0;
123
+ pointer-events: none;
124
+ }
125
+ > .floatmenulink {
126
+ display: flex;
127
+ flex-direction: column;
128
+ align-items: center;
129
+ justify-content: center;
130
+ flex: 1;
131
+ width: 100%;
132
+ text-decoration: none;
133
+ color: #666666;
134
+ text-align: center;
109
135
  }
110
136
  &.iconcontainer {
111
137
  padding-bottom: 10px;
@@ -2,9 +2,11 @@
2
2
  @keyframes slideInFromTop {
3
3
  0% {
4
4
  transform: translateY(-60%);
5
+ -webkit-font-smoothing: subpixel-antialiased;
5
6
  }
6
7
  30% {
7
8
  transform: translateY(0);
9
+ -webkit-font-smoothing: subpixel-antialiased;
8
10
  }
9
11
  }
10
12
 
@@ -719,3 +721,13 @@
719
721
  -webkit-transform: scale(1.1);
720
722
  transform: scale(1.1);
721
723
  }
724
+
725
+ // SlideWithPosition
726
+ @keyframes slideWithPositionFromLeft {
727
+ from {
728
+ left: -100%;
729
+ }
730
+ to {
731
+ left: 100%;
732
+ }
733
+ }
@@ -15,4 +15,3 @@
15
15
  }
16
16
  }
17
17
  }
18
-
@@ -0,0 +1,105 @@
1
+ @import "commons.scss";
2
+ @import "effects.scss";
3
+ .multiSelect-component {
4
+ width: 100%;
5
+ display: block;
6
+ .selectwrapper {
7
+ height: auto;
8
+
9
+ > .multiselect {
10
+ flex-wrap: wrap;
11
+ position: relative;
12
+ > .textinput {
13
+ order: 1;
14
+ display: inline-block;
15
+ }
16
+ > .selecteditem {
17
+ font-size: 14px;
18
+ position: absolute;
19
+ top: 50%;
20
+ left: 10px;
21
+ transform: translateY(-50%);
22
+ }
23
+ }
24
+
25
+ > .actionbutton {
26
+ display: flex;
27
+ align-items: center;
28
+ cursor: pointer;
29
+ margin: 0 3px;
30
+ padding: 0 3px;
31
+
32
+ > svg {
33
+ margin: 0;
34
+ }
35
+ }
36
+ }
37
+ }
38
+
39
+ .multiSelect-component > .dropdown {
40
+ animation: 0.5s ease-in 0s 1 slideDown;
41
+ background-color: #fff;
42
+ border: $component-border-color;
43
+ @extend %component-menu-dropdown;
44
+ display: grid;
45
+ grid-template-rows: auto;
46
+ height: auto;
47
+ overflow-y: auto;
48
+ overflow-x: hidden;
49
+ position: absolute;
50
+ z-index: 9999;
51
+ > .filtercontainer {
52
+ position: relative;
53
+ display: grid;
54
+ grid-template-columns: 1fr 20px;
55
+ border: 1px solid $component-border-color;
56
+ margin: 4px;
57
+ > .filterinput {
58
+ border: 0;
59
+ font-size: 13px;
60
+ text-indent: 4px;
61
+ padding: 10px 5px;
62
+ }
63
+ > .filtericon {
64
+ position: absolute;
65
+ right: 5px;
66
+ top: 10px;
67
+ }
68
+ }
69
+ > .listcontainer > .item {
70
+ margin: 0;
71
+ padding: 6px 10px;
72
+ display: flex;
73
+ cursor: pointer;
74
+ justify-content: stretch;
75
+ border-bottom: solid 1px #e1e1e1;
76
+ &:last-child {
77
+ border-bottom: none;
78
+ }
79
+ &:hover {
80
+ background-color: $default-hover-color;
81
+ }
82
+ &.-selected {
83
+ background-color: $default-hover-color;
84
+ }
85
+ .menubutton {
86
+ background-color: transparent;
87
+ border: 0;
88
+ padding: 0;
89
+ margin: 0;
90
+ display: flex;
91
+ justify-content: space-between;
92
+ align-items: center;
93
+ width: 100%;
94
+ > .checkboxicon {
95
+ margin-right: 5px;
96
+ }
97
+ > .label {
98
+ flex-grow: 1;
99
+ }
100
+ > .menuicon {
101
+ margin-right: 5px;
102
+ }
103
+ }
104
+ }
105
+ }
@@ -48,7 +48,6 @@
48
48
  }
49
49
  > .panel-content {
50
50
  height: auto;
51
- overflow: auto;
52
51
  padding: 15px;
53
52
  }
54
53
  }
@@ -0,0 +1,65 @@
1
+ @import "commons.scss";
2
+ @import "effects.scss";
3
+ .periodpicker-component {
4
+ height: auto;
5
+ position: relative;
6
+ display: flex;
7
+ border-radius: 2px;
8
+ border: 1px solid #dae1e8;
9
+
10
+ .inputwrapper {
11
+ border: none;
12
+ }
13
+
14
+ .separation_icon {
15
+ font-size: 16px;
16
+ flex: 0 0 10px;
17
+ }
18
+
19
+ .calendar-button {
20
+ flex: 0 0 20px;
21
+ padding: 4px;
22
+ border: none;
23
+ }
24
+
25
+ .input-base-component {
26
+ flex: 1;
27
+ }
28
+
29
+ }
30
+
31
+ .dropdown-period>.item {
32
+ margin: 0;
33
+ padding: 6px 10px;
34
+ display: flex;
35
+ cursor: pointer;
36
+ justify-content: stretch;
37
+ border-bottom: solid 1px #e1e1e1;
38
+
39
+ &:hover {
40
+ background-color: $default-hover-color;
41
+ }
42
+ &.-selected {
43
+ background-color: $default-hover-color;
44
+ }
45
+ &.-disabled {
46
+ @extend %component-menu-disabled;
47
+ &:hover {
48
+ background-color: transparent;
49
+ }
50
+ }
51
+ }
52
+
53
+ .dropdown-period {
54
+ width: 100%;
55
+ /* animation: 0.5s ease-in 0s 1 slideDown; */
56
+ background-color: #FFF;
57
+ border: #dae1e8;
58
+ display: grid;
59
+ grid-template-rows: auto;
60
+ height: auto;
61
+ overflow-y: auto;
62
+ overflow-x: hidden;
63
+ /* margin-top: 2px; */
64
+ z-index: 99999999999;
65
+ }
@@ -1,14 +1,15 @@
1
1
  @import "colors.scss";
2
2
  @import "commons.scss";
3
+
3
4
  .container-progress {
4
5
  display: flex;
5
6
  overflow: hidden;
6
- height: 24px;
7
7
  margin-bottom: 20px;
8
8
  background-color: #f5f5f5;
9
9
  border-radius: 4px;
10
10
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
11
11
  box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
12
+ position: relative;
12
13
  }
13
14
 
14
15
  .bar {
@@ -50,6 +51,12 @@
50
51
  -o-animation: progress-bar-stripes 2s linear infinite;
51
52
  animation: progress-bar-stripes 2s linear infinite;
52
53
  }
54
+ &.-indeterminate {
55
+ animation: slideWithPositionFromLeft infinite;
56
+ position: absolute;
57
+ left: -100%;
58
+ top: 0;
59
+ }
53
60
  >.progressbar-label {
54
61
  display: flex;
55
62
  align-items: center;
@@ -3,6 +3,7 @@
3
3
  .select-component {
4
4
  width: 100%;
5
5
  display: block;
6
+ position: relative;
6
7
  .selectwrapper {
7
8
  height: auto;
8
9
  }
@@ -1,5 +1,11 @@
1
1
  @import "colors.scss";
2
2
  @import "effects.scss";
3
+
4
+ .table-component,
5
+ .innertable {
6
+ contain: strict;
7
+ }
8
+
3
9
  .table-component {
4
10
  width: 100%;
5
11
  max-width: 100%;
@@ -8,7 +14,8 @@
8
14
  font-size: 14px;
9
15
  max-height: 20em;
10
16
  position: relative;
11
- > .headercontainer, .bodycontainer {
17
+ > .headercontainer,
18
+ .bodycontainer {
12
19
  width: 100%;
13
20
  .innertable {
14
21
  width: 100%;
@@ -31,7 +38,8 @@
31
38
  vertical-align: middle;
32
39
  border-bottom: 1px solid $component-border-color-soft;
33
40
  line-height: 18px;
34
- > .hidden, > .rowhover {
41
+ > .hidden,
42
+ > .rowhover {
35
43
  display: none;
36
44
  animation: revealelement 0.2s forwards ease-in-out;
37
45
  }
@@ -39,7 +47,7 @@
39
47
  border-bottom: 0;
40
48
  }
41
49
  }
42
-
50
+
43
51
  > .bodycontainer > .innertable > .tbody > .trow,
44
52
  > .tbody > .trow {
45
53
  &.-selected {
@@ -48,7 +56,7 @@
48
56
  }
49
57
  &:hover {
50
58
  > .rowcolumn > .rowhover {
51
- display: table
59
+ display: table;
52
60
  }
53
61
  }
54
62
  }
@@ -84,7 +92,7 @@
84
92
  background: $header-container-bg;
85
93
  }
86
94
  > .headercontainer > .innertable > .theader,
87
- > .theader {
95
+ > .theader {
88
96
  background: $header-container-bg;
89
97
  }
90
98
  }
@@ -1,4 +1,29 @@
1
1
  @import "colors.scss";
2
+ %tab-closepanel {
3
+ background-color: transparent;
4
+ border: 0;
5
+ height: 20px;
6
+ margin-right: 5px;
7
+ padding: 0;
8
+ text-shadow: 0 1px 0 $font-color-second;
9
+ width: 20px;
10
+ visibility: hidden;
11
+ transition: all 0.2s ease-in-out;
12
+ border-radius: 4px;
13
+ &:after {
14
+ content: "×";
15
+ font-size: 20px;
16
+ text-shadow: none;
17
+ color: $font-color-soft;
18
+ transition: all 0.2s ease-in-out;
19
+ }
20
+ &:hover {
21
+ background-color: $color-light-dark;
22
+ &:after {
23
+ color: $font-color-second;
24
+ }
25
+ }
26
+ }
2
27
  %tab-component-menus {
3
28
  .menu {
4
29
  -webkit-box-shadow: 0px -1px 0px $component-border-color inset;
@@ -7,22 +32,26 @@
7
32
  display: flex;
8
33
  flex-wrap: nowrap;
9
34
  justify-content: center;
10
- flex-grow: 1;
35
+ flex: 1;
11
36
  &.-firsttabident > .menuitem:first-child {
12
37
  margin-left: 15px;
13
38
  }
14
39
  }
15
- .menu > .menuitem {
40
+ .menu > .menuitem {
16
41
  border-bottom: 0;
17
- border-radius: 5px 5px 0px 0px;
18
- -moz-border-radius: 5px 5px 0px 0px;
19
- -webkit-border-radius: 5px 5px 0px 0px;
42
+ border-radius: 5px 5px 0px 0px;
43
+ -moz-border-radius: 5px 5px 0px 0px;
44
+ -webkit-border-radius: 5px 5px 0px 0px;
20
45
  text-shadow: 0 1px $font-color-second;
21
46
  cursor: pointer;
22
47
  line-height: 20px;
23
48
  margin-right: 1px;
24
49
  padding: 0;
25
50
  width: auto;
51
+ min-width: 100px;
52
+ display: flex;
53
+ justify-content: space-between;
54
+ align-items: center;
26
55
  &.selected {
27
56
  border: 1px solid $component-border-color;
28
57
  background: $font-color-second;
@@ -31,40 +60,22 @@
31
60
  box-shadow: 0;
32
61
  font-weight: bold; /* z-index: 2; */
33
62
  }
34
- &.selected > .closepanel, &:hover > .closepanel {
63
+ &.selected > .closepanel,
64
+ &:hover > .closepanel {
35
65
  visibility: visible;
36
66
  }
37
67
  }
38
- .menu > .menuitem > .menubutton {
68
+ .menu > .menuitem > .menubutton {
69
+ white-space: nowrap;
70
+ text-overflow: ellipsis;
39
71
  background: transparent;
40
72
  border: 0;
41
73
  }
42
- .menu > .menuitem > .closepanel {
43
- background-color: transparent;
44
- border: 0;
45
- float: right;
46
- height: 20px;
47
- margin: 5px 5px 0 0;
48
- padding: 0;
49
- text-shadow: 0 1px 0 $font-color-second;
50
- width: 20px;
51
- visibility: hidden;
52
- transition: all 0.2s ease-in-out;
53
- border-radius: 4px;
54
- &:after {
55
- content: "×";
56
- font-size: 20px;
57
- text-shadow: none;
58
- color: $font-color-soft;
59
- transition: all 0.2s ease-in-out;
60
- }
61
- &:hover {
62
- background-color: $color-light-dark;
63
- &:after {
64
- color: $font-color-second;
65
- }
66
- }
74
+
75
+ .menu > .menuitem > .closepanel {
76
+ @extend %tab-closepanel;
67
77
  }
78
+
68
79
  .menubar {
69
80
  width: auto;
70
81
  border-bottom: 1px solid #dae1e8;
@@ -84,8 +95,13 @@
84
95
  > .menucontainer {
85
96
  display: flex;
86
97
  flex-wrap: nowrap;
87
- width: 100%;
98
+ max-width: 100%;
99
+ overflow: hidden;
88
100
  @extend %tab-component-menus;
101
+ > .dropdownbutton {
102
+ border-bottom: 1px solid $component-border-color;
103
+ padding: 0 0.8rem;
104
+ }
89
105
  }
90
106
  > .panel {
91
107
  background-color: $font-color-second;
@@ -111,9 +127,9 @@
111
127
  justify-content: center;
112
128
  }
113
129
  > .menu > .menuitem {
114
- border-radius: 5px 0px 0px 5px;
115
- -moz-border-radius: 5px 0px 0px 5px;
116
- -webkit-border-radius: 5px 0px 0px 5px;
130
+ border-radius: 5px 0px 0px 5px;
131
+ -moz-border-radius: 5px 0px 0px 5px;
132
+ -webkit-border-radius: 5px 0px 0px 5px;
117
133
  &.selected {
118
134
  border: 1px solid $component-border-color;
119
135
  border-right: 1px solid $font-color-second;
@@ -121,8 +137,8 @@
121
137
  width: 100%;
122
138
  }
123
139
  }
124
- > .menu > .menuitem > .closepanel {
125
- float: left
140
+ > .menu > .menuitem > .closepanel {
141
+ float: left;
126
142
  }
127
143
  > .panel {
128
144
  border-top: 1px solid $component-border-color;
@@ -139,9 +155,9 @@
139
155
  box-shadow: 0 1px 1px 0px $component-border-color inset;
140
156
  }
141
157
  > .menu > .menuitem {
142
- border-radius: 0px 0px 5px 5px;
143
- -moz-border-radius: 0px 0px 5px 5px;
144
- -webkit-border-radius: 0px 0px 5px 5px;
158
+ border-radius: 0px 0px 5px 5px;
159
+ -moz-border-radius: 0px 0px 5px 5px;
160
+ -webkit-border-radius: 0px 0px 5px 5px;
145
161
  &.selected {
146
162
  border: 1px solid $component-border-color;
147
163
  border-top: 1px solid $font-color-second;
@@ -167,9 +183,9 @@
167
183
  justify-content: center;
168
184
  }
169
185
  > .menu > .menuitem {
170
- border-radius: 0px 5px 5px 0px;
171
- -moz-border-radius: 0px 5px 5px 0px;
172
- -webkit-border-radius: 0px 5px 5px 0px;
186
+ border-radius: 0px 5px 5px 0px;
187
+ -moz-border-radius: 0px 5px 5px 0px;
188
+ -webkit-border-radius: 0px 5px 5px 0px;
173
189
  &.selected {
174
190
  border: 1px solid $component-border-color;
175
191
  border-left: 1px solid $font-color-second;
@@ -182,3 +198,22 @@
182
198
  border-right: 0;
183
199
  }
184
200
  }
201
+
202
+ /*
203
+ Dropdown hide tabs
204
+ */
205
+ .dropdown-hide-tabs .menuitem {
206
+ cursor: pointer;
207
+ line-height: 20px;
208
+ margin-right: 1px;
209
+ display: flex;
210
+ align-items: center;
211
+ justify-content: space-between;
212
+ min-height: 50px;
213
+ > .closepanel {
214
+ @extend %tab-closepanel;
215
+ }
216
+ &:hover > .closepanel {
217
+ visibility: visible;
218
+ }
219
+ }
@@ -42,6 +42,25 @@
42
42
  animation: revealelement 0.3s forwards ease-in-out;
43
43
  > .label {
44
44
  width: auto;
45
+ display: flex;
46
+ justify-content: flex-start;
47
+ align-items: center;
48
+ >.node-menu {
49
+ animation: revealelement 0.3s forwards ease-in-out;
50
+ margin-left: 10px;
51
+ }
52
+ >.node-rightelements {
53
+ animation: revealelement 0.3s forwards ease-in-out;
54
+ display: flex;
55
+ justify-content: flex-start;
56
+ align-items: center;
57
+ }
58
+ >.node-toolbarelements {
59
+ animation: revealelement 0.3s forwards ease-in-out;
60
+ width: auto;
61
+ height: 100%;
62
+ margin-left: 10px;
63
+ }
45
64
  &:hover {
46
65
  background-color: rgb(209, 209, 209);
47
66
  }
@@ -53,3 +72,16 @@
53
72
  float: left;
54
73
  }
55
74
  }
75
+
76
+ .nodelist > .treeviewitem > .label > .node-rightelements > .element,
77
+ .treeview-component > .treeviewcontainer > .treeviewitem > .label > .node-rightelements > .element {
78
+ margin-left: 10px;
79
+ display: flex;
80
+ align-items: center;
81
+ height: 100%;
82
+ }
83
+
84
+ .nodelist > .treeviewitem > .label > .node-toolbarelements > .toolbar-group > .buttonbar,
85
+ .treeview-component > .treeviewcontainer > .treeviewitem > .label > .node-toolbarelements > .toolbar-group > .buttonbar {
86
+ border: none;
87
+ }