@esfaenza/core 15.2.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.
Files changed (180) hide show
  1. package/README.md +24 -0
  2. package/components/back-top/back-top.component.d.ts +12 -0
  3. package/components/breadcrumb/breadcrumb.component.d.ts +15 -0
  4. package/components/components.module.d.ts +25 -0
  5. package/components/error/404/pagenotfound.component.d.ts +13 -0
  6. package/components/error/500/servererror.component.d.ts +17 -0
  7. package/components/error/Angular/angularerror.component.d.ts +24 -0
  8. package/components/external-page/external_pages.component.d.ts +21 -0
  9. package/components/index.d.ts +5 -0
  10. package/components/jace-login/jace-login.component.d.ts +7 -0
  11. package/components/navbar/modules-board/jace-modules-board.component.d.ts +13 -0
  12. package/components/navbar/navbar.component.d.ts +60 -0
  13. package/components/navbar/navbar.component.loc.d.ts +8 -0
  14. package/components/page/pages.component.d.ts +23 -0
  15. package/components/public-api.d.ts +13 -0
  16. package/components/redirecter/redirecter.component.d.ts +19 -0
  17. package/components/sidebar/sidebar.component.d.ts +39 -0
  18. package/components/sidebar/sidebar.component.service.d.ts +27 -0
  19. package/directives/directives.module.d.ts +9 -0
  20. package/directives/draggable/draggable.directive.d.ts +13 -0
  21. package/directives/index.d.ts +5 -0
  22. package/directives/public-api.d.ts +4 -0
  23. package/directives/slim-scroll/slim-scroll.directive.d.ts +15 -0
  24. package/directives/widget/widget.directive.d.ts +9 -0
  25. package/domain/index.d.ts +5 -0
  26. package/domain/models/core/classes/ApplicationMenu.d.ts +16 -0
  27. package/domain/models/core/classes/EnvOptions.d.ts +14 -0
  28. package/domain/models/jace/classes/AccountScope.d.ts +9 -0
  29. package/domain/models/jace/classes/ActiveModuleView.d.ts +15 -0
  30. package/domain/models/jace/classes/JaceAccount.d.ts +26 -0
  31. package/domain/models/jace/classes/JaceIdentity.d.ts +17 -0
  32. package/domain/models/jace/classes/JaceModule.d.ts +6 -0
  33. package/domain/models/jace/classes/JacePermission.d.ts +9 -0
  34. package/domain/models/jace/classes/JaceRole.d.ts +11 -0
  35. package/domain/models/jace/classes/User.d.ts +4 -0
  36. package/domain/public-api.d.ts +11 -0
  37. package/domain/tokens.d.ts +16 -0
  38. package/esm2020/components/back-top/back-top.component.mjs +43 -0
  39. package/esm2020/components/breadcrumb/breadcrumb.component.mjs +55 -0
  40. package/esm2020/components/components.module.mjs +74 -0
  41. package/esm2020/components/error/404/pagenotfound.component.mjs +27 -0
  42. package/esm2020/components/error/500/servererror.component.mjs +35 -0
  43. package/esm2020/components/error/Angular/angularerror.component.mjs +50 -0
  44. package/esm2020/components/esfaenza-core-components.mjs +5 -0
  45. package/esm2020/components/external-page/external_pages.component.mjs +46 -0
  46. package/esm2020/components/jace-login/jace-login.component.mjs +17 -0
  47. package/esm2020/components/navbar/modules-board/jace-modules-board.component.mjs +40 -0
  48. package/esm2020/components/navbar/navbar.component.loc.mjs +36 -0
  49. package/esm2020/components/navbar/navbar.component.mjs +179 -0
  50. package/esm2020/components/page/pages.component.mjs +57 -0
  51. package/esm2020/components/public-api.mjs +14 -0
  52. package/esm2020/components/redirecter/redirecter.component.mjs +53 -0
  53. package/esm2020/components/sidebar/sidebar.component.mjs +179 -0
  54. package/esm2020/components/sidebar/sidebar.component.service.mjs +58 -0
  55. package/esm2020/directives/directives.module.mjs +18 -0
  56. package/esm2020/directives/draggable/draggable.directive.mjs +48 -0
  57. package/esm2020/directives/esfaenza-core-directives.mjs +5 -0
  58. package/esm2020/directives/public-api.mjs +5 -0
  59. package/esm2020/directives/slim-scroll/slim-scroll.directive.mjs +40 -0
  60. package/esm2020/directives/widget/widget.directive.mjs +36 -0
  61. package/esm2020/domain/esfaenza-core-domain.mjs +5 -0
  62. package/esm2020/domain/models/core/classes/ApplicationMenu.mjs +26 -0
  63. package/esm2020/domain/models/core/classes/EnvOptions.mjs +4 -0
  64. package/esm2020/domain/models/jace/classes/AccountScope.mjs +8 -0
  65. package/esm2020/domain/models/jace/classes/ActiveModuleView.mjs +9 -0
  66. package/esm2020/domain/models/jace/classes/JaceAccount.mjs +5 -0
  67. package/esm2020/domain/models/jace/classes/JaceIdentity.mjs +16 -0
  68. package/esm2020/domain/models/jace/classes/JaceModule.mjs +3 -0
  69. package/esm2020/domain/models/jace/classes/JacePermission.mjs +3 -0
  70. package/esm2020/domain/models/jace/classes/JaceRole.mjs +3 -0
  71. package/esm2020/domain/models/jace/classes/User.mjs +3 -0
  72. package/esm2020/domain/public-api.mjs +12 -0
  73. package/esm2020/domain/tokens.mjs +11 -0
  74. package/esm2020/esfaenza-core.mjs +5 -0
  75. package/esm2020/helpers/classes/ResizeListener.mjs +38 -0
  76. package/esm2020/helpers/esfaenza-core-helpers.mjs +5 -0
  77. package/esm2020/helpers/public-api.mjs +2 -0
  78. package/esm2020/lib/app.component.mjs +26 -0
  79. package/esm2020/lib/core.module.mjs +227 -0
  80. package/esm2020/modules/classes/_base.module.mjs +27 -0
  81. package/esm2020/modules/classes/t_c.module.mjs +85 -0
  82. package/esm2020/modules/esfaenza-core-modules.mjs +5 -0
  83. package/esm2020/modules/public-api.mjs +3 -0
  84. package/esm2020/pipes/esfaenza-core-pipes.mjs +5 -0
  85. package/esm2020/pipes/included_in/included_in.pipe.mjs +17 -0
  86. package/esm2020/pipes/pipes.module.mjs +20 -0
  87. package/esm2020/pipes/public-api.mjs +7 -0
  88. package/esm2020/pipes/safe_html/safe_html.pipe.mjs +18 -0
  89. package/esm2020/pipes/safe_script/safe_script.pipe.mjs +18 -0
  90. package/esm2020/pipes/safe_style/safe_style.pipe.mjs +18 -0
  91. package/esm2020/pipes/safe_url/safe_url.pipe.mjs +18 -0
  92. package/esm2020/public-api.mjs +4 -0
  93. package/esm2020/services/classes/app.accesstoken.mjs +51 -0
  94. package/esm2020/services/classes/app.errorhandler.mjs +41 -0
  95. package/esm2020/services/classes/app.event.mjs +27 -0
  96. package/esm2020/services/classes/app.httpextensions.loc.mjs +15 -0
  97. package/esm2020/services/classes/app.httpextensions.mjs +90 -0
  98. package/esm2020/services/classes/app.routeguard.mjs +22 -0
  99. package/esm2020/services/classes/app.session.mjs +33 -0
  100. package/esm2020/services/classes/app.state.mjs +172 -0
  101. package/esm2020/services/classes/preferences/app.cache.persistor.mjs +94 -0
  102. package/esm2020/services/classes/preferences/app.preference.persistor.mjs +94 -0
  103. package/esm2020/services/esfaenza-core-services.mjs +5 -0
  104. package/esm2020/services/public-api.mjs +10 -0
  105. package/fesm2015/esfaenza-core-components.mjs +870 -0
  106. package/fesm2015/esfaenza-core-components.mjs.map +1 -0
  107. package/fesm2015/esfaenza-core-directives.mjs +138 -0
  108. package/fesm2015/esfaenza-core-directives.mjs.map +1 -0
  109. package/fesm2015/esfaenza-core-domain.mjs +99 -0
  110. package/fesm2015/esfaenza-core-domain.mjs.map +1 -0
  111. package/fesm2015/esfaenza-core-helpers.mjs +44 -0
  112. package/fesm2015/esfaenza-core-helpers.mjs.map +1 -0
  113. package/fesm2015/esfaenza-core-modules.mjs +112 -0
  114. package/fesm2015/esfaenza-core-modules.mjs.map +1 -0
  115. package/fesm2015/esfaenza-core-pipes.mjs +97 -0
  116. package/fesm2015/esfaenza-core-pipes.mjs.map +1 -0
  117. package/fesm2015/esfaenza-core-services.mjs +598 -0
  118. package/fesm2015/esfaenza-core-services.mjs.map +1 -0
  119. package/fesm2015/esfaenza-core.mjs +251 -0
  120. package/fesm2015/esfaenza-core.mjs.map +1 -0
  121. package/fesm2020/esfaenza-core-components.mjs +863 -0
  122. package/fesm2020/esfaenza-core-components.mjs.map +1 -0
  123. package/fesm2020/esfaenza-core-directives.mjs +138 -0
  124. package/fesm2020/esfaenza-core-directives.mjs.map +1 -0
  125. package/fesm2020/esfaenza-core-domain.mjs +98 -0
  126. package/fesm2020/esfaenza-core-domain.mjs.map +1 -0
  127. package/fesm2020/esfaenza-core-helpers.mjs +44 -0
  128. package/fesm2020/esfaenza-core-helpers.mjs.map +1 -0
  129. package/fesm2020/esfaenza-core-modules.mjs +112 -0
  130. package/fesm2020/esfaenza-core-modules.mjs.map +1 -0
  131. package/fesm2020/esfaenza-core-pipes.mjs +97 -0
  132. package/fesm2020/esfaenza-core-pipes.mjs.map +1 -0
  133. package/fesm2020/esfaenza-core-services.mjs +595 -0
  134. package/fesm2020/esfaenza-core-services.mjs.map +1 -0
  135. package/fesm2020/esfaenza-core.mjs +251 -0
  136. package/fesm2020/esfaenza-core.mjs.map +1 -0
  137. package/helpers/classes/ResizeListener.d.ts +12 -0
  138. package/helpers/index.d.ts +5 -0
  139. package/helpers/public-api.d.ts +1 -0
  140. package/index.d.ts +5 -0
  141. package/lib/app.component.d.ts +12 -0
  142. package/lib/core.module.d.ts +82 -0
  143. package/modules/classes/_base.module.d.ts +4 -0
  144. package/modules/classes/t_c.module.d.ts +19 -0
  145. package/modules/index.d.ts +5 -0
  146. package/modules/public-api.d.ts +2 -0
  147. package/package.json +115 -0
  148. package/pipes/included_in/included_in.pipe.d.ts +7 -0
  149. package/pipes/index.d.ts +5 -0
  150. package/pipes/pipes.module.d.ts +11 -0
  151. package/pipes/public-api.d.ts +6 -0
  152. package/pipes/safe_html/safe_html.pipe.d.ts +10 -0
  153. package/pipes/safe_script/safe_script.pipe.d.ts +10 -0
  154. package/pipes/safe_style/safe_style.pipe.d.ts +10 -0
  155. package/pipes/safe_url/safe_url.pipe.d.ts +10 -0
  156. package/public-api.d.ts +3 -0
  157. package/services/classes/app.accesstoken.d.ts +15 -0
  158. package/services/classes/app.errorhandler.d.ts +11 -0
  159. package/services/classes/app.event.d.ts +10 -0
  160. package/services/classes/app.httpextensions.d.ts +34 -0
  161. package/services/classes/app.httpextensions.loc.d.ts +8 -0
  162. package/services/classes/app.routeguard.d.ts +10 -0
  163. package/services/classes/app.session.d.ts +14 -0
  164. package/services/classes/app.state.d.ts +59 -0
  165. package/services/classes/preferences/app.cache.persistor.d.ts +25 -0
  166. package/services/classes/preferences/app.preference.persistor.d.ts +25 -0
  167. package/services/index.d.ts +5 -0
  168. package/services/public-api.d.ts +9 -0
  169. package/theme/initial.scss +48 -0
  170. package/theme/styles/_base.scss +257 -0
  171. package/theme/styles/_bootstrap-override.scss +1624 -0
  172. package/theme/styles/_font.scss +86 -0
  173. package/theme/styles/_fullcalendar-override.scss +86 -0
  174. package/theme/styles/_libs-override.scss +97 -0
  175. package/theme/styles/_material-override.scss +231 -0
  176. package/theme/styles/_mixins.scss +50 -0
  177. package/theme/styles/_preloader.scss +119 -0
  178. package/theme/styles/_project-override.scss +2383 -0
  179. package/theme/styles/_variables.scss +52 -0
  180. package/theme/styles/skins/_blue.scss +16 -0
@@ -0,0 +1,2383 @@
1
+ $spaceamounts: (5, 10, 15, 20, 25, 30, 35, 40, 60);
2
+ /*$sides: (top, bottom, left, right);*/
3
+ $sides: (top); //Per iniziare
4
+
5
+ $placeholder-color: #aaa;
6
+
7
+ @each $space in $spaceamounts {
8
+ @each $side in $sides {
9
+ .app-margin-#{$side}-#{$space} {
10
+ margin-#{$side}: #{$space}px !important;
11
+ }
12
+ }
13
+ }
14
+
15
+ @media (min-width: 1280px) {
16
+ .modal-xl {
17
+ max-width: 1024px;
18
+ }
19
+ }
20
+
21
+ @media (min-width: 1600px) {
22
+ .modal-xxl {
23
+ max-width: 1280px;
24
+ }
25
+ }
26
+
27
+ @media (min-width: 1800) {
28
+ .modal-feminist {
29
+ max-width: 1366px;
30
+ }
31
+ }
32
+
33
+ .modal-header {
34
+ cursor: pointer !important;
35
+ }
36
+
37
+ ::-ms-reveal {
38
+ display: none;
39
+ }
40
+
41
+ .app-fill {
42
+ width: 100%;
43
+ height: 100%;
44
+ }
45
+
46
+ .app-flex-left{
47
+ margin-right: auto;
48
+ }
49
+
50
+ .lastfix {
51
+ margin-bottom: -.500rem;
52
+ }
53
+
54
+ .app-inline-wrapped {
55
+ display: inline !important;
56
+ }
57
+
58
+ .app-inline-wrapped::after {
59
+ content: "\A";
60
+ white-space: pre;
61
+ }
62
+
63
+ .app-mat-form-slider {
64
+ margin-top: -10px;
65
+ width: 100%;
66
+ padding: 0;
67
+ }
68
+
69
+ .app-updevery-input {
70
+ width: 30px;
71
+ display: inline;
72
+ padding: 1px;
73
+ height: 20px;
74
+ }
75
+
76
+ .mv-input {
77
+ padding-left: 5px;
78
+ padding-top: 5px;
79
+ padding-bottom: 5px;
80
+ padding-right: 10px;
81
+ width: 100px;
82
+ height: 30px;
83
+
84
+ &:focus {
85
+ box-shadow: none !important;
86
+ }
87
+ }
88
+
89
+ .input-group-addon {
90
+ background-color: #eceeef;
91
+ border: 1px solid rgba(0,0,0,0.15);
92
+ }
93
+
94
+ .app-flex-row {
95
+ flex-direction: row;
96
+ }
97
+
98
+ .flex-nowrap {
99
+ flex-wrap: nowrap;
100
+ }
101
+
102
+ .app-white-button {
103
+ background-color: #fff;
104
+ border-color: #ccc;
105
+ }
106
+
107
+ .app-bigplus {
108
+ text-align: center;
109
+ font-size: 95px;
110
+ color: #ccc;
111
+ font-weight: 200;
112
+ cursor: pointer;
113
+
114
+ :hover {
115
+ background-color: #eee;
116
+ }
117
+ }
118
+
119
+ .app-wrap {
120
+ white-space: pre-wrap;
121
+ word-break: break-word;
122
+ }
123
+
124
+ .app-min-height-145 {
125
+ min-height: 145px;
126
+ }
127
+
128
+ .tooltip {
129
+ pointer-events: auto !important;
130
+ -webkit-user-select: none !important; /* webkit (safari, chrome) browsers */
131
+ -moz-user-select: none !important; /* mozilla browsers */
132
+ -khtml-user-select: none !important; /* webkit (konqueror) browsers */
133
+ -ms-user-select: none !important; /* IE10+ */
134
+ cursor: default !important;
135
+ }
136
+
137
+ .ace_gutter-cell.ace_breakpoint {
138
+ border-radius: 20px 0px 0px 20px;
139
+ /* Change the color of the breakpoint if you want */
140
+ box-shadow: 0px 0px 1px 1px red inset;
141
+ }
142
+
143
+ .tab-body {
144
+ padding: 15px;
145
+ border: 1px solid #bbb;
146
+ width: 100%;
147
+ }
148
+
149
+ .tab-header-page {
150
+ border-bottom: 20px solid #bbb;
151
+ border-left: 20px solid transparent;
152
+ border-right: 20px solid transparent;
153
+ cursor: pointer;
154
+ height: 0;
155
+ text-align: center;
156
+ }
157
+
158
+ .tab-selected {
159
+ border-bottom: 20px solid #bbb;
160
+ font-weight: bold;
161
+ }
162
+
163
+ .tab-unselected {
164
+ border-bottom: 20px solid #ddd;
165
+ }
166
+
167
+ .app-bullet {
168
+ font-weight: bold;
169
+ font-size: 25px;
170
+ line-height: 0;
171
+ vertical-align: sub;
172
+ }
173
+
174
+ .app-input-password {
175
+ width: calc(100% - 30px) !important;
176
+ display: inline-block !important;
177
+ margin-right: 10px !important;
178
+ }
179
+
180
+ .swal2-container {
181
+ z-index: 9999999999999 !important;
182
+ }
183
+
184
+ .app-margin-bottom-min-10 {
185
+ margin-bottom: -10px;
186
+ }
187
+
188
+ .app-margin-bottom-min-15 {
189
+ margin-bottom: -15px;
190
+ }
191
+
192
+ .input-group-addon-color {
193
+ background-color: #eceeef !important;
194
+ }
195
+
196
+ .no-bg-img {
197
+ background-image: none !important;
198
+ padding-right: 0 !important;
199
+ }
200
+
201
+ //Placeholder
202
+ ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
203
+ color: $placeholder-color !important;
204
+ }
205
+
206
+ :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
207
+ color: $placeholder-color !important;
208
+ opacity: 1 !important;
209
+ }
210
+
211
+ ::-moz-placeholder { /* Mozilla Firefox 19+ */
212
+ color: $placeholder-color !important;
213
+ opacity: 1 !important;
214
+ }
215
+
216
+ :-ms-input-placeholder { /* Internet Explorer 10-11 */
217
+ color: $placeholder-color !important;
218
+ }
219
+
220
+ ::-ms-input-placeholder { /* Microsoft Edge */
221
+ color: $placeholder-color !important;
222
+ }
223
+
224
+ ::placeholder { /* Most modern browsers support this now. */
225
+ color: $placeholder-color !important;
226
+ }
227
+
228
+ /* Piccolo fix performance ngx chart: https://github.com/swimlane/ngx-charts/issues/562 */
229
+ ngx-charts-advanced-pie-chart,
230
+ ngx-charts-number-card,
231
+ ngx-charts-bar-vertical,
232
+ ngx-charts-bar-horizontal,
233
+ ngx-charts-tree-map,
234
+ ngx-charts-charts {
235
+ display: block;
236
+ min-height: 1px;
237
+ }
238
+
239
+ //Override col colore fisico. Tenendo il modificatore di alpha rischia che con le sticky scazzi il colore
240
+ .table-striped tbody tr:nth-of-type(odd) {
241
+ background-color: rgb(242, 242, 242);
242
+ }
243
+
244
+ .app-flip-y {
245
+ -moz-transform: scale(1, -1);
246
+ -webkit-transform: scale(1, -1);
247
+ -o-transform: scale(1, -1);
248
+ -ms-transform: scale(1, -1);
249
+ transform: scale(1, -1);
250
+ }
251
+
252
+ .app-flip-x {
253
+ -moz-transform: scale(-1, 1);
254
+ -webkit-transform: scale(-1, 1);
255
+ -o-transform: scale(-1, 1);
256
+ -ms-transform: scale(-1, 1);
257
+ transform: scale(-1, 1);
258
+ }
259
+
260
+ .app-std-border-right {
261
+ border-right: 2px solid #ccc;
262
+ }
263
+
264
+ .app-std-border-left {
265
+ border-left: 2px solid #ccc;
266
+ }
267
+
268
+ .dropdown-menu > li > a:empty {
269
+ padding: 0;
270
+ }
271
+
272
+ .app-caret-none {
273
+ color: transparent !important;
274
+ text-shadow: 0 0 0 black !important;
275
+
276
+ &:focus {
277
+ outline: none;
278
+ }
279
+ }
280
+
281
+ .app-break-words {
282
+ word-break: break-all;
283
+ }
284
+
285
+ .app-simple-border {
286
+ border: 1px solid #eceeef
287
+ }
288
+
289
+ .scrolling-box {
290
+ max-height: 250px;
291
+ overflow-x: hidden;
292
+ overflow-y: auto;
293
+ }
294
+
295
+ .app-ace-higlight {
296
+ background: rgba(255, 50, 50, 0.2);
297
+ position: absolute;
298
+ }
299
+
300
+ .ace_editor, .ace_editor div {
301
+ font-family: monospace
302
+ }
303
+
304
+ .fixed-sm-border {
305
+ border-width: 1px;
306
+ border-radius: 0;
307
+ }
308
+
309
+ .app-dashed-box {
310
+ border: 2px dashed #ccc;
311
+ padding: 10px;
312
+ }
313
+
314
+ .app-small-dashed-box {
315
+ border: 1px dashed #ccc;
316
+ padding: 7px;
317
+ font-size: small;
318
+ }
319
+
320
+ .app-empty-char {
321
+ position: absolute;
322
+ top: 45%;
323
+ left: 33%;
324
+ font-size: 18px;
325
+ font-style: italic;
326
+ }
327
+
328
+ .app-textbox-stringyfied {
329
+ border: 0;
330
+ background-color: white;
331
+ color: black;
332
+ font-weight: bold;
333
+ }
334
+
335
+ //Con z-index -1 sparirebbe, con z-index 1 apparirebbe sopra eventuali popup (tipo quello dello user collegato)
336
+ .app-sticky-last-column {
337
+ right: 0;
338
+ position: sticky;
339
+ z-index: 0;
340
+ background-color: white;
341
+ }
342
+
343
+ .app-sticky-last-column-alt {
344
+ right: 0;
345
+ position: sticky;
346
+ z-index: 0;
347
+ background-color: rgb(242, 242, 242);
348
+ }
349
+
350
+ .app-sticky-divider {
351
+ width: 100%;
352
+ height: 1px;
353
+ z-index: 999;
354
+ background-color: #eee;
355
+ }
356
+
357
+ .app-sticky-first-column {
358
+ left: -1px;
359
+ z-index: 999;
360
+ position: sticky;
361
+ background-color: #ccc;
362
+ }
363
+
364
+ .app-dropdown-stringyfied {
365
+ color: black !important;
366
+ padding: 0;
367
+ height: 20px !important;
368
+ background-color: white !important;
369
+ border: 0;
370
+ font-weight: bold;
371
+ outline: 0 !important;
372
+ background: white;
373
+ opacity: 1 !important;
374
+ -moz-appearance: none !important;
375
+ -webkit-appearance: none !important;
376
+ }
377
+
378
+ .app-dropdown-stringyfied::-ms-expand {
379
+ display: none !important;
380
+ }
381
+
382
+ .background-danger {
383
+ background-color: darksalmon;
384
+ }
385
+
386
+ .checking-field, .checking-combo {
387
+ box-shadow: unset !important;
388
+ }
389
+
390
+ .app-border-none {
391
+ border: none;
392
+ }
393
+
394
+ .app-padding-leftonly-15 {
395
+ padding-left: 15px !important;
396
+ padding-bottom: 0px !important;
397
+ padding-right: 0px !important;
398
+ padding-top: 0px !important;
399
+ }
400
+
401
+ .app-width-auto {
402
+ width: auto;
403
+ }
404
+
405
+ .app-line-through {
406
+ text-decoration: line-through;
407
+ }
408
+
409
+ .app-margin-auto {
410
+ margin: auto;
411
+ }
412
+
413
+ .app-upper-right-remove {
414
+ position: absolute;
415
+ right: 10px;
416
+ font-size: 25px;
417
+ top: 5px;
418
+ }
419
+
420
+ .app-inline-block {
421
+ display: inline-block;
422
+ }
423
+
424
+ .swal2-success {
425
+ border-color: #2d922d !important;
426
+ color: #2d922d !important;
427
+ }
428
+
429
+ .swal2-info {
430
+ border-color: #248dad !important;
431
+ color: #248dad !important;
432
+ }
433
+
434
+ .swal2-warning {
435
+ border-color: #f79a17 !important;
436
+ color: #f79a17 !important;
437
+ }
438
+
439
+ .swal2-danger {
440
+ border-color: #bf1725 !important;
441
+ color: #bf1725 !important;
442
+ }
443
+
444
+ .app-slash {
445
+ font-size: 30px;
446
+ line-height: 1;
447
+ margin-top: 2px;
448
+ text-align: center;
449
+ }
450
+
451
+ .table-mh-435 {
452
+ min-height: 435px;
453
+ }
454
+
455
+ .table-b0 th, .table-b0 td {
456
+ border-top: none !important;
457
+ border-left: none !important;
458
+ }
459
+
460
+ .table-b0 {
461
+ border: 0px;
462
+ }
463
+
464
+ .table-b0 th {
465
+ border-bottom: none !important;
466
+ }
467
+
468
+ .table-b0:last-child {
469
+ border: none !important;
470
+ }
471
+
472
+ //Jobs**** (da spostare prima o poi nel punto giusto)
473
+ .job-step-number {
474
+ position: absolute;
475
+ right: 10px;
476
+ font-size: 16px;
477
+ top: 2px;
478
+ font-weight: bold;
479
+ }
480
+
481
+ //Fine jobs
482
+
483
+ .dropdown-menu:before {
484
+ display: none;
485
+ }
486
+
487
+ .app-table-dotted-menu {
488
+ padding: 0 !important;
489
+ padding-bottom: 2px !important;
490
+ color: #999;
491
+ }
492
+
493
+ .app-rtl {
494
+ direction: rtl;
495
+ }
496
+ /*.app-dots:after {
497
+ content: '\2807';
498
+ font-size: 10px;
499
+ }*/
500
+
501
+ .app-border-1 {
502
+ border: 1px solid rgba(0, 0, 0, 0.15) !important
503
+ }
504
+
505
+ .app-no-selection {
506
+ -webkit-user-select: none; /* webkit (safari, chrome) browsers */
507
+ -moz-user-select: none; /* mozilla browsers */
508
+ -khtml-user-select: none; /* webkit (konqueror) browsers */
509
+ -ms-user-select: none; /* IE10+ */
510
+ }
511
+
512
+ .app-right-border {
513
+ border-right: 2px solid #ccc;
514
+ }
515
+
516
+ .app-mtu-fixed-height {
517
+ height: 302px;
518
+ }
519
+
520
+ .app-mtu-fixed-height-wrapper {
521
+ height: 204px;
522
+ overflow: auto;
523
+ }
524
+
525
+ .app-upper-right-close {
526
+ position: absolute;
527
+ top: 0px;
528
+ right: 15px;
529
+ font-size: 20px;
530
+ }
531
+
532
+ .toast-message {
533
+ white-space: pre-wrap;
534
+ }
535
+
536
+ .app-overflow-auto {
537
+ overflow: auto;
538
+ }
539
+
540
+ .app-no-border {
541
+ border: none !important;
542
+ }
543
+
544
+ .app-contextmenu {
545
+ background-color: white;
546
+ border: 1px solid;
547
+ padding-top: 10px;
548
+ padding-bottom: 10px;
549
+ padding-left: 30px;
550
+ padding-right: 30px;
551
+ }
552
+
553
+ .app-contextmenu-item {
554
+ margin-left: -30px;
555
+ margin-right: -30px;
556
+ cursor: pointer;
557
+
558
+ > span {
559
+ padding-left: 30px;
560
+ padding-right: 30px;
561
+ padding-top: 3px;
562
+ padding-bottom: 3px;
563
+ }
564
+ }
565
+
566
+ .app-contextmenu-item:hover {
567
+ background-color: #ddd;
568
+ }
569
+
570
+ .app-lh-0 {
571
+ line-height: 0;
572
+ }
573
+
574
+ .app-lh-05 {
575
+ line-height: 0.5;
576
+ }
577
+
578
+ .app-lh-1 {
579
+ line-height: 1;
580
+ }
581
+
582
+ .app-lh-2 {
583
+ line-height: 2;
584
+ }
585
+
586
+ .app-lh-2-important {
587
+ line-height: 2 !important;
588
+ }
589
+
590
+ .app-lh-22 {
591
+ line-height: 2.2;
592
+ }
593
+
594
+ .app-display-block {
595
+ display: block !important;
596
+ }
597
+
598
+ .app-input-inline-icon {
599
+ padding: 0;
600
+ margin: 0;
601
+ position: absolute;
602
+ top: 2px;
603
+ right: 20px;
604
+ }
605
+
606
+ .app-bordered-box {
607
+ border: 1px solid #ccc;
608
+ }
609
+
610
+ .app-mr-auto {
611
+ margin-right: auto;
612
+ }
613
+
614
+ .app-mrd-infobox-small {
615
+ border: 1px solid #ccc;
616
+ padding: 5px;
617
+ border-radius: 5px;
618
+ }
619
+
620
+ .app-mrd-infobox {
621
+ border: 1px solid #ccc;
622
+ padding: 5px;
623
+ border-radius: 5px;
624
+ margin-top: -5px;
625
+ float: left;
626
+ }
627
+
628
+ .app-mrd-infobox-editmode {
629
+ margin-bottom: -20px;
630
+ margin-top: -6px;
631
+ }
632
+
633
+ .app-whitespace-prewrap {
634
+ white-space: pre-wrap;
635
+ }
636
+
637
+ .app-white-selectable {
638
+ background-color: white;
639
+ }
640
+
641
+ .app-white-selected {
642
+ background-color: #ddd !important;
643
+ }
644
+
645
+ .app-bb-box {
646
+ border-bottom: 2px solid #ddd;
647
+ }
648
+
649
+ .app-white-selectable:hover {
650
+ background-color: #ddd;
651
+ }
652
+
653
+ .app-placeholder {
654
+ color: $placeholder-color;
655
+ }
656
+
657
+ .app-placeholder-dark {
658
+ color: #777;
659
+ }
660
+
661
+ //Override del fatto che bootstrap nasconde la scrollbar quando si apre una dialog
662
+ .modal-open {
663
+ overflow: inherit;
664
+ padding-right: 0 !important;
665
+ }
666
+
667
+ //Fix di quel cazzo di multiselect
668
+ .dropdown-menu a:hover {
669
+ color: black !important;
670
+ background-color: #f5f5f5;
671
+ }
672
+
673
+ .dropdown-menu span:hover {
674
+ color: black !important;
675
+ background-color: transparent;
676
+ }
677
+
678
+ .dropdown-item a:hover {
679
+ color: black !important;
680
+ background-color: transparent;
681
+ }
682
+
683
+ .dropdown-item empty {
684
+ color: black !important;
685
+ background-color: #f5f5f5;
686
+ }
687
+ //Fine fix multiselect
688
+
689
+ .app-history-box {
690
+ max-height: 775px;
691
+ overflow-x: hidden;
692
+ overflow-y: auto;
693
+ }
694
+
695
+ .app-date-width {
696
+ width: 100px;
697
+ }
698
+
699
+ .app-input-width {
700
+ width: 100px;
701
+ }
702
+
703
+ .load-more-btn {
704
+ width: 100%;
705
+ margin-top: 10px;
706
+ background-color: ButtonFace;
707
+ }
708
+
709
+ .app-max-width-100 {
710
+ max-width: 100px;
711
+ }
712
+
713
+ .app-search-buttons {
714
+ /*Questo per metterlo sotto*/
715
+ /*margin-top:10px;
716
+ margin-left: 15px;*/
717
+ /*Questo per metterlo a destra di fianco al search*/
718
+ position: absolute;
719
+ top: 55px;
720
+ right: 20px;
721
+ }
722
+
723
+ .app-left-0 {
724
+ left: 0;
725
+ }
726
+
727
+ .app-left-4 {
728
+ left: 4px;
729
+ }
730
+
731
+ .app-left-10 {
732
+ left: 10px;
733
+ }
734
+
735
+ .app-bottom-0 {
736
+ bottom: 0;
737
+ }
738
+
739
+ .app-bottom-10 {
740
+ bottom: 10px;
741
+ }
742
+
743
+ .app-right-0 {
744
+ right: 0;
745
+ }
746
+
747
+ .app-right-10 {
748
+ right: 10px !important;
749
+ }
750
+
751
+ .app-right-20 {
752
+ right: 20px;
753
+ }
754
+
755
+ .app-right-25 {
756
+ right: 25px;
757
+ }
758
+
759
+ .app-right-50 {
760
+ right: 50px;
761
+ }
762
+
763
+ .app-top-2 {
764
+ top: 2px;
765
+ }
766
+
767
+ .app-top-5 {
768
+ top: 5px;
769
+ }
770
+
771
+ .app-top-10 {
772
+ top: 10px;
773
+ }
774
+
775
+ .app-top-20 {
776
+ top: 20px;
777
+ }
778
+
779
+ .app-top-40 {
780
+ top: 20px;
781
+ }
782
+
783
+ .m-t-min-1 {
784
+ margin-top: -1px;
785
+ }
786
+
787
+ .m-t-min-2 {
788
+ margin-top: -2px;
789
+ }
790
+
791
+ .m-t-min-3 {
792
+ margin-top: -3px;
793
+ }
794
+
795
+ .m-t-min-5 {
796
+ margin-top: -5px;
797
+ }
798
+
799
+ .m-t-min-6 {
800
+ margin-top: -6px;
801
+ }
802
+
803
+ .m-t-min-10 {
804
+ margin-top: -10px;
805
+ }
806
+
807
+ .app-uppercase {
808
+ text-transform: uppercase;
809
+ }
810
+
811
+ .app-col-sm-10-with-addon {
812
+ width: calc(83.33333% - 56px) !important;
813
+ }
814
+
815
+ /*i commenti negli scss possono essere messi solo con char utf8 lol (niente accenti ecc)*/
816
+ /*
817
+ * sticky column 0
818
+ * Introjs 9999998
819
+ * Timeline 9999999
820
+ * Modal 99999998
821
+ * Roba sopra la modal 99999999
822
+ * Swal container 9999999999999
823
+ */
824
+
825
+ .app-bring-to-front {
826
+ z-index: 9999999 !important;
827
+ }
828
+
829
+ .modal {
830
+ z-index: 99999998 !important;
831
+ }
832
+
833
+ .app-bring-to-front-strong {
834
+ z-index: 99999999 !important;
835
+ }
836
+
837
+ .guppy_help {
838
+ z-index: 99999999 !important;
839
+ }
840
+
841
+ bs-dropdown-container {
842
+ z-index: 99999999 !important;
843
+ }
844
+
845
+ .app-bold {
846
+ font-weight: bold;
847
+ }
848
+
849
+ .app-float-left {
850
+ float: left;
851
+ }
852
+
853
+ .app-float-right {
854
+ float: right;
855
+ }
856
+
857
+ .app-no-resize {
858
+ resize: none;
859
+ }
860
+
861
+ .app-table-no-border {
862
+ border-top: none !important;
863
+ }
864
+
865
+ .app-upper-left-indicator {
866
+ position: absolute;
867
+ top: 2px;
868
+ right: 5px;
869
+ }
870
+
871
+ .app-dialog-button {
872
+ margin-bottom: 19px;
873
+ margin-top: 1px;
874
+ font-size: 25px;
875
+ }
876
+
877
+ .app-z-index-0 {
878
+ z-index: 0 !important;
879
+ }
880
+
881
+ .app-col-divide:after {
882
+ width: 0px;
883
+ content: "-";
884
+ display: block;
885
+ position: absolute;
886
+ top: 10px;
887
+ bottom: 0;
888
+ right: 2px;
889
+ font-weight: bold;
890
+ }
891
+
892
+ .app-widgets-expanded {
893
+ padding-right: 20px !important;
894
+ padding-top: 10px !important;
895
+ padding-bottom: 0px !important;
896
+ }
897
+
898
+ .app-widget-head-expanded {
899
+ padding: 0;
900
+ padding-left: 20px;
901
+ }
902
+
903
+ .app-upper-right-trash {
904
+ position: absolute;
905
+ right: 15px;
906
+ top: 15px;
907
+ cursor: pointer;
908
+ z-index: 99;
909
+ }
910
+
911
+ .app-absolute {
912
+ position: absolute;
913
+ }
914
+
915
+ .app-relative {
916
+ position: relative;
917
+ }
918
+
919
+ .app-box-ricarico {
920
+ width: 250px;
921
+ position: absolute;
922
+ bottom: 35px;
923
+ }
924
+
925
+ .app-box-ricarico-edit {
926
+ width: 250px;
927
+ position: absolute;
928
+ bottom: 21px;
929
+ }
930
+
931
+ .app-input-ricarico {
932
+ display: inline;
933
+ margin-left: 2px;
934
+ width: 20%;
935
+ }
936
+
937
+ .app-no-overflow {
938
+ overflow: hidden;
939
+ }
940
+
941
+ .app-overflow-visible {
942
+ overflow: visible;
943
+ }
944
+
945
+ .app-limited-block {
946
+ max-height: 350px;
947
+ overflow: auto;
948
+ }
949
+
950
+ .app-refresh-button {
951
+ position: absolute;
952
+ top: 10px;
953
+ }
954
+
955
+ .app-float-right {
956
+ float: right !important;
957
+ }
958
+
959
+ .app-intable-input {
960
+ padding: 2px 5px 2px 5px;
961
+ }
962
+
963
+ .app-intable-select {
964
+ padding: 2px 5px 2px 5px;
965
+ height: 23px !important;
966
+ }
967
+
968
+ .app-option-placeholder {
969
+ color: $placeholder-color !important;
970
+ }
971
+
972
+ .app-option-placeholder option {
973
+ color: black !important;
974
+ }
975
+
976
+ .app-lightgrey {
977
+ color: #666;
978
+ }
979
+
980
+ .app-bg-lightgrey {
981
+ background-color: #ddd !important;
982
+ }
983
+
984
+ .app-width-1000 {
985
+ width: 1000px !important;
986
+ }
987
+
988
+ .app-width-100 {
989
+ width: 100px !important;
990
+ }
991
+
992
+ .app-width-10 {
993
+ width: 10px !important;
994
+ }
995
+
996
+ .app-width-20 {
997
+ width: 20px !important;
998
+ }
999
+
1000
+ .app-width-30 {
1001
+ width: 30px !important;
1002
+ }
1003
+
1004
+ .app-width-40 {
1005
+ width: 40px !important;
1006
+ }
1007
+
1008
+ .app-width-50 {
1009
+ width: 50px !important;
1010
+ }
1011
+
1012
+ .app-width-60 {
1013
+ width: 60px !important;
1014
+ }
1015
+
1016
+ .app-width-70 {
1017
+ width: 70px !important;
1018
+ }
1019
+
1020
+ .app-width-80 {
1021
+ width: 80px !important;
1022
+ }
1023
+
1024
+ .app-width-90 {
1025
+ width: 90px !important;
1026
+ }
1027
+
1028
+ .app-width-100 {
1029
+ width: 100px !important;
1030
+ }
1031
+
1032
+ .app-width-110 {
1033
+ width: 110px !important;
1034
+ }
1035
+
1036
+ .app-width-120 {
1037
+ width: 120px !important;
1038
+ }
1039
+
1040
+ .app-width-130 {
1041
+ width: 130px !important;
1042
+ }
1043
+
1044
+ .app-width-180 {
1045
+ width: 180px !important;
1046
+ }
1047
+
1048
+ .app-width-435 {
1049
+ width: 435px !important;
1050
+ }
1051
+
1052
+ .app-height-350 {
1053
+ height: 350px;
1054
+ }
1055
+
1056
+ .app-height-250 {
1057
+ height: 250px;
1058
+ }
1059
+
1060
+ .app-height-275 {
1061
+ height: 275px;
1062
+ }
1063
+
1064
+ .app-height-300 {
1065
+ height: 300px;
1066
+ }
1067
+
1068
+ .app-height-380 {
1069
+ height: 380px;
1070
+ }
1071
+
1072
+ .app-height-370 {
1073
+ height: 370px;
1074
+ }
1075
+
1076
+ .app-max-height-370 {
1077
+ max-height: 370px;
1078
+ }
1079
+
1080
+ .app-height-400 {
1081
+ height: 400px;
1082
+ }
1083
+
1084
+ .app-height-425 {
1085
+ height: 400px;
1086
+ }
1087
+
1088
+ .app-height-450 {
1089
+ height: 450px;
1090
+ }
1091
+
1092
+ .app-height-560 {
1093
+ height: 560px;
1094
+ }
1095
+
1096
+ .app-sm2-minus-5 {
1097
+ float: left;
1098
+ width: calc(16.66667% - 5px) !important;
1099
+ }
1100
+
1101
+ .app-sm10-plus-5 {
1102
+ float: left;
1103
+ width: calc(83.33333% + 5px) !important;
1104
+ }
1105
+
1106
+ .app-deadline-todo {
1107
+ background-color: lightskyblue !important;
1108
+ }
1109
+
1110
+ .app-deadline-done {
1111
+ background-color: lightgreen !important;
1112
+ }
1113
+
1114
+ .app-font-size-12 {
1115
+ font-size: 12px !important;
1116
+ }
1117
+
1118
+ .app-font-size-14 {
1119
+ font-size: 14px !important;
1120
+ }
1121
+
1122
+ .app-font-size-15 {
1123
+ font-size: 15px !important;
1124
+ }
1125
+
1126
+ .app-font-size-16 {
1127
+ font-size: 16px !important;
1128
+ }
1129
+
1130
+ .app-font-size-17 {
1131
+ font-size: 17px !important;
1132
+ }
1133
+
1134
+ .app-font-size-18 {
1135
+ font-size: 18px !important;
1136
+ }
1137
+
1138
+ .app-font-size-20 {
1139
+ font-size: 20px !important;
1140
+ }
1141
+
1142
+ .app-font-size-22 {
1143
+ font-size: 22px !important;
1144
+ }
1145
+
1146
+ .app-font-size-25 {
1147
+ font-size: 25px !important;
1148
+ }
1149
+
1150
+ .app-font-size-59 {
1151
+ font-size: 59px !important;
1152
+ }
1153
+
1154
+ .app-selected {
1155
+ background-color: lightsteelblue;
1156
+ }
1157
+
1158
+ .app-aff-90 {
1159
+ color: darkgreen;
1160
+ }
1161
+
1162
+ .app-aff-80 {
1163
+ color: green;
1164
+ }
1165
+
1166
+ .app-aff-70 {
1167
+ color: lightgreen;
1168
+ }
1169
+
1170
+ .app-aff-60 {
1171
+ color: mediumseagreen;
1172
+ }
1173
+
1174
+ .app-aff-50 {
1175
+ color: darkorange;
1176
+ }
1177
+
1178
+ .app-aff-40 {
1179
+ color: red;
1180
+ }
1181
+
1182
+ .app-bg-aff-90 {
1183
+ background-color: darkgreen;
1184
+ }
1185
+
1186
+ .app-bg-aff-80 {
1187
+ background-color: green;
1188
+ }
1189
+
1190
+ .app-bg-aff-70 {
1191
+ background-color: lightgreen;
1192
+ }
1193
+
1194
+ .app-bg-aff-60 {
1195
+ background-color: mediumseagreen;
1196
+ }
1197
+
1198
+ .app-bg-aff-50 {
1199
+ background-color: darkorange;
1200
+ }
1201
+
1202
+ .app-bg-aff-40 {
1203
+ background-color: red;
1204
+ }
1205
+
1206
+ .app-scarico-materiale-body {
1207
+ max-height: 500px;
1208
+ overflow: auto;
1209
+ overflow-x: hidden;
1210
+ }
1211
+
1212
+ .app-max-height-550 {
1213
+ max-height: 550px;
1214
+ }
1215
+
1216
+ .app-max-height-300 {
1217
+ max-height: 300px;
1218
+ }
1219
+
1220
+ .app-success-row {
1221
+ background-color: #389c90 !important;
1222
+ }
1223
+
1224
+ .app-danger-row {
1225
+ background-color: #9c3838 !important;
1226
+ }
1227
+
1228
+ .app-info-row {
1229
+ background-color: #388b9c !important;
1230
+ }
1231
+
1232
+ .app-active-readonly {
1233
+ color: #555 !important;
1234
+ background-color: white !important;
1235
+ }
1236
+
1237
+ .app-reading-info {
1238
+ position: absolute;
1239
+ top: 5px;
1240
+ left: 5px;
1241
+ font-size: 20px;
1242
+ }
1243
+
1244
+ .app-loading-over {
1245
+ display: none;
1246
+ margin: auto;
1247
+ position: absolute;
1248
+ top: 0;
1249
+ left: 0;
1250
+ bottom: 0;
1251
+ right: 0;
1252
+ width: 100%;
1253
+ height: 100%;
1254
+ z-index: 99;
1255
+ background: rgba(0,0,0,0.5) none repeat;
1256
+ }
1257
+
1258
+ .app-loading-over-internal {
1259
+ color: white;
1260
+ position: absolute;
1261
+ top: calc(48%);
1262
+ left: calc(45%);
1263
+ font-size: 15px;
1264
+ }
1265
+
1266
+ .app-circle {
1267
+ display: inline-block;
1268
+ width: 10px;
1269
+ height: 10px;
1270
+ border-radius: 50%;
1271
+ }
1272
+
1273
+ .loader-img {
1274
+ position: absolute;
1275
+ width: 140px;
1276
+ top: calc(35%);
1277
+ left: calc(50% - 70px);
1278
+ }
1279
+
1280
+ .app-timepicker-success {
1281
+ padding-right: 1.75rem;
1282
+ background-repeat: no-repeat;
1283
+ background-position: center right 0.625rem;
1284
+ background-size: 1.25rem 1.25rem;
1285
+ border-color: $success-color;
1286
+ background-image: $az-form-icon-success;
1287
+ }
1288
+
1289
+ .app-success-row-link {
1290
+ color: ivory !important;
1291
+ }
1292
+
1293
+ .dropdown-item:hover {
1294
+ color: white !important;
1295
+ }
1296
+
1297
+ .app-fixed-height-700 {
1298
+ height: 700px;
1299
+ overflow: auto;
1300
+ overflow-x: hidden;
1301
+ }
1302
+
1303
+ .app-fixed-height-610 {
1304
+ height: 610px;
1305
+ overflow: auto;
1306
+ overflow-x: hidden;
1307
+ }
1308
+
1309
+ .app-fixed-height-685 {
1310
+ height: 685px;
1311
+ overflow: auto;
1312
+ overflow-x: hidden;
1313
+ }
1314
+
1315
+ .app-arrow {
1316
+ height: 15px;
1317
+ width: 100%;
1318
+ text-align: center;
1319
+ }
1320
+
1321
+ .app-visible {
1322
+ display: block !important;
1323
+ }
1324
+
1325
+ .app-scheduling-symbol {
1326
+ position: absolute;
1327
+ right: 15px;
1328
+ font-size: 2.15em;
1329
+ z-index: 100;
1330
+ }
1331
+
1332
+ .app-arrow:hover {
1333
+ background-color: lightgray;
1334
+ }
1335
+
1336
+ .app-calendar-box {
1337
+ width: calc(100% - 380px);
1338
+ padding-left: 10px;
1339
+ float: right;
1340
+ }
1341
+
1342
+ .app-deadline-box-container {
1343
+ width: 380px;
1344
+ height: 100%;
1345
+ float: left;
1346
+ }
1347
+
1348
+ .app-deadline-box {
1349
+ padding: 0px;
1350
+ padding-left: 3px;
1351
+ padding-right: 3px;
1352
+ margin-bottom: 5px;
1353
+ margin-left: 5px;
1354
+ margin-right: 5px;
1355
+ border-style: solid;
1356
+ border-color: lightgray;
1357
+ border-width: 2px;
1358
+ position: relative;
1359
+ }
1360
+
1361
+ .app-input-icon {
1362
+ position: absolute;
1363
+ color: dimgrey;
1364
+ top: 11px;
1365
+ left: 5px;
1366
+ z-index: 999;
1367
+ }
1368
+
1369
+ .app-input-icon:hover {
1370
+ color: dimgrey;
1371
+ }
1372
+
1373
+ .app-text-center {
1374
+ text-align: center;
1375
+ }
1376
+
1377
+ .app-text-right {
1378
+ text-align: right;
1379
+ }
1380
+
1381
+ .app-text-left {
1382
+ text-align: left;
1383
+ }
1384
+
1385
+ .app-fe-sm-v {
1386
+ position: relative;
1387
+ top: 0px;
1388
+ width: 1px;
1389
+ left: 5px;
1390
+ font-size: 8px;
1391
+ font-weight: bold;
1392
+ color: black;
1393
+ text-shadow: 0px 0px 0.2px black;
1394
+ }
1395
+
1396
+ .app-fe-v {
1397
+ position: relative;
1398
+ top: -10px;
1399
+ left: 145px;
1400
+ width: 1px;
1401
+ font-size: 11px;
1402
+ font-weight: bold;
1403
+ color: #fffac2;
1404
+ text-shadow: 0px 0px 1px #fffbcc;
1405
+ }
1406
+
1407
+ .app-card-function-button {
1408
+ padding: 0.5rem 1.25rem;
1409
+ border-bottom: solid 2px #D9D9D9;
1410
+ }
1411
+
1412
+ .app-modal-function-button {
1413
+ padding: 8px 15px;
1414
+ border-bottom: solid 1px #D9D9D9;
1415
+ }
1416
+
1417
+ .app-no-bg-img {
1418
+ background-image: none !important;
1419
+ }
1420
+
1421
+ .app-widget-head-button {
1422
+ font-size: 1.15rem;
1423
+ margin-top: -2px;
1424
+ margin-bottom: -5px;
1425
+ margin-left: 10px;
1426
+ }
1427
+
1428
+ .app-line-separator {
1429
+ height: 3px;
1430
+ background: rgb(237,237,237);
1431
+ border-bottom: 1px solid rgb(237,237,237);
1432
+ margin-bottom: 10px;
1433
+ }
1434
+
1435
+ .app-small-line-separator {
1436
+ height: 2px;
1437
+ background: #ccc;
1438
+ border-bottom: 1px solid #ccc;
1439
+ margin-bottom: 5px;
1440
+ margin-top: 5px;
1441
+ }
1442
+
1443
+ .app-link {
1444
+ color: #0275d8 !important;
1445
+ cursor: pointer;
1446
+ text-decoration: none;
1447
+ display: block;
1448
+ }
1449
+
1450
+ .app-link:hover {
1451
+ color: #23527c !important;
1452
+ cursor: pointer;
1453
+ text-decoration: underline !important;
1454
+ }
1455
+
1456
+ .app-link-nocol {
1457
+ cursor: pointer;
1458
+ text-decoration: none;
1459
+ }
1460
+
1461
+ .app-link-nocol:hover {
1462
+ text-decoration: underline;
1463
+ }
1464
+
1465
+ .app-btn-widget {
1466
+ position: absolute;
1467
+ margin: 0;
1468
+ top: 3.5px;
1469
+ background-color: rgb(65,75,80);
1470
+ cursor: pointer;
1471
+ }
1472
+
1473
+ .app-btn-widget-spacer {
1474
+ visibility: hidden;
1475
+ height: 1px;
1476
+ }
1477
+
1478
+ .app-btn-widget:hover {
1479
+ background-color: rgb(105,115,120);
1480
+ }
1481
+
1482
+ .app-inline {
1483
+ display: inline;
1484
+ }
1485
+
1486
+ .app-btn-search {
1487
+ width: 40.85px;
1488
+ height: 38px;
1489
+ }
1490
+
1491
+ .app-fa-cell-fix {
1492
+ display: table-cell;
1493
+ }
1494
+
1495
+ .app-display-none {
1496
+ display: none;
1497
+ }
1498
+
1499
+ .app-border-radius-5 {
1500
+ border-radius: 5px !important;
1501
+ }
1502
+
1503
+ .app-no-padding {
1504
+ padding: 0 !important;
1505
+ }
1506
+
1507
+ .app-padding-5 {
1508
+ padding: 5px !important;
1509
+ }
1510
+
1511
+ .app-padding-2 {
1512
+ padding: 2px !important;
1513
+ }
1514
+
1515
+ .app-padding-3 {
1516
+ padding: 3px !important;
1517
+ }
1518
+
1519
+ .app-padding-10 {
1520
+ padding: 10px !important;
1521
+ }
1522
+
1523
+ .app-padding-15 {
1524
+ padding: 15px !important;
1525
+ }
1526
+
1527
+ .app-padding-left-0 {
1528
+ padding-left: 0px !important;
1529
+ }
1530
+
1531
+ .app-padding-left-5 {
1532
+ padding-left: 5px !important;
1533
+ }
1534
+
1535
+ .app-padding-left-10 {
1536
+ padding-left: 10px !important;
1537
+ }
1538
+
1539
+ .app-padding-left-15 {
1540
+ padding-left: 15px !important;
1541
+ }
1542
+
1543
+ .app-padding-left-20 {
1544
+ padding-left: 20px !important;
1545
+ }
1546
+
1547
+ .app-padding-left-25 {
1548
+ padding-left: 25px !important;
1549
+ }
1550
+
1551
+ .app-padding-left-30 {
1552
+ padding-left: 30px !important;
1553
+ }
1554
+
1555
+ .app-padding-left-35 {
1556
+ padding-left: 35px !important;
1557
+ }
1558
+
1559
+ .app-padding-left-40 {
1560
+ padding-left: 40px !important;
1561
+ }
1562
+
1563
+ .app-padding-left-45 {
1564
+ padding-left: 45px !important;
1565
+ }
1566
+
1567
+ .app-padding-right-0 {
1568
+ padding-right: 0px !important;
1569
+ }
1570
+
1571
+ .app-padding-right-5 {
1572
+ padding-right: 5px !important;
1573
+ }
1574
+
1575
+ .app-padding-right-10 {
1576
+ padding-right: 10px !important;
1577
+ }
1578
+
1579
+ .app-padding-right-15 {
1580
+ padding-right: 15px !important;
1581
+ }
1582
+
1583
+ .app-margin-0 {
1584
+ margin: 0px !important;
1585
+ }
1586
+
1587
+ .app-margin-right-min-10 {
1588
+ margin-right: -10px !important;
1589
+ }
1590
+
1591
+ .app-margin-left-min-2 {
1592
+ margin-left: -2px;
1593
+ }
1594
+
1595
+ .app-margin-left-min-5 {
1596
+ margin-left: -5px;
1597
+ }
1598
+
1599
+ .app-margin-left-min-10 {
1600
+ margin-left: -10px !important;
1601
+ }
1602
+
1603
+ .app-margin-right-min-20 {
1604
+ margin-right: -20px !important;
1605
+ }
1606
+
1607
+ .app-margin-left-0 {
1608
+ margin-left: 0 !important;
1609
+ }
1610
+
1611
+ .app-margin-left-5 {
1612
+ margin-left: 5px !important;
1613
+ }
1614
+
1615
+ .app-margin-left-6 {
1616
+ margin-left: 6px !important;
1617
+ }
1618
+
1619
+ .app-margin-left-15 {
1620
+ margin-left: 15px !important;
1621
+ }
1622
+
1623
+ .app-margin-left-25 {
1624
+ margin-left: 25px !important;
1625
+ }
1626
+
1627
+ .app-margin-right-10 {
1628
+ margin-right: 10px !important;
1629
+ }
1630
+
1631
+ .app-margin-right-15 {
1632
+ margin-right: 15px !important;
1633
+ }
1634
+
1635
+ .app-margin-right-20 {
1636
+ margin-right: 20px !important;
1637
+ }
1638
+
1639
+ .app-margin-right-25 {
1640
+ margin-right: 25px !important;
1641
+ }
1642
+
1643
+ .app-margin-right-5 {
1644
+ margin-right: 5px !important;
1645
+ }
1646
+
1647
+ .app-margin-top-min-10 {
1648
+ margin-top: -10px !important;
1649
+ }
1650
+
1651
+ .app-margin-top-min-15 {
1652
+ margin-top: -15px !important;
1653
+ }
1654
+
1655
+ .app-margin-left-10 {
1656
+ margin-left: 10px !important;
1657
+ }
1658
+
1659
+ .app-margin-bottom-0 {
1660
+ margin-bottom: 0px !important;
1661
+ }
1662
+
1663
+ .app-margin-bottom-2 {
1664
+ margin-bottom: 2px !important;
1665
+ }
1666
+
1667
+ .app-margin-bottom-5 {
1668
+ margin-bottom: 5px !important;
1669
+ }
1670
+
1671
+ .app-margin-bottom-10 {
1672
+ margin-bottom: 10px !important;
1673
+ }
1674
+
1675
+ .app-margin-bottom-14 {
1676
+ margin-bottom: 14px !important;
1677
+ }
1678
+
1679
+ .app-margin-bottom-15 {
1680
+ margin-bottom: 15px !important;
1681
+ }
1682
+
1683
+ .app-margin-bottom-20 {
1684
+ margin-bottom: 20px !important;
1685
+ }
1686
+
1687
+ .app-margin-bottom-25 {
1688
+ margin-bottom: 25px !important;
1689
+ }
1690
+
1691
+ .app-margin-bottom-30 {
1692
+ margin-bottom: 30px !important;
1693
+ }
1694
+
1695
+ .app-border-radius-10 {
1696
+ border-radius: 10px;
1697
+ }
1698
+
1699
+ .app-no-margin {
1700
+ margin: 0 !important;
1701
+ }
1702
+
1703
+ .app-no-row-margin {
1704
+ margin-left: 0 !important;
1705
+ margin-right: 0 !important;
1706
+ }
1707
+
1708
+ .app-white-text {
1709
+ color: white !important;
1710
+ }
1711
+
1712
+ .app-black-text {
1713
+ color: #242424 !important;
1714
+ }
1715
+
1716
+ .app-pointer {
1717
+ cursor: pointer;
1718
+ }
1719
+
1720
+ .app-not-allowed {
1721
+ cursor: not-allowed;
1722
+ }
1723
+
1724
+ .app-hidden-view {
1725
+ visibility: hidden !important;
1726
+ }
1727
+
1728
+ .app-afterline-button {
1729
+ margin-top: 5px;
1730
+ color: white;
1731
+ background-color: inherit;
1732
+ border-width: 2px;
1733
+ border-color: white;
1734
+ font-weight: bold;
1735
+ margin-bottom: -5px;
1736
+ }
1737
+
1738
+ .app-afterline-button-black {
1739
+ color: black;
1740
+ background-color: inherit;
1741
+ border-width: 2px;
1742
+ border-color: black;
1743
+ font-weight: bold;
1744
+ margin-bottom: 5px;
1745
+ }
1746
+ // ****Margin Top****
1747
+ .m-t-min-2 {
1748
+ margin-top: -2px;
1749
+ }
1750
+
1751
+ .m-t-1 {
1752
+ margin-top: 1px;
1753
+ }
1754
+
1755
+ .m-t-2 {
1756
+ margin-top: 2px;
1757
+ }
1758
+
1759
+ .m-t-3 {
1760
+ margin-top: 3px;
1761
+ }
1762
+
1763
+ .m-t-4 {
1764
+ margin-top: 4px;
1765
+ }
1766
+
1767
+ .m-t-5 {
1768
+ margin-top: 5px;
1769
+ }
1770
+
1771
+ .m-t-6 {
1772
+ margin-top: 6px;
1773
+ }
1774
+
1775
+ .m-t-7 {
1776
+ margin-top: 7px;
1777
+ }
1778
+
1779
+ .m-t-8 {
1780
+ margin-top: 8px;
1781
+ }
1782
+
1783
+ .m-t-9 {
1784
+ margin-top: 9px;
1785
+ }
1786
+
1787
+ .m-t-10 {
1788
+ margin-top: 10px;
1789
+ }
1790
+
1791
+ .m-t-15 {
1792
+ margin-top: 15px;
1793
+ }
1794
+
1795
+ .m-t-30 {
1796
+ margin-top: 30px;
1797
+ }
1798
+
1799
+ .f-s-25 {
1800
+ font-size: 25px;
1801
+ }
1802
+ // ****PULLLEFT****
1803
+ .app-pullleft-1 {
1804
+ margin-right: 1px;
1805
+ }
1806
+
1807
+ .app-pullleft-2 {
1808
+ margin-right: 2px;
1809
+ }
1810
+
1811
+ .app-pullleft-3 {
1812
+ margin-right: 3px;
1813
+ }
1814
+
1815
+ .app-pullleft-4 {
1816
+ margin-right: 4px;
1817
+ }
1818
+
1819
+ .app-pullleft-5 {
1820
+ margin-right: 5px;
1821
+ }
1822
+
1823
+ .app-pullleft-6 {
1824
+ margin-right: 6px;
1825
+ }
1826
+
1827
+ .app-pullleft-7 {
1828
+ margin-right: 7px;
1829
+ }
1830
+
1831
+ .app-pullleft-8 {
1832
+ margin-right: 8px;
1833
+ }
1834
+
1835
+ .app-pullleft-9 {
1836
+ margin-right: 9px;
1837
+ }
1838
+
1839
+ .app-pullleft-10 {
1840
+ margin-right: 10px;
1841
+ }
1842
+
1843
+ .app-pullleft-15 {
1844
+ margin-right: 15px;
1845
+ }
1846
+
1847
+ // ****PULLRIGHT****
1848
+ .app-pullright-1 {
1849
+ margin-left: 1px;
1850
+ }
1851
+
1852
+ .app-pullright-2 {
1853
+ margin-left: 2px;
1854
+ }
1855
+
1856
+ .app-pullright-3 {
1857
+ margin-left: 3px;
1858
+ }
1859
+
1860
+ .app-pullright-4 {
1861
+ margin-left: 4px;
1862
+ }
1863
+
1864
+ .app-pullright-5 {
1865
+ margin-left: 5px;
1866
+ }
1867
+
1868
+ .app-pullright-6 {
1869
+ margin-left: 6px;
1870
+ }
1871
+
1872
+ .app-pullright-7 {
1873
+ margin-left: 7px;
1874
+ }
1875
+
1876
+ .app-pullright-8 {
1877
+ margin-left: 8px;
1878
+ }
1879
+
1880
+ .app-pullright-9 {
1881
+ margin-left: 9px;
1882
+ }
1883
+
1884
+ .app-pullright-10 {
1885
+ margin-left: 10px;
1886
+ }
1887
+
1888
+ .app-pullright-15 {
1889
+ margin-left: 15px;
1890
+ }
1891
+
1892
+ // ****PULLUP****
1893
+ .app-pullup-1 {
1894
+ margin-bottom: 1px;
1895
+ }
1896
+
1897
+ .app-pullup-2 {
1898
+ margin-bottom: 2px;
1899
+ }
1900
+
1901
+ .app-pullup-3 {
1902
+ margin-bottom: 3px;
1903
+ }
1904
+
1905
+ .app-pullup-4 {
1906
+ margin-bottom: 4px;
1907
+ }
1908
+
1909
+ .app-pullup-5 {
1910
+ margin-bottom: 5px;
1911
+ }
1912
+
1913
+ .app-pullup-6 {
1914
+ margin-bottom: 6px;
1915
+ }
1916
+
1917
+ .app-pullup-7 {
1918
+ margin-bottom: 7px;
1919
+ }
1920
+
1921
+ .app-pullup-8 {
1922
+ margin-bottom: 8px;
1923
+ }
1924
+
1925
+ .app-pullup-9 {
1926
+ margin-bottom: 9px;
1927
+ }
1928
+
1929
+ .app-pullup-10 {
1930
+ margin-bottom: 10px;
1931
+ }
1932
+
1933
+ .app-pullup-15 {
1934
+ margin-bottom: 15px;
1935
+ }
1936
+ // ****TABLES****
1937
+
1938
+ .app-one-clm-width {
1939
+ width: 100%;
1940
+ }
1941
+
1942
+ .app-two-clm-width {
1943
+ width: 50%;
1944
+ }
1945
+
1946
+ .app-three-clm-width {
1947
+ width: 33.333%;
1948
+ }
1949
+
1950
+ .app-four-clm-width {
1951
+ width: 25%;
1952
+ }
1953
+
1954
+ .app-five-clm-width {
1955
+ width: 20%;
1956
+ }
1957
+
1958
+ .app-six-clm-width {
1959
+ width: 16.666%;
1960
+ }
1961
+
1962
+ .app-col-12 {
1963
+ width: 100%;
1964
+ }
1965
+
1966
+ .app-col-11 {
1967
+ width: 91.66666667%;
1968
+ }
1969
+
1970
+ .app-col-10 {
1971
+ width: 83.33333333%;
1972
+ }
1973
+
1974
+ .app-col-9 {
1975
+ width: 75%;
1976
+ }
1977
+
1978
+ .app-col-8 {
1979
+ width: 66.66666667%;
1980
+ }
1981
+
1982
+ .app-col-7 {
1983
+ width: 58.33333333%;
1984
+ }
1985
+
1986
+ .app-col-6 {
1987
+ width: 50%;
1988
+ }
1989
+
1990
+ .app-col-5 {
1991
+ width: 41.66666667%;
1992
+ }
1993
+
1994
+ .app-col-4 {
1995
+ width: 33.33333333%;
1996
+ }
1997
+
1998
+ .app-col-3 {
1999
+ width: 25%;
2000
+ }
2001
+
2002
+ .app-col-2 {
2003
+ width: 16.66666667%;
2004
+ }
2005
+
2006
+ .app-col-1 {
2007
+ width: 8.33333333%;
2008
+ }
2009
+
2010
+ // ****PADDINGS****
2011
+ .app-padding-bottom-0 {
2012
+ padding-bottom: 0px !important;
2013
+ }
2014
+
2015
+ .app-padding-bottom-5 {
2016
+ padding-bottom: 5px;
2017
+ }
2018
+
2019
+ .app-padding-bottom-10 {
2020
+ padding-bottom: 10px;
2021
+ }
2022
+
2023
+ .app-padding-top-0 {
2024
+ padding-top: 0 !important;
2025
+ }
2026
+
2027
+ .app-padding-top-3 {
2028
+ padding-top: 3px !important;
2029
+ }
2030
+
2031
+ .app-padding-top-8 {
2032
+ padding-top: 8px !important;
2033
+ }
2034
+
2035
+ .app-padding-top-5 {
2036
+ padding-top: 5px !important;
2037
+ }
2038
+
2039
+ .app-padding-top-10 {
2040
+ padding-top: 10px !important;
2041
+ }
2042
+
2043
+ .app-padding-top-13 {
2044
+ padding-top: 13px !important;
2045
+ }
2046
+
2047
+ .app-padding-top-15 {
2048
+ padding-top: 15px !important;
2049
+ }
2050
+
2051
+ .app-padding-top-16 {
2052
+ padding-top: 16px !important;
2053
+ }
2054
+
2055
+ // ****MARGINS****
2056
+ .app-mb-0 {
2057
+ margin-bottom: 0;
2058
+ }
2059
+
2060
+ .file-upload {
2061
+ .file-upload-btn {
2062
+ position: absolute;
2063
+ width: 100%;
2064
+ height: 35px;
2065
+ z-index: 9;
2066
+ opacity: 0;
2067
+ }
2068
+
2069
+ .delete-file {
2070
+ position: absolute;
2071
+ right: 50px;
2072
+ top: 8px;
2073
+ font-size: 16px;
2074
+ opacity: .8;
2075
+ cursor: pointer;
2076
+ z-index: 99;
2077
+ visibility: hidden;
2078
+ }
2079
+
2080
+ &:hover .delete-file {
2081
+ visibility: visible;
2082
+ }
2083
+ }
2084
+
2085
+ .app-right-15 {
2086
+ right: 15px;
2087
+ }
2088
+
2089
+ .app-top-0 {
2090
+ top: 0;
2091
+ }
2092
+
2093
+ .app-top-10 {
2094
+ top: 10px;
2095
+ }
2096
+
2097
+ .app-fs-30 {
2098
+ font-size: 30px;
2099
+ }
2100
+
2101
+ .app-fs-16 {
2102
+ font-size: 16px;
2103
+ }
2104
+
2105
+ .app-fs-20 {
2106
+ font-size: 20px;
2107
+ }
2108
+
2109
+ .app-fs-23 {
2110
+ font-size: 23px;
2111
+ }
2112
+
2113
+ .app-fs-24 {
2114
+ font-size: 24px;
2115
+ }
2116
+
2117
+ .app-fs-18 {
2118
+ font-size: 18px;
2119
+ }
2120
+
2121
+ .app-fs-14 {
2122
+ font-size: 14px;
2123
+ }
2124
+
2125
+ .app-fs-12 {
2126
+ font-size: 12px;
2127
+ }
2128
+
2129
+ .selectable-timeline {
2130
+ height: 20px;
2131
+ display: flex;
2132
+ }
2133
+
2134
+ .timeline-element-selected {
2135
+ cursor: pointer;
2136
+ text-decoration: underline;
2137
+ font-weight: bold;
2138
+ }
2139
+
2140
+ .timeline-element-unselected {
2141
+ cursor: pointer;
2142
+ /*text-decoration: underline;*/
2143
+ font-style: italic;
2144
+ }
2145
+
2146
+ .timeline-arrow {
2147
+ width: 15px;
2148
+ }
2149
+
2150
+ .timeline-element-container {
2151
+ width: calc(100% - 37px);
2152
+ overflow: hidden;
2153
+ white-space: nowrap;
2154
+ text-overflow: ellipsis;
2155
+ display: flex;
2156
+ }
2157
+
2158
+ .app-checkbox-label {
2159
+ margin-left: 5px;
2160
+ margin-top: -1px;
2161
+ }
2162
+
2163
+ .app-nowrap {
2164
+ white-space: nowrap;
2165
+ }
2166
+
2167
+ .app-min-height-365 {
2168
+ min-height: 365px;
2169
+ }
2170
+
2171
+ .app-min-width-std-395 {
2172
+ min-width: 395px;
2173
+ }
2174
+
2175
+ .app-min-width-std-110 {
2176
+ min-width: 110px;
2177
+ }
2178
+
2179
+ .app-min-width-std-150 {
2180
+ min-width: 150px;
2181
+ }
2182
+
2183
+ .app-min-width-std-220 {
2184
+ min-width: 220px;
2185
+ }
2186
+
2187
+ .app-min-width-std-120 {
2188
+ min-width: 120px;
2189
+ }
2190
+
2191
+ .app-min-width-std-70 {
2192
+ min-width: 70px;
2193
+ }
2194
+
2195
+ .app-ltab-border {
2196
+ border-left: 2px solid #bbb;
2197
+ }
2198
+
2199
+ .app-rtab-border {
2200
+ border-right: 2px solid #bbb;
2201
+ }
2202
+
2203
+ .app-col-min {
2204
+ width: 1px;
2205
+ }
2206
+
2207
+ .app-filter-wrapper {
2208
+ padding-left: 0;
2209
+ margin-top: 20px;
2210
+ }
2211
+
2212
+ .app-first-filter-line{
2213
+ margin-top: -20px;
2214
+ }
2215
+ //
2216
+ // Dropdown menus
2217
+ // --------------------------------------------------
2218
+ // Dropdown arrow/caret
2219
+ .caret {
2220
+ display: inline-block;
2221
+ width: 0;
2222
+ height: 0;
2223
+ margin-left: 2px;
2224
+ vertical-align: middle;
2225
+ }
2226
+
2227
+ // The dropdown wrapper (div)
2228
+ .dropup,
2229
+ .dropdown {
2230
+ position: relative;
2231
+ }
2232
+
2233
+ // Prevent the focus on the dropdown toggle when closing dropdowns
2234
+ .dropdown-toggle:focus {
2235
+ outline: 0;
2236
+ }
2237
+
2238
+ // The dropdown menu (ul)
2239
+ .dropdown-menu {
2240
+ position: absolute;
2241
+ top: 100%;
2242
+ left: 0;
2243
+ display: none; // none by default, but block on "open" of the menu
2244
+ float: left;
2245
+ min-width: 160px;
2246
+ padding: 5px 0;
2247
+ margin: 2px 0 0; // override default ul
2248
+ list-style: none;
2249
+ text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)
2250
+ border: 1px solid #CCC;
2251
+ background-clip: padding-box;
2252
+ // Aligns the dropdown menu to right
2253
+ //
2254
+ // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`
2255
+ &.pull-right {
2256
+ right: 0;
2257
+ left: auto;
2258
+ }
2259
+ // Links within the dropdown menu
2260
+ > li > a {
2261
+ display: block;
2262
+ padding: 3px 20px;
2263
+ clear: both;
2264
+ font-weight: normal;
2265
+ white-space: nowrap; // prevent links from randomly breaking onto new lines
2266
+ }
2267
+ }
2268
+
2269
+ // Hover/Focus state
2270
+ .dropdown-menu > li > a {
2271
+ &:hover,
2272
+ &:focus {
2273
+ text-decoration: none;
2274
+ }
2275
+ }
2276
+
2277
+ // Active state
2278
+ .dropdown-menu > .active > a {
2279
+ &,
2280
+ &:hover,
2281
+ &:focus {
2282
+ text-decoration: none;
2283
+ outline: 0;
2284
+ }
2285
+ }
2286
+
2287
+ // Disabled state
2288
+ //
2289
+ // Gray out text and ensure the hover/focus state remains gray
2290
+
2291
+ .dropdown-menu > .disabled > a {
2292
+ &,
2293
+ &:hover,
2294
+ &:focus {
2295
+ }
2296
+ // Nuke hover/focus effects
2297
+ &:hover,
2298
+ &:focus {
2299
+ text-decoration: none;
2300
+ background-color: transparent;
2301
+ background-image: none; // Remove CSS gradient
2302
+ }
2303
+ }
2304
+
2305
+ // Open state for the dropdown
2306
+ .open {
2307
+ // Show the menu
2308
+ > .dropdown-menu {
2309
+ display: block;
2310
+ }
2311
+ // Remove the outline when :focus is triggered
2312
+ > a {
2313
+ outline: 0;
2314
+ }
2315
+ }
2316
+
2317
+ // Menu positioning
2318
+ //
2319
+ // Add extra class to `.dropdown-menu` to flip the alignment of the dropdown
2320
+ // menu with the parent.
2321
+ // Ngx bootstrap fa schifo e mette valori a cazzo ad ogni cazzo di update...
2322
+ .dropdown-menu-right-user {
2323
+ left: -250px;
2324
+ right: 0;
2325
+ top: -2px;
2326
+ width: 242px;
2327
+ }
2328
+
2329
+ .dropdown-menu-right {
2330
+ left: auto; // Reset the default from `.dropdown-menu`
2331
+ right: 0;
2332
+ }
2333
+ // With v3, we enabled auto-flipping if you have a dropdown within a right
2334
+ // aligned nav component. To enable the undoing of that, we provide an override
2335
+ // to restore the default dropdown menu alignment.
2336
+ //
2337
+ // This is only for left-aligning a dropdown menu within a `.navbar-right` or
2338
+ // `.pull-right` nav component.
2339
+ .dropdown-menu-left {
2340
+ left: 0;
2341
+ right: auto;
2342
+ }
2343
+
2344
+ // Dropdown section headers
2345
+ .dropdown-header {
2346
+ display: block;
2347
+ padding: 3px 20px;
2348
+ white-space: nowrap; // as with > li > a
2349
+ }
2350
+
2351
+ // Backdrop to catch body clicks on mobile, etc.
2352
+ .dropdown-backdrop {
2353
+ position: fixed;
2354
+ left: 0;
2355
+ right: 0;
2356
+ bottom: 0;
2357
+ top: 0;
2358
+ }
2359
+
2360
+ // Right aligned dropdowns
2361
+ .pull-right > .dropdown-menu {
2362
+ right: 0;
2363
+ left: auto;
2364
+ }
2365
+
2366
+ // Allow for dropdowns to go bottom up (aka, dropup-menu)
2367
+ //
2368
+ // Just add .dropup after the standard .dropdown class and you're set, bro.
2369
+
2370
+ .dropup,
2371
+ .navbar-fixed-bottom .dropdown {
2372
+ // Reverse the caret
2373
+ .caret {
2374
+ border-top: 0;
2375
+ content: "";
2376
+ }
2377
+ // Different positioning for bottom up menu
2378
+ .dropdown-menu {
2379
+ top: auto;
2380
+ bottom: 100%;
2381
+ margin-bottom: 2px;
2382
+ }
2383
+ }