ids-enterprise 4.6.0-alpha.4 → 4.7.0-beta
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/README.md +0 -6
- package/dist/css/dark-theme.css +239 -104
- package/dist/css/dark-theme.css.map +1 -1
- package/dist/css/dark-theme.min.css +3 -3
- package/dist/css/high-contrast-theme.css +237 -102
- package/dist/css/high-contrast-theme.css.map +1 -1
- package/dist/css/high-contrast-theme.min.css +1 -1
- package/dist/css/light-theme.css +239 -104
- package/dist/css/light-theme.css.map +1 -1
- package/dist/css/light-theme.min.css +3 -3
- package/dist/js/all/environment.js +1 -1
- package/dist/js/all/highlight.js +3 -2
- package/dist/js/cultures/ar-EG.js +1 -1
- package/dist/js/sohoxi.js +59406 -58701
- package/dist/js/sohoxi.js.map +1 -1
- package/dist/js/sohoxi.min.js +3 -3
- package/dist/js/sohoxi.min.js.map +1 -1
- package/package.json +2 -1
- package/sass/_bar.scss +15 -0
- package/sass/_busyindicator.scss +12 -0
- package/sass/_button.scss +20 -2
- package/sass/_colorpicker.scss +7 -0
- package/sass/_hierarchy.scss +196 -175
- package/sass/_input.scss +3 -2
- package/sass/_listview.scss +1 -1
- package/sass/_modal.scss +14 -1
- package/sass/_popupmenu.scss +1 -0
- package/sass/_searchfield.scss +7 -0
- package/sass/_spinbox.scss +10 -1
- package/sass/_typography.scss +3 -3
- package/LICENSE.md +0 -22
package/README.md
CHANGED
|
@@ -31,9 +31,3 @@ You can also find a subset of documentation at [`localhost:4000/components`](htt
|
|
|
31
31
|
## Contacting Us and Updates
|
|
32
32
|
|
|
33
33
|
This project is an open source project. Please see the [contribution guidelines for this project](docs/CONTRIBUTING.md).
|
|
34
|
-
|
|
35
|
-
Please use the internal Infor [Jira issue tracker](http://jira.infor.com/browse/SOHO) to report all requests, bugs, questions, and feature requests.
|
|
36
|
-
|
|
37
|
-
For release updates see our upcoming and past version in our [releases road map](http://jira.infor.com/projects/SOHO?selectedItem=com.atlassian.jira.jira-projects-plugin:release-page).
|
|
38
|
-
|
|
39
|
-
If you're an Infor employee, you can join our [MS Teams Group](https://teams.microsoft.com/l/team/19%3a2b0c9ce520b0481a9ce115f0ca4a326f%40thread.skype/conversations?groupId=4f50ef7d-e88d-4ccb-98ca-65f26e57fe35&tenantId=457d5685-0467-4d05-b23b-8f817adda47c) for updates.
|
package/dist/css/dark-theme.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* Date:
|
|
2
|
+
* IDS Enterprise Components v4.7.0-beta
|
|
3
|
+
* Date: 24/05/2018 6:06:26 PM
|
|
4
4
|
* Revision:
|
|
5
5
|
* License:
|
|
6
6
|
*
|
|
@@ -853,7 +853,6 @@ label,
|
|
|
853
853
|
font-size: 1.2rem;
|
|
854
854
|
color: #abaeb7;
|
|
855
855
|
display: block;
|
|
856
|
-
line-height: 13px;
|
|
857
856
|
margin-bottom: 8px;
|
|
858
857
|
min-height: 13px; }
|
|
859
858
|
|
|
@@ -987,7 +986,8 @@ small,
|
|
|
987
986
|
.align-text-right {
|
|
988
987
|
text-align: right; }
|
|
989
988
|
|
|
990
|
-
.align-text-enter
|
|
989
|
+
.align-text-enter,
|
|
990
|
+
.align-text-center {
|
|
991
991
|
text-align: center; }
|
|
992
992
|
|
|
993
993
|
.center-text {
|
|
@@ -2220,23 +2220,28 @@ a.btn-menu {
|
|
|
2220
2220
|
.btn {
|
|
2221
2221
|
padding: 0 15px; }
|
|
2222
2222
|
|
|
2223
|
-
.btn-tertiary,
|
|
2223
|
+
.btn-tertiary.inverse,
|
|
2224
|
+
.btn-menu.inverse {
|
|
2225
|
+
color: #abaeb7; }
|
|
2226
|
+
.btn-tertiary.inverse .icon,
|
|
2227
|
+
.btn-menu.inverse .icon {
|
|
2228
|
+
fill: #abaeb7; }
|
|
2229
|
+
.btn-tertiary.inverse:hover, .btn-tertiary.inverse.is-open,
|
|
2230
|
+
.btn-menu.inverse:hover,
|
|
2231
|
+
.btn-menu.inverse.is-open {
|
|
2232
|
+
color: #ffffff; }
|
|
2233
|
+
.btn-tertiary.inverse:hover .icon, .btn-tertiary.inverse.is-open .icon,
|
|
2234
|
+
.btn-menu.inverse:hover .icon,
|
|
2235
|
+
.btn-menu.inverse.is-open .icon {
|
|
2236
|
+
fill: #ffffff; }
|
|
2237
|
+
|
|
2238
|
+
.btn-tertiary {
|
|
2239
|
+
padding: 0 10px; }
|
|
2240
|
+
|
|
2224
2241
|
.btn-menu {
|
|
2225
2242
|
padding: 0 10px; }
|
|
2226
|
-
.btn-
|
|
2227
|
-
|
|
2228
|
-
color: #abaeb7; }
|
|
2229
|
-
.btn-tertiary.inverse .icon,
|
|
2230
|
-
.btn-menu.inverse .icon {
|
|
2231
|
-
fill: #abaeb7; }
|
|
2232
|
-
.btn-tertiary.inverse:hover, .btn-tertiary.inverse.is-open,
|
|
2233
|
-
.btn-menu.inverse:hover,
|
|
2234
|
-
.btn-menu.inverse.is-open {
|
|
2235
|
-
color: #ffffff; }
|
|
2236
|
-
.btn-tertiary.inverse:hover .icon, .btn-tertiary.inverse.is-open .icon,
|
|
2237
|
-
.btn-menu.inverse:hover .icon,
|
|
2238
|
-
.btn-menu.inverse.is-open .icon {
|
|
2239
|
-
fill: #ffffff; }
|
|
2243
|
+
.btn-menu.btn-primary, .btn-menu.btn-secondary {
|
|
2244
|
+
padding-right: 20px; }
|
|
2240
2245
|
|
|
2241
2246
|
.btn-icon,
|
|
2242
2247
|
.btn-actions,
|
|
@@ -2448,6 +2453,10 @@ html[dir='rtl'] [class^="btn"] span + * + .icon {
|
|
|
2448
2453
|
html[dir='rtl'] [class^="btn"] span.audible + .icon {
|
|
2449
2454
|
margin-right: 0; }
|
|
2450
2455
|
|
|
2456
|
+
html[dir='rtl'] .btn-menu.btn-primary, html[dir='rtl'] .btn-menu.btn-secondary {
|
|
2457
|
+
padding-left: 20px;
|
|
2458
|
+
padding-right: 10px; }
|
|
2459
|
+
|
|
2451
2460
|
html[lang^='fr-'] [class^="btn"] {
|
|
2452
2461
|
text-transform: none; }
|
|
2453
2462
|
|
|
@@ -3085,8 +3094,8 @@ html[dir='rtl'] .widget-header > button {
|
|
|
3085
3094
|
float: left; }
|
|
3086
3095
|
|
|
3087
3096
|
.compound-field > .field {
|
|
3088
|
-
|
|
3089
|
-
|
|
3097
|
+
line-height: 37px;
|
|
3098
|
+
vertical-align: baseline; }
|
|
3090
3099
|
|
|
3091
3100
|
.compound-field > .field-short {
|
|
3092
3101
|
margin-right: 10px;
|
|
@@ -3670,6 +3679,7 @@ label.required .label-text::after,
|
|
|
3670
3679
|
max-width: 280px;
|
|
3671
3680
|
padding-left: 19px; }
|
|
3672
3681
|
|
|
3682
|
+
.custom-icon-message,
|
|
3673
3683
|
.info-message {
|
|
3674
3684
|
font-size: 12px;
|
|
3675
3685
|
font-size: 1.2rem;
|
|
@@ -3679,6 +3689,7 @@ label.required .label-text::after,
|
|
|
3679
3689
|
margin-top: 7px;
|
|
3680
3690
|
max-width: 300px;
|
|
3681
3691
|
position: relative; }
|
|
3692
|
+
.custom-icon-message .icon,
|
|
3682
3693
|
.info-message .icon {
|
|
3683
3694
|
height: 14px;
|
|
3684
3695
|
left: 0;
|
|
@@ -3687,6 +3698,7 @@ label.required .label-text::after,
|
|
|
3687
3698
|
position: absolute;
|
|
3688
3699
|
top: 0;
|
|
3689
3700
|
width: 14px; }
|
|
3701
|
+
.custom-icon-message .message-text,
|
|
3690
3702
|
.info-message .message-text {
|
|
3691
3703
|
font-size: inherit;
|
|
3692
3704
|
line-height: 15px;
|
|
@@ -7146,13 +7158,20 @@ html[dir='rtl'] .field-short div.dropdown > .listoption-icon {
|
|
|
7146
7158
|
.modal .field textarea.input-lg {
|
|
7147
7159
|
min-height: inherit;
|
|
7148
7160
|
width: 400px; }
|
|
7149
|
-
.modal .field:
|
|
7161
|
+
.modal .field:first-child .audible ~ input:not(.spinbox):not(.colorpicker),
|
|
7162
|
+
.modal .field:first-child .audible ~ .searchfield-wrapper {
|
|
7163
|
+
margin-top: 4px; }
|
|
7164
|
+
.modal .field:first-child .checkbox-label {
|
|
7165
|
+
margin-top: 2px; }
|
|
7166
|
+
.modal .field:last-child .checkbox-label {
|
|
7167
|
+
margin-bottom: 1px; }
|
|
7168
|
+
.modal .field:last-child input:not(.spinbox):not(.colorpicker):not(.searchfield),
|
|
7150
7169
|
.modal .field:last-child .dropdown,
|
|
7151
7170
|
.modal .field:last-child textarea,
|
|
7152
7171
|
.modal .field:last-child .spinbox-wrapper,
|
|
7153
7172
|
.modal .field:last-child .colorpicker-container {
|
|
7154
7173
|
margin-bottom: 10px; }
|
|
7155
|
-
.modal .field:last-child input:not(.spinbox):not(.colorpicker) + .error-message,
|
|
7174
|
+
.modal .field:last-child input:not(.spinbox):not(.colorpicker):not(.searchfield) + .error-message,
|
|
7156
7175
|
.modal .field:last-child .dropdown + .error-message,
|
|
7157
7176
|
.modal .field:last-child textarea + .error-message,
|
|
7158
7177
|
.modal .field:last-child .spinbox-wrapper + .error-message,
|
|
@@ -7823,6 +7842,7 @@ html[dir='rtl'] .slider-wrapper:not(.vertical) > .tick > .label {
|
|
|
7823
7842
|
color: #ffffff;
|
|
7824
7843
|
display: block;
|
|
7825
7844
|
line-height: 32px;
|
|
7845
|
+
min-height: 34px;
|
|
7826
7846
|
padding: 0 30px 0 10px;
|
|
7827
7847
|
position: relative;
|
|
7828
7848
|
text-decoration: none;
|
|
@@ -9284,7 +9304,7 @@ html[dir='rtl'] .sidebar .tree {
|
|
|
9284
9304
|
height: 15px;
|
|
9285
9305
|
left: 0;
|
|
9286
9306
|
width: 15px; }
|
|
9287
|
-
.icon-favorite {
|
|
9307
|
+
.listview .icon-favorite {
|
|
9288
9308
|
top: 10px; } }
|
|
9289
9309
|
|
|
9290
9310
|
.ios .listview .icon-error,
|
|
@@ -12853,7 +12873,7 @@ input::-webkit-inner-spin-button {
|
|
|
12853
12873
|
height: 34px;
|
|
12854
12874
|
line-height: normal;
|
|
12855
12875
|
overflow: hidden;
|
|
12856
|
-
padding:
|
|
12876
|
+
padding: 7px 10px;
|
|
12857
12877
|
position: relative;
|
|
12858
12878
|
resize: none;
|
|
12859
12879
|
text-align: center;
|
|
@@ -12908,6 +12928,11 @@ input::-webkit-inner-spin-button {
|
|
|
12908
12928
|
color: #656871;
|
|
12909
12929
|
cursor: default;
|
|
12910
12930
|
-webkit-text-fill-color: #656871; }
|
|
12931
|
+
.spinbox-wrapper.is-readonly > .spinbox-control {
|
|
12932
|
+
background-color: #50535a;
|
|
12933
|
+
color: #ffffff;
|
|
12934
|
+
cursor: default;
|
|
12935
|
+
-webkit-text-fill-color: #ffffff; }
|
|
12911
12936
|
.spinbox-wrapper .ripple-effect {
|
|
12912
12937
|
background-color: #8dc9e6; }
|
|
12913
12938
|
|
|
@@ -13651,6 +13676,7 @@ html[dir='rtl'] .field-short .datepicker {
|
|
|
13651
13676
|
width: 22px; }
|
|
13652
13677
|
.popupmenu.colorpicker li a {
|
|
13653
13678
|
border: 1px solid #414247;
|
|
13679
|
+
min-height: auto;
|
|
13654
13680
|
padding: 0; }
|
|
13655
13681
|
.popupmenu.colorpicker li a:focus {
|
|
13656
13682
|
box-shadow: 0 0 4px 2px rgba(141, 201, 230, 0.3);
|
|
@@ -13674,6 +13700,8 @@ html[dir='rtl'] .field-short .datepicker {
|
|
|
13674
13700
|
border-color: #737373 #737373 #737373 transparent; }
|
|
13675
13701
|
.popupmenu.colorpicker li a.is-selected.checkmark-two::after {
|
|
13676
13702
|
border-color: #ffffff #ffffff #ffffff transparent; }
|
|
13703
|
+
.popupmenu.colorpicker.popupmenu-short.has-icons li a {
|
|
13704
|
+
padding: 0; }
|
|
13677
13705
|
.popupmenu.colorpicker .swatch {
|
|
13678
13706
|
background-color: #999999;
|
|
13679
13707
|
display: block;
|
|
@@ -14113,6 +14141,13 @@ input + .busy-indicator-container,
|
|
|
14113
14141
|
.busy-sm .busy-indicator .bar:last-child {
|
|
14114
14142
|
margin-right: 0; }
|
|
14115
14143
|
|
|
14144
|
+
body {
|
|
14145
|
+
opacity: 1;
|
|
14146
|
+
transition: opacity .25s ease-in-out; }
|
|
14147
|
+
|
|
14148
|
+
.busy-loading-locale {
|
|
14149
|
+
opacity: 0; }
|
|
14150
|
+
|
|
14116
14151
|
html[dir='rtl'] .busy-indicator .bar {
|
|
14117
14152
|
margin-left: 5px;
|
|
14118
14153
|
margin-right: 0; }
|
|
@@ -14443,6 +14478,8 @@ html[dir='rtl'] .toast-progress {
|
|
|
14443
14478
|
color: #368ac0; }
|
|
14444
14479
|
.searchfield-wrapper.has-focus .searchfield {
|
|
14445
14480
|
border-color: #368ac0; }
|
|
14481
|
+
.searchfield-wrapper.has-focus input:focus {
|
|
14482
|
+
box-shadow: none; }
|
|
14446
14483
|
.searchfield-wrapper.has-focus.has-categories .searchfield {
|
|
14447
14484
|
border-left-color: transparent;
|
|
14448
14485
|
box-shadow: none; }
|
|
@@ -14501,6 +14538,8 @@ html[dir='rtl'] .toast-progress {
|
|
|
14501
14538
|
padding: 0 5px;
|
|
14502
14539
|
position: absolute;
|
|
14503
14540
|
width: 40px; }
|
|
14541
|
+
.searchfield-wrapper + .error-message {
|
|
14542
|
+
margin-top: -7px; }
|
|
14504
14543
|
|
|
14505
14544
|
.inline.searchfield-wrapper:not(.toolbar-searchfield-wrapper) > .icon:not(.icon-error) {
|
|
14506
14545
|
top: 30px; }
|
|
@@ -18017,20 +18056,11 @@ html[dir='rtl'] .wizard-toolbar .wizard {
|
|
|
18017
18056
|
.popdown .modal-buttonset {
|
|
18018
18057
|
margin: 0; }
|
|
18019
18058
|
|
|
18020
|
-
.vertical-line, .hierarchy .container .chart.display-for-paging::after, .hierarchy .container .chart.display-for-paging .back::after, .hierarchy .container .sub-level .sublist::before, .hierarchy .root::after, .hierarchy .root + .sub-level::before, .hierarchy .top-level::after {
|
|
18021
|
-
background: #888b94 none repeat scroll 0 0;
|
|
18022
|
-
content: '';
|
|
18023
|
-
position: absolute;
|
|
18024
|
-
width: 1.34px;
|
|
18025
|
-
z-index: -1; }
|
|
18026
|
-
|
|
18027
18059
|
.hierarchy {
|
|
18028
18060
|
margin: 0;
|
|
18029
|
-
padding: 20px
|
|
18030
|
-
.hierarchy .branch-collapsed {
|
|
18031
|
-
|
|
18032
|
-
.hierarchy .branch-collapsed > ul * {
|
|
18033
|
-
display: none; }
|
|
18061
|
+
padding: 20px; }
|
|
18062
|
+
.hierarchy .branch-collapsed > ul * {
|
|
18063
|
+
display: none; }
|
|
18034
18064
|
.hierarchy legend {
|
|
18035
18065
|
font-size: 14px;
|
|
18036
18066
|
font-size: 1.4rem;
|
|
@@ -18044,7 +18074,7 @@ html[dir='rtl'] .wizard-toolbar .wizard {
|
|
|
18044
18074
|
display: inline-block;
|
|
18045
18075
|
float: left;
|
|
18046
18076
|
height: 15px;
|
|
18047
|
-
margin:
|
|
18077
|
+
margin: 0 10px;
|
|
18048
18078
|
width: 15px; }
|
|
18049
18079
|
.hierarchy .container {
|
|
18050
18080
|
display: table;
|
|
@@ -18058,37 +18088,45 @@ html[dir='rtl'] .wizard-toolbar .wizard {
|
|
|
18058
18088
|
.hierarchy .container .chart {
|
|
18059
18089
|
position: relative; }
|
|
18060
18090
|
.hierarchy .container .chart.display-for-paging::after {
|
|
18061
|
-
|
|
18062
|
-
|
|
18063
|
-
|
|
18064
|
-
|
|
18065
|
-
|
|
18091
|
+
background: #888b94 none repeat scroll 0 0;
|
|
18092
|
+
content: '';
|
|
18093
|
+
position: absolute;
|
|
18094
|
+
width: 1.34px;
|
|
18095
|
+
z-index: -1;
|
|
18096
|
+
height: calc(100% - 124px);
|
|
18066
18097
|
left: 0;
|
|
18067
|
-
top:
|
|
18098
|
+
top: 38px; }
|
|
18068
18099
|
.hierarchy .container .chart.display-for-paging .back {
|
|
18069
|
-
|
|
18100
|
+
left: -245px;
|
|
18101
|
+
position: relative;
|
|
18102
|
+
top: 55px; }
|
|
18070
18103
|
.hierarchy .container .chart.display-for-paging .back button {
|
|
18071
|
-
background: #
|
|
18104
|
+
background: #368ac0;
|
|
18072
18105
|
color: #ffffff;
|
|
18073
18106
|
display: block;
|
|
18074
18107
|
margin: 0 auto;
|
|
18075
18108
|
max-width: 36px; }
|
|
18076
|
-
|
|
18077
|
-
|
|
18078
|
-
left: 50%;
|
|
18079
|
-
top: 0; }
|
|
18109
|
+
.hierarchy .container .chart.display-for-paging .back button svg {
|
|
18110
|
+
fill: #ffffff; }
|
|
18080
18111
|
.hierarchy .container .chart.display-for-paging .root {
|
|
18112
|
+
margin-left: -30px !important;
|
|
18081
18113
|
overflow: visible;
|
|
18082
18114
|
position: relative; }
|
|
18083
18115
|
.hierarchy .container .chart.display-for-paging .root::after {
|
|
18084
18116
|
content: '';
|
|
18085
18117
|
display: block;
|
|
18086
18118
|
height: 1.34px;
|
|
18087
|
-
left:
|
|
18119
|
+
left: 0;
|
|
18088
18120
|
position: absolute;
|
|
18089
18121
|
top: 50%;
|
|
18090
18122
|
width: 50%;
|
|
18091
18123
|
z-index: -1; }
|
|
18124
|
+
.hierarchy .container .chart.display-for-paging.has-back .root::after {
|
|
18125
|
+
left: -25px; }
|
|
18126
|
+
.hierarchy .container .chart.has-back::after {
|
|
18127
|
+
height: calc(100% - 170px);
|
|
18128
|
+
left: 0;
|
|
18129
|
+
top: 84px; }
|
|
18092
18130
|
.hierarchy .container .chart.has-single-child .sub-level > li:last-child::before,
|
|
18093
18131
|
.hierarchy .container .chart.has-single-child .sub-level > li:first-child::before,
|
|
18094
18132
|
.hierarchy .container .chart.has-single-child .sub-level > li::before {
|
|
@@ -18096,7 +18134,7 @@ html[dir='rtl'] .wizard-toolbar .wizard {
|
|
|
18096
18134
|
.hierarchy .container .chart.has-single-child .root {
|
|
18097
18135
|
margin: 0; }
|
|
18098
18136
|
.hierarchy .container .chart.has-single-child .root + .sub-level::before {
|
|
18099
|
-
height:
|
|
18137
|
+
height: 66px;
|
|
18100
18138
|
left: 20px; }
|
|
18101
18139
|
.hierarchy .container .chart.has-single-child .root + .sub-level > li .leaf::before {
|
|
18102
18140
|
border-bottom: 1.34px solid #888b94;
|
|
@@ -18107,10 +18145,8 @@ html[dir='rtl'] .wizard-toolbar .wizard {
|
|
|
18107
18145
|
left: -30px;
|
|
18108
18146
|
position: absolute;
|
|
18109
18147
|
top: -65px;
|
|
18110
|
-
width: 50
|
|
18148
|
+
width: calc(50% + 2px);
|
|
18111
18149
|
z-index: -1; }
|
|
18112
|
-
.hierarchy .container .chart.has-single-child .sub-level {
|
|
18113
|
-
padding-left: 35px; }
|
|
18114
18150
|
.hierarchy .container .sub-level > li > ul .leaf::before {
|
|
18115
18151
|
border-bottom: 1.34px solid #888b94;
|
|
18116
18152
|
border-left: 1.34px solid #888b94;
|
|
@@ -18124,9 +18160,22 @@ html[dir='rtl'] .wizard-toolbar .wizard {
|
|
|
18124
18160
|
z-index: -1; }
|
|
18125
18161
|
.hierarchy .container .sub-level > li ul {
|
|
18126
18162
|
position: relative; }
|
|
18127
|
-
.hierarchy .container .sub-level .
|
|
18128
|
-
|
|
18129
|
-
|
|
18163
|
+
.hierarchy .container .sub-level > li.branch-expanded > ul > li.branch-expanded:not(:last-child)::after {
|
|
18164
|
+
border-left: 1.34px solid #888b94;
|
|
18165
|
+
content: '';
|
|
18166
|
+
height: 100%;
|
|
18167
|
+
left: -25px;
|
|
18168
|
+
position: absolute;
|
|
18169
|
+
top: 0; }
|
|
18170
|
+
.hierarchy .container .chart:not(.has-single-child) > .sub-level > li.branch-expanded:last-child::after {
|
|
18171
|
+
background-color: #313236;
|
|
18172
|
+
content: '';
|
|
18173
|
+
height: 100%;
|
|
18174
|
+
left: 13px;
|
|
18175
|
+
margin-top: calc(-100% + 53px);
|
|
18176
|
+
position: absolute;
|
|
18177
|
+
width: 52px;
|
|
18178
|
+
z-index: -1; }
|
|
18130
18179
|
.hierarchy .leaf {
|
|
18131
18180
|
background-color: #414247;
|
|
18132
18181
|
border: 1px solid #656871;
|
|
@@ -18234,21 +18283,38 @@ html[dir='rtl'] .wizard-toolbar .wizard {
|
|
|
18234
18283
|
margin: 0 auto;
|
|
18235
18284
|
position: relative; }
|
|
18236
18285
|
.hierarchy .root::after {
|
|
18286
|
+
background: #888b94 none repeat scroll 0 0;
|
|
18287
|
+
content: '';
|
|
18288
|
+
position: absolute;
|
|
18289
|
+
width: 1.34px;
|
|
18290
|
+
z-index: -1;
|
|
18237
18291
|
bottom: 0;
|
|
18238
18292
|
height: 50%;
|
|
18239
18293
|
left: 50%; }
|
|
18240
18294
|
.hierarchy .root + .sub-level {
|
|
18241
|
-
padding-
|
|
18295
|
+
padding-bottom: 5px;
|
|
18296
|
+
padding-left: 35px;
|
|
18297
|
+
padding-top: 25px; }
|
|
18242
18298
|
.hierarchy .root + .sub-level::before {
|
|
18243
|
-
|
|
18299
|
+
background: #888b94 none repeat scroll 0 0;
|
|
18300
|
+
content: '';
|
|
18301
|
+
position: absolute;
|
|
18302
|
+
width: 1.34px;
|
|
18303
|
+
z-index: -1;
|
|
18304
|
+
height: 32px;
|
|
18244
18305
|
left: 50%;
|
|
18245
18306
|
top: 0; }
|
|
18246
18307
|
.hierarchy .top-level {
|
|
18247
18308
|
overflow: hidden;
|
|
18248
|
-
padding:
|
|
18309
|
+
padding: 30px 0;
|
|
18249
18310
|
position: relative;
|
|
18250
18311
|
text-align: center; }
|
|
18251
18312
|
.hierarchy .top-level::after {
|
|
18313
|
+
background: #888b94 none repeat scroll 0 0;
|
|
18314
|
+
content: '';
|
|
18315
|
+
position: absolute;
|
|
18316
|
+
width: 1.34px;
|
|
18317
|
+
z-index: -1;
|
|
18252
18318
|
height: 100%;
|
|
18253
18319
|
left: 50%;
|
|
18254
18320
|
top: 0; }
|
|
@@ -18260,7 +18326,7 @@ html[dir='rtl'] .wizard-toolbar .wizard {
|
|
|
18260
18326
|
.hierarchy .top-level li:last-child::before {
|
|
18261
18327
|
border-top: 0; }
|
|
18262
18328
|
.hierarchy .child-nodes {
|
|
18263
|
-
padding:
|
|
18329
|
+
padding: 30px 0;
|
|
18264
18330
|
position: relative; }
|
|
18265
18331
|
.hierarchy .child-nodes > li .leaf {
|
|
18266
18332
|
margin: 0 0 20px 40px;
|
|
@@ -18282,7 +18348,7 @@ html[dir='rtl'] .wizard-toolbar .wizard {
|
|
|
18282
18348
|
white-space: nowrap; }
|
|
18283
18349
|
.hierarchy .sub-level > li {
|
|
18284
18350
|
display: inline-block;
|
|
18285
|
-
padding:
|
|
18351
|
+
padding: 5px 10px;
|
|
18286
18352
|
vertical-align: top; }
|
|
18287
18353
|
.hierarchy .sub-level > li:first-child::before {
|
|
18288
18354
|
border-left: 1.34px solid #888b94;
|
|
@@ -18314,18 +18380,12 @@ html[dir='rtl'] .wizard-toolbar .wizard {
|
|
|
18314
18380
|
padding-left: 45px;
|
|
18315
18381
|
padding-right: 5px; }
|
|
18316
18382
|
.hierarchy .sub-level li ul li {
|
|
18317
|
-
margin:
|
|
18383
|
+
margin: 30px 0;
|
|
18318
18384
|
position: relative; }
|
|
18319
|
-
.hierarchy .sub-level li ul li
|
|
18320
|
-
|
|
18321
|
-
|
|
18322
|
-
|
|
18323
|
-
height: 90px;
|
|
18324
|
-
margin-left: -27px;
|
|
18325
|
-
margin-top: -52px;
|
|
18326
|
-
position: absolute;
|
|
18327
|
-
width: 30px;
|
|
18328
|
-
z-index: -1; }
|
|
18385
|
+
.hierarchy .sub-level li ul li:last-child:not(:first-child) {
|
|
18386
|
+
margin: 5px 0; }
|
|
18387
|
+
.hierarchy .image-user-status {
|
|
18388
|
+
display: block; }
|
|
18329
18389
|
|
|
18330
18390
|
@media (max-width: 610px) {
|
|
18331
18391
|
.hierarchy {
|
|
@@ -18339,7 +18399,7 @@ html[dir='rtl'] .wizard-toolbar .wizard {
|
|
|
18339
18399
|
.hierarchy .container {
|
|
18340
18400
|
display: inline-block;
|
|
18341
18401
|
margin: 0; }
|
|
18342
|
-
.hierarchy .container .chart
|
|
18402
|
+
.hierarchy .container .chart .sub-level {
|
|
18343
18403
|
padding-left: 45px; }
|
|
18344
18404
|
.hierarchy .root {
|
|
18345
18405
|
margin: 0; }
|
|
@@ -18347,6 +18407,27 @@ html[dir='rtl'] .wizard-toolbar .wizard {
|
|
|
18347
18407
|
background: transparent;
|
|
18348
18408
|
height: 0;
|
|
18349
18409
|
width: 0; }
|
|
18410
|
+
.hierarchy .root + .sub-level .leaf::before {
|
|
18411
|
+
background-color: transparent;
|
|
18412
|
+
border-bottom: 1px solid #888b94;
|
|
18413
|
+
content: '';
|
|
18414
|
+
height: 1px;
|
|
18415
|
+
left: -29px;
|
|
18416
|
+
position: absolute;
|
|
18417
|
+
top: 35px;
|
|
18418
|
+
width: 24px; }
|
|
18419
|
+
.hierarchy .root + .sub-level::before {
|
|
18420
|
+
background-color: transparent;
|
|
18421
|
+
border-bottom: 1px solid #888b94;
|
|
18422
|
+
border-left: 1px solid #888b94;
|
|
18423
|
+
height: calc(100% - 73px);
|
|
18424
|
+
left: 20px;
|
|
18425
|
+
width: 300px;
|
|
18426
|
+
z-index: -1; }
|
|
18427
|
+
.hierarchy .display-for-paging {
|
|
18428
|
+
left: 40px; }
|
|
18429
|
+
.hierarchy .display-for-paging .root::after {
|
|
18430
|
+
background-color: #888b94; }
|
|
18350
18431
|
.hierarchy .sub-level {
|
|
18351
18432
|
margin-left: 0; }
|
|
18352
18433
|
.hierarchy .top-level::after {
|
|
@@ -18363,9 +18444,73 @@ html[dir='rtl'] .wizard-toolbar .wizard {
|
|
|
18363
18444
|
display: none; }
|
|
18364
18445
|
.hierarchy .sub-level > li {
|
|
18365
18446
|
display: block;
|
|
18366
|
-
padding: 0;
|
|
18447
|
+
padding: 0;
|
|
18448
|
+
padding-bottom: 30px; }
|
|
18367
18449
|
.hierarchy .sub-level > li.branch-collapsed {
|
|
18368
|
-
padding-bottom: 30px;
|
|
18450
|
+
padding-bottom: 30px;
|
|
18451
|
+
padding-right: 5px; } }
|
|
18452
|
+
|
|
18453
|
+
.is-mobile {
|
|
18454
|
+
margin: 0 auto;
|
|
18455
|
+
text-align: center; }
|
|
18456
|
+
.is-mobile legend {
|
|
18457
|
+
text-align: left; }
|
|
18458
|
+
.is-mobile legend li {
|
|
18459
|
+
margin-bottom: 10px;
|
|
18460
|
+
text-align: center; }
|
|
18461
|
+
.is-mobile .container {
|
|
18462
|
+
display: inline-block;
|
|
18463
|
+
margin: 0; }
|
|
18464
|
+
.is-mobile .container .chart .sub-level {
|
|
18465
|
+
padding-left: 45px; }
|
|
18466
|
+
.is-mobile .root {
|
|
18467
|
+
margin: 0; }
|
|
18468
|
+
.is-mobile .root::after {
|
|
18469
|
+
background: transparent;
|
|
18470
|
+
height: 0;
|
|
18471
|
+
width: 0; }
|
|
18472
|
+
.is-mobile .root + .sub-level .leaf::before {
|
|
18473
|
+
background-color: transparent;
|
|
18474
|
+
border-bottom: 1px solid #888b94;
|
|
18475
|
+
content: '';
|
|
18476
|
+
height: 1px;
|
|
18477
|
+
left: -29px;
|
|
18478
|
+
position: absolute;
|
|
18479
|
+
top: 35px;
|
|
18480
|
+
width: 24px; }
|
|
18481
|
+
.is-mobile .root + .sub-level::before {
|
|
18482
|
+
background-color: transparent;
|
|
18483
|
+
border-bottom: 1px solid #888b94;
|
|
18484
|
+
border-left: 1px solid #888b94;
|
|
18485
|
+
height: calc(100% - 73px);
|
|
18486
|
+
left: 20px;
|
|
18487
|
+
width: 300px;
|
|
18488
|
+
z-index: -1; }
|
|
18489
|
+
.is-mobile .display-for-paging {
|
|
18490
|
+
left: 40px; }
|
|
18491
|
+
.is-mobile .display-for-paging .root::after {
|
|
18492
|
+
background-color: #888b94; }
|
|
18493
|
+
.is-mobile .sub-level {
|
|
18494
|
+
margin-left: 0; }
|
|
18495
|
+
.is-mobile .top-level::after {
|
|
18496
|
+
left: 158px; }
|
|
18497
|
+
.is-mobile .top-level li {
|
|
18498
|
+
display: block;
|
|
18499
|
+
padding: 10px 0; }
|
|
18500
|
+
.is-mobile .top-level > li:first-child::before,
|
|
18501
|
+
.is-mobile .sub-level > li:first-child::before,
|
|
18502
|
+
.is-mobile .sub-level > li::before,
|
|
18503
|
+
.is-mobile .top-level > li::before,
|
|
18504
|
+
.is-mobile .sub-level > li:last-child::before,
|
|
18505
|
+
.is-mobile .top-level > li:last-child::before {
|
|
18506
|
+
display: none; }
|
|
18507
|
+
.is-mobile .sub-level > li {
|
|
18508
|
+
display: block;
|
|
18509
|
+
padding: 0;
|
|
18510
|
+
padding-bottom: 30px; }
|
|
18511
|
+
.is-mobile .sub-level > li.branch-collapsed {
|
|
18512
|
+
padding-bottom: 30px;
|
|
18513
|
+
padding-right: 5px; }
|
|
18369
18514
|
|
|
18370
18515
|
html[dir='rtl'] .hierarchy legend li {
|
|
18371
18516
|
margin-left: 20px;
|
|
@@ -18412,9 +18557,10 @@ html[dir='rtl'] .hierarchy .leaf {
|
|
|
18412
18557
|
left: auto;
|
|
18413
18558
|
right: 0; }
|
|
18414
18559
|
|
|
18415
|
-
html[dir='rtl'] .hierarchy ul > li > .leaf .btn-expand
|
|
18560
|
+
html[dir='rtl'] .hierarchy ul > li > .leaf .btn-expand,
|
|
18561
|
+
html[dir='rtl'] .hierarchy ul > li > .leaf .btn-collapse {
|
|
18416
18562
|
left: auto;
|
|
18417
|
-
right: -
|
|
18563
|
+
right: calc(100% - 40px); }
|
|
18418
18564
|
|
|
18419
18565
|
html[dir='rtl'] .hierarchy .root::after {
|
|
18420
18566
|
margin-left: inherit;
|
|
@@ -18429,40 +18575,24 @@ html[dir='rtl'] .hierarchy .sub-level > li::before {
|
|
|
18429
18575
|
border-left: 0 solid #888b94;
|
|
18430
18576
|
border-right: 1.34px solid #888b94;
|
|
18431
18577
|
margin-left: inherit;
|
|
18432
|
-
margin-right:
|
|
18578
|
+
margin-right: 160px;
|
|
18579
|
+
width: 110%; }
|
|
18433
18580
|
|
|
18434
18581
|
html[dir='rtl'] .hierarchy .sub-level > li:last-child::before {
|
|
18582
|
+
margin-left: 127px;
|
|
18435
18583
|
width: 0; }
|
|
18436
18584
|
|
|
18585
|
+
html[dir='rtl'] .hierarchy .sub-level > li > ul .leaf::before {
|
|
18586
|
+
border-left: 0;
|
|
18587
|
+
border-right: 1.34px solid #888b94;
|
|
18588
|
+
left: auto;
|
|
18589
|
+
right: -35px; }
|
|
18590
|
+
|
|
18437
18591
|
html[dir='rtl'] .hierarchy .sub-level li ul {
|
|
18438
18592
|
margin-left: inherit;
|
|
18439
18593
|
margin-right: 45px;
|
|
18440
18594
|
padding-left: 5px;
|
|
18441
18595
|
padding-right: 30px; }
|
|
18442
|
-
html[dir='rtl'] .hierarchy .sub-level li ul li .ln {
|
|
18443
|
-
border-left: 0 solid #888b94;
|
|
18444
|
-
border-right: 1.34px solid #888b94;
|
|
18445
|
-
margin-left: inherit;
|
|
18446
|
-
margin-right: -27px; }
|
|
18447
|
-
|
|
18448
|
-
@media (max-width: 610px) {
|
|
18449
|
-
html[dir='rtl'] .hierarchy .root::after {
|
|
18450
|
-
margin-left: inherit;
|
|
18451
|
-
margin-right: -205px; }
|
|
18452
|
-
html[dir='rtl'] .hierarchy ul > li > .leaf {
|
|
18453
|
-
margin: 0 20px; }
|
|
18454
|
-
html[dir='rtl'] .hierarchy .top-level li::before {
|
|
18455
|
-
border-left: 0 solid #888b94;
|
|
18456
|
-
border-right: 1.34px solid #888b94;
|
|
18457
|
-
margin-left: inherit;
|
|
18458
|
-
margin-right: -149px; }
|
|
18459
|
-
html[dir='rtl'] .hierarchy .sub-level > li::before {
|
|
18460
|
-
border-left: 0 solid #888b94;
|
|
18461
|
-
border-right: 1.34px solid #888b94;
|
|
18462
|
-
margin-left: inherit;
|
|
18463
|
-
margin-right: -149px; }
|
|
18464
|
-
html[dir='rtl'] .hierarchy .sub-level > li ul {
|
|
18465
|
-
padding-left: 34px; } }
|
|
18466
18596
|
|
|
18467
18597
|
.toolbar-searchfield-wrapper {
|
|
18468
18598
|
box-shadow: none !important;
|
|
@@ -20525,6 +20655,11 @@ html[dir='rtl'] .chart-container.chart-vertical-bar svg {
|
|
|
20525
20655
|
.chart-container.bar-chart .chart-legend {
|
|
20526
20656
|
margin-top: 5px; }
|
|
20527
20657
|
|
|
20658
|
+
html[dir='rtl'] .chart-container.bar-chart svg {
|
|
20659
|
+
transform: scale(-1, 1); }
|
|
20660
|
+
html[dir='rtl'] .chart-container.bar-chart svg text {
|
|
20661
|
+
transform: scale(-1, 1); }
|
|
20662
|
+
|
|
20528
20663
|
.chart-container.column-chart .domain {
|
|
20529
20664
|
stroke: transparent; }
|
|
20530
20665
|
|