@xtctwins/tctwins-bimx-viewer 1.1.0 → 1.1.2

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.
@@ -0,0 +1,1093 @@
1
+ /*!******************************************************************************!*\
2
+ !*** css ./node_modules/css-loader/dist/cjs.js!./src/tctwins-bim-viewer.css ***!
3
+ \******************************************************************************/
4
+ /* Toolbars and buttons */
5
+
6
+ .tctwins-toolbar {
7
+ display: flex;
8
+ flex-wrap: wrap;
9
+ justify-content: flex-start;
10
+ background: transparent;
11
+ pointer-events: none;
12
+ padding: 10px;
13
+ }
14
+
15
+ .tctwins-btn-group {
16
+ position: relative;
17
+ display: inline-flex;
18
+ vertical-align: middle;
19
+ margin-bottom: 3px;
20
+ margin-right: 1.2rem !important;
21
+ pointer-events: auto;
22
+ }
23
+
24
+ .tctwins-btn {
25
+ position: relative;
26
+ flex: 1 1 auto;
27
+ color: #03103F;
28
+ background-color: white;
29
+ text-align: center;
30
+ vertical-align: middle;
31
+ border: 2px solid #1d2453;
32
+ padding: .375rem .75rem;
33
+ border-radius: .25rem;
34
+ transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
35
+ -webkit-appearance: button;
36
+ overflow: visible;
37
+ margin: 0 2px 0 0;
38
+ box-sizing: border-box;
39
+ align-items: flex-start;
40
+ pointer-events: all;
41
+ }
42
+
43
+ .tctwins-btn.disabled {
44
+ opacity: .55;
45
+ color: #99A4AD;
46
+ border-color: #6c757d !important;
47
+ pointer-events: none;
48
+ }
49
+
50
+ .tctwins-btn.active {
51
+ color: #fff;
52
+ background-color: #03103F;
53
+ border-color: #03103F !important;
54
+ }
55
+
56
+ .tctwins-btn:hover {
57
+ color: #477dca;
58
+ border-color: #477dca !important;
59
+ }
60
+
61
+ .tctwins-btn.active:hover {
62
+ /*color: transparent;*/
63
+ color: white;
64
+ background: #477dca;
65
+ border-color: #477dca !important;
66
+ }
67
+
68
+ .tctwins-btn.disabled:hover {
69
+ opacity: .55;
70
+ color: #99A4AD;
71
+ border-color: #6c757d !important;
72
+ }
73
+
74
+ /* Tabs */
75
+
76
+ .tctwins-tabs {
77
+ line-height: 1.5;
78
+ padding: 0;
79
+ /*padding-left: 10px;*/
80
+ height: 100%;
81
+ overflow: hidden;
82
+ }
83
+
84
+ .tctwins-tabs::before,
85
+ .tctwins-tabs::after {
86
+ display: table;
87
+ content: '';
88
+ clear: both;
89
+ }
90
+
91
+ @media (max-width: 40em) {
92
+ .tctwins-tabs {}
93
+ }
94
+
95
+ .tctwins-tabs .tctwins-tab {
96
+ list-style: none;
97
+ }
98
+
99
+ @media (min-width: 40em) {
100
+ .tctwins-tabs .tctwins-tab {
101
+ display: inline;
102
+ }
103
+ }
104
+
105
+ .tctwins-tabs .tctwins-tab:first-child .tctwins-tab-btn {}
106
+
107
+ @media (max-width: 40em) {
108
+ .tctwins-tabs .tctwins-tab:first-child .tctwins-tab-btn {}
109
+ }
110
+
111
+ @media (max-width: 40em) {
112
+ .tctwins-tabs .tctwins-tab:last-child .tctwins-tab-btn {}
113
+ }
114
+
115
+ .tctwins-tabs .tctwins-tab.active .tctwins-tab-btn {
116
+ background-color: #313961;
117
+ }
118
+
119
+ @media (min-width: 40em) {
120
+ .tctwins-tabs .tctwins-tab.active .tctwins-tab-btn {
121
+ background-color: transparent;
122
+ border-bottom: #CFCFCF solid 3px;
123
+ margin-bottom: -1px;
124
+ }
125
+ }
126
+
127
+ .tctwins-tabs .tctwins-tab.active .tctwins-tab-content {
128
+ display: block;
129
+ }
130
+
131
+ .tctwins-tabs .tctwins-tab-btn {
132
+ font-size: 16px;
133
+ background-color: transparent;
134
+ border-top: 2px solid #dcdcdc;
135
+ color: #CFCFCF;
136
+ display: block;
137
+ font-weight: bold;
138
+ padding: 0.75em 5px;
139
+ padding-left: 0;
140
+ padding-right: 10px;
141
+ text-decoration: none;
142
+ }
143
+
144
+ @media (min-width: 40em) {
145
+ .tctwins-tabs .tctwins-tab-btn {
146
+ font-size: 20px;
147
+ font-weight: normal;
148
+ border-top-left-radius: 3px;
149
+ border-top-right-radius: 3px;
150
+ border-top: 0;
151
+ display: inline-block;
152
+ }
153
+ }
154
+
155
+ .tctwins-tabs .tctwins-tab-btn:hover {
156
+ color: #477dca;
157
+ }
158
+
159
+ .tctwins-tabs .tctwins-tab-btn:focus {
160
+ outline: none;
161
+ }
162
+
163
+ .tctwins-tabs .tctwins-tab-content {
164
+ background: #03103F;
165
+ display: none;
166
+ padding-top: 2em;
167
+ padding-left: 0;
168
+ padding-right: 0px;
169
+ width: calc(100% - 0px);
170
+ height: calc(100% - 30px);
171
+ }
172
+
173
+ @media (min-width: 40em) {
174
+ .tctwins-tabs .tctwins-tab-content {
175
+ float: left;
176
+ }
177
+ }
178
+
179
+ .tctwins-tabs .tctwins-btn-group {
180
+ flex-wrap: wrap;
181
+ justify-content: flex-start;
182
+ margin-bottom: 10px;
183
+ }
184
+
185
+ .tctwins-tabs .tctwins-btn {
186
+ font-size: 16px;
187
+ font-weight: normal;
188
+ position: relative;
189
+ flex: 1 1 auto;
190
+ color: #CFCFCF;
191
+ background-color: transparent;
192
+ text-align: center;
193
+ vertical-align: middle;
194
+ border: 2px solid #CFCFCF;
195
+ padding: .75rem .75rem;
196
+ margin: 0 5px 10px 0;
197
+ border-radius: .35rem;
198
+ transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
199
+ -webkit-appearance: button;
200
+ overflow: visible;
201
+ box-sizing: border-box;
202
+ align-items: flex-start;
203
+ /*font: 400 13.3333px Arial;*/
204
+ }
205
+
206
+ .tctwins-tabs .tctwins-btn:hover {
207
+ color: #477dca;
208
+ border: 2px solid #477dca;
209
+ /*background: black;*/
210
+ }
211
+
212
+ .tctwins-tabs .tctwins-tab-btn.disabled {
213
+ opacity: .55;
214
+ color: #99A4AD;
215
+ }
216
+
217
+ .tctwins-modelsTab {}
218
+
219
+ .tctwins-modelsTab .tctwins-form-check {
220
+ padding: 2px 0 2px 15px;
221
+ line-height: 3ex;
222
+ }
223
+
224
+ .tctwins-modelsTab .tctwins-form-check input {
225
+ vertical-align: middle;
226
+ }
227
+
228
+ .tctwins-modelsTab .tctwins-form-check span {
229
+ display: inline-block;
230
+ color: #ffff;
231
+ background-color: #03103F;
232
+ padding-left: 3px;
233
+ width: calc(100% - 30px);
234
+ vertical-align: middle;
235
+ }
236
+
237
+ .tctwins-modelsTab .tctwins-form-check span.disabled {
238
+ color: #99A4AD;
239
+ background-color: #03103F;
240
+ }
241
+
242
+ .tctwins-modelsTab .tctwins-form-check span:hover {
243
+ color: #ffffff;
244
+ cursor: pointer;
245
+ background: rgba(255, 255, 255, 0.2);
246
+ padding-left: 3px;
247
+ }
248
+
249
+ .tctwins-modelsTab .tctwins-form-check span.disabled:hover {
250
+ color: #99A4AD;
251
+ background-color: #03103F;
252
+ cursor: default;
253
+ }
254
+
255
+ .tctwins-objectsTab ul {
256
+ list-style: none;
257
+ padding-left: 1.75em;
258
+ }
259
+
260
+ .tctwins-objectsTab ul li {
261
+ margin: 2px 0;
262
+ position: relative;
263
+ width: 500px;
264
+ line-height: 3ex;
265
+ }
266
+
267
+ .tctwins-objectsTab ul li a {
268
+ background-color: #eee;
269
+ border-radius: 50%;
270
+ color: #000;
271
+ display: inline-block;
272
+ height: 1.5em;
273
+ left: -1.5em;
274
+ /*line-height: 1.5em;*/
275
+ position: absolute;
276
+ text-align: center;
277
+ text-decoration: none;
278
+ width: 1.5em;
279
+ }
280
+
281
+ .tctwins-objectsTab ul li a.plus {
282
+ background-color: #ded;
283
+ }
284
+
285
+ .tctwins-objectsTab ul li a.minus {
286
+ background-color: #eee;
287
+ }
288
+
289
+ .tctwins-objectsTab ul li a:active {
290
+ top: 1px;
291
+ }
292
+
293
+ .tctwins-objectsTab ul li input {
294
+ vertical-align: middle;
295
+ }
296
+
297
+ .tctwins-objectsTab ul li span {
298
+ display: inline-block;
299
+ width: calc(100% - 50px);
300
+ padding-left: 2px;
301
+ vertical-align: middle;
302
+ }
303
+
304
+ .tctwins-objectsTab ul li span:hover {
305
+ color: #ffffff;
306
+ cursor: pointer;
307
+ background: rgba(255, 255, 255, 0.2);
308
+ padding-left: 2px;
309
+ vertical-align: middle;
310
+ }
311
+
312
+ .tctwins-objectsTab .top-right {
313
+ font-size: small;
314
+ position: fixed;
315
+ right: 1em;
316
+ top: 1em;
317
+ }
318
+
319
+ .tctwins-objectsTab .highlighted-node {
320
+ /* Appearance of node highlighted with BIMViewer#showObjectInExplorers() */
321
+ border: black solid 1px;
322
+ background: yellow;
323
+ color: black;
324
+ padding-left: 1px;
325
+ padding-right: 5px;
326
+ }
327
+
328
+ .tctwins-storeysTab ul {
329
+ list-style: none;
330
+ padding-left: 1.75em;
331
+ }
332
+
333
+ .tctwins-storeysTab ul li {
334
+ margin: 2px 0;
335
+ position: relative;
336
+ width: 500px;
337
+ line-height: 3ex;
338
+ }
339
+
340
+ .tctwins-storeysTab ul li a {
341
+ background-color: #eee;
342
+ border-radius: 50%;
343
+ color: #000;
344
+ display: inline-block;
345
+ height: 1.5em;
346
+ left: -1.5em;
347
+ /*line-height: 1.5em;*/
348
+ position: absolute;
349
+ text-align: center;
350
+ text-decoration: none;
351
+ width: 1.5em;
352
+ }
353
+
354
+ .tctwins-storeysTab ul li a.plus {
355
+ background-color: #ded;
356
+ }
357
+
358
+ .tctwins-storeysTab ul li a.minus {
359
+ background-color: #eee;
360
+ }
361
+
362
+ .tctwins-storeysTab ul li a:active {
363
+ top: 1px;
364
+ }
365
+
366
+ .tctwins-storeysTab ul li input {
367
+ vertical-align: middle;
368
+ }
369
+
370
+ .tctwins-storeysTab ul li span {
371
+ display: inline-block;
372
+ width: calc(100% - 50px);
373
+ padding-left: 2px;
374
+ vertical-align: middle;
375
+ }
376
+
377
+ .tctwins-storeysTab ul li span:hover {
378
+ color: white;
379
+ cursor: pointer;
380
+ background: rgba(255, 255, 255, 0.2);
381
+ padding-left: 2px;
382
+ }
383
+
384
+ .tctwins-storeysTab .top-right {
385
+ font-size: small;
386
+ position: fixed;
387
+ right: 1em;
388
+ top: 1em;
389
+ }
390
+
391
+ .tctwins-storeysTab .highlighted-node {
392
+ /* Appearance of node highlighted with BIMViewer#showObjectInExplorers() */
393
+ border: black solid 1px;
394
+ background: yellow;
395
+ color: black;
396
+ padding-left: 1px;
397
+ padding-right: 5px;
398
+ }
399
+
400
+ .tctwins-classesTab ul {
401
+ list-style: none;
402
+ padding-left: 1.75em;
403
+ }
404
+
405
+ .tctwins-classesTab ul li {
406
+ margin: 2px 0;
407
+ position: relative;
408
+ width: 500px;
409
+ line-height: 3ex;
410
+ }
411
+
412
+ .tctwins-classesTab ul li a {
413
+ background-color: #eee;
414
+ border-radius: 50%;
415
+ color: #000;
416
+ display: inline-block;
417
+ height: 1.5em;
418
+ left: -1.5em;
419
+ /*line-height: 1.5em;*/
420
+ position: absolute;
421
+ text-align: center;
422
+ text-decoration: none;
423
+ width: 1.5em;
424
+ }
425
+
426
+ .tctwins-classesTab ul li a.plus {
427
+ background-color: #ded;
428
+ }
429
+
430
+ .tctwins-classesTab ul li a.minus {
431
+ background-color: #eee;
432
+ }
433
+
434
+ .tctwins-classesTab ul li a:active {
435
+ top: 1px;
436
+ }
437
+
438
+ .tctwins-classesTab ul li input {
439
+ vertical-align: middle;
440
+ }
441
+
442
+ .tctwins-classesTab ul li span {
443
+ display: inline-block;
444
+ width: calc(100% - 50px);
445
+ padding-left: 2px;
446
+ vertical-align: middle;
447
+ }
448
+
449
+ .tctwins-classesTab ul li span:hover {
450
+ color: white;
451
+ cursor: pointer;
452
+ background: rgba(255, 255, 255, 0.2);
453
+ padding-left: 2px;
454
+ vertical-align: middle;
455
+ }
456
+
457
+ .tctwins-classesTab .top-right {
458
+ font-size: small;
459
+ position: fixed;
460
+ right: 1em;
461
+ top: 1em;
462
+ }
463
+
464
+ .tctwins-classesTab .highlighted-node {
465
+ /* Appearance of node highlighted with BIMViewer#showObjectInExplorers() */
466
+ border: black solid 1px;
467
+ background: yellow;
468
+ color: black;
469
+ padding-left: 1px;
470
+ padding-right: 5px;
471
+ }
472
+
473
+ .tctwins-tree-panel {
474
+ overflow-y: auto;
475
+ overflow-x: hidden;
476
+ height: calc(100% - 150px);
477
+ }
478
+
479
+ .tctwins-tree-panel .warn,
480
+ .tctwins-tree-panel .warn::before,
481
+ .tctwins-tree-panel .warn::after {
482
+ /*position: relative;*/
483
+ padding: 0;
484
+ margin: 0;
485
+ }
486
+
487
+ .tctwins-tree-panel .warn {
488
+ font-size: 20px;
489
+ color: transparent;
490
+ }
491
+
492
+ .tctwins-tree-panel .warn.warning {
493
+ display: inline-block;
494
+ top: 0.225em;
495
+ width: 1.15em;
496
+ height: 1.15em;
497
+ overflow: hidden;
498
+ border: none;
499
+ background-color: transparent;
500
+ border-radius: 0.625em;
501
+ }
502
+
503
+ .tctwins-tree-panel .warn.warning::before {
504
+ content: "";
505
+ display: block;
506
+ top: 0.0em;
507
+ left: 0.0em;
508
+ position: absolute;
509
+ border: transparent 0.6em solid;
510
+ border-bottom-color: #fd3;
511
+ border-bottom-width: 1em;
512
+ border-top-width: 0;
513
+ box-shadow: #999 0 1px 1px;
514
+ }
515
+
516
+ .tctwins-tree-panel .warn.warning::after {
517
+ display: block;
518
+ position: absolute;
519
+ top: 0.3em;
520
+ left: 0;
521
+ width: 100%;
522
+ padding: 0 1px;
523
+ text-align: center;
524
+ font-family: "Garamond";
525
+ content: "!";
526
+ font-size: 0.65em;
527
+ font-weight: bold;
528
+ color: #333;
529
+ }
530
+
531
+ /* Context menu */
532
+
533
+ .tctwins-context-menu {
534
+ font-family: 'Roboto', sans-serif;
535
+ font-size: 15px;
536
+ display: none;
537
+ z-index: 300000;
538
+ background: rgba(255, 255, 255, 0.46);
539
+ border: 1px solid black;
540
+ border-radius: 6px;
541
+ padding: 0;
542
+ width: 200px;
543
+ }
544
+
545
+ .tctwins-context-menu ul {
546
+ list-style: none;
547
+ margin-left: 0;
548
+ margin-top: 0;
549
+ margin-bottom: 0;
550
+ padding: 0;
551
+ }
552
+
553
+ .tctwins-context-menu ul li {
554
+ list-style-type: none;
555
+ padding-left: 10px;
556
+ padding-right: 20px;
557
+ padding-top: 4px;
558
+ padding-bottom: 4px;
559
+ color: black;
560
+ border-bottom: 1px solid gray;
561
+ background: rgba(255, 255, 255, 0.46);
562
+ cursor: pointer;
563
+ width: calc(100% - 30px);
564
+ }
565
+
566
+ .tctwins-context-menu ul li:hover {
567
+ background: black;
568
+ color: white;
569
+ font-weight: normal;
570
+ }
571
+
572
+ .tctwins-context-menu ul li span {
573
+ display: inline-block;
574
+ }
575
+
576
+ .tctwins-context-menu .disabled {
577
+ display: inline-block;
578
+ color: gray;
579
+ cursor: default;
580
+ font-weight: normal;
581
+ }
582
+
583
+ .tctwins-context-menu .disabled:hover {
584
+ color: gray;
585
+ cursor: default;
586
+ background: #eeeeee;
587
+ font-weight: normal;
588
+ }
589
+
590
+ .tctwins-context-submenu {
591
+ font-family: 'Roboto', sans-serif;
592
+ font-size: 15px;
593
+ display: none;
594
+ z-index: 300000;
595
+ background: rgba(255, 255, 255, 0.46);
596
+ border: 1px solid black;
597
+ border-radius: 0 6px 6px 6px !important;
598
+ padding: 0;
599
+ width: 200px;
600
+ }
601
+
602
+ /* Busy modal dialog */
603
+
604
+ .tctwins-busy-modal-backdrop {
605
+ position: relative;
606
+ }
607
+
608
+ .tctwins-busy-modal {
609
+ display: none;
610
+ position: absolute;
611
+ z-index: 1000000;
612
+ padding-top: 100px;
613
+ left: 0;
614
+ top: 0;
615
+ width: 100%;
616
+ height: 100%;
617
+ background-color: rgba(3, 16, 63, 0.4);
618
+ }
619
+
620
+ .tctwins-busy-modal-content {
621
+ position: relative;
622
+ background-color: #FFFFFF;
623
+ margin: auto;
624
+ padding: 0;
625
+ border: 2px solid #888;
626
+ border-radius: 0.5em;
627
+ width: 30%;
628
+ box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
629
+ -webkit-animation-name: tctwins-busy-modal-animatetop;
630
+ -webkit-animation-duration: 0.6s;
631
+ animation-name: tctwins-busy-modal-animatetop;
632
+ animation-duration: .6s
633
+ }
634
+
635
+ /* Add Animation */
636
+ @-webkit-keyframes tctwins-busy-modal-animatetop {
637
+ from {
638
+ opacity: 0
639
+ }
640
+
641
+ to {
642
+ opacity: 1
643
+ }
644
+ }
645
+
646
+ @keyframes tctwins-busy-modal-animatetop {
647
+ from {
648
+ opacity: 0
649
+ }
650
+
651
+ to {
652
+ opacity: 1
653
+ }
654
+ }
655
+
656
+ .tctwins-busy-modal-message {
657
+ font-size: 22px;
658
+ padding: 2px 14px;
659
+ background-color: #FFFFFF;
660
+ color: #212529;
661
+ }
662
+
663
+ .tctwins-busy-modal-body {
664
+ padding: 2px 14px;
665
+ margin: 20px 2px
666
+ }
667
+
668
+ /* Styles the dot that indicates the camera's current pivot position */
669
+
670
+ .tctwins-camera-pivot-marker {
671
+ color: #ffffff;
672
+ line-height: 1.8;
673
+ text-align: center;
674
+ font-family: "monospace";
675
+ font-weight: bold;
676
+ position: absolute;
677
+ width: 25px;
678
+ height: 25px;
679
+ border-radius: 15px;
680
+ border: 2px solid #ebebeb;
681
+ background: black;
682
+ visibility: hidden;
683
+ box-shadow: 5px 5px 15px 1px #000000;
684
+ z-index: 1000000;
685
+ pointer-events: none;
686
+ }
687
+
688
+ /* 标识(MarkerTool)默认样式 */
689
+ .bimx-marker {
690
+ position: absolute;
691
+ width: 24px;
692
+ height: 24px;
693
+ pointer-events: auto;
694
+ }
695
+
696
+ .bimx-marker img {
697
+ width: 24px;
698
+ height: 24px;
699
+ pointer-events: none;
700
+ user-select: none;
701
+ -webkit-user-drag: none;
702
+ }
703
+
704
+ /* 标识(MarkerTool)悬浮文字面板:白色圆角带阴影,位置由 core 的 labelPlacement 控制 */
705
+ .bimx-marker-label {
706
+ position: absolute;
707
+ padding: 6px 10px;
708
+ background: #ffffff;
709
+ border-radius: 6px;
710
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
711
+ color: #333333;
712
+ font-size: 12px;
713
+ white-space: nowrap;
714
+ pointer-events: auto;
715
+ }
716
+
717
+ .tctwins-section-counter {
718
+ opacity: 1.0;
719
+ color: black;
720
+ padding: 1px;
721
+ margin: 0;
722
+ margin-left: 10px;
723
+ width: 20px;
724
+ height: 20px;
725
+ float: right;
726
+ font-family: 'Roboto', sans-serif;
727
+ font-size: 18px;
728
+ line-height: 1.50;
729
+ }
730
+
731
+ .tctwins-section-counter.disabled {
732
+ color: #99A4AD;
733
+ }
734
+
735
+ .tctwins-section-counter.active {
736
+ color: #fff;
737
+ border-color: #ebebeb;
738
+ }
739
+
740
+ .tctwins-section-counter:hover {
741
+ color: #477dca;
742
+ }
743
+
744
+ .tctwins-section-counter.active:hover {
745
+ color: white;
746
+ }
747
+
748
+ .tctwins-section-counter.disabled:hover {
749
+ color: #99A4AD;
750
+ }
751
+
752
+ .tctwins-section-menu-button {
753
+ opacity: 1.0;
754
+ border-radius: 5px;
755
+ border: 0;
756
+ color: black;
757
+ padding: 1px;
758
+ margin: 0;
759
+ margin-left: 10px;
760
+ width: 20px;
761
+ height: 20px;
762
+ float: right;
763
+ font-family: 'Roboto', sans-serif;
764
+ font-size: 14px;
765
+ line-height: 1.50;
766
+ }
767
+
768
+ .tctwins-section-menu-button.disabled {
769
+ color: #99A4AD;
770
+ border: 0;
771
+ }
772
+
773
+ .tctwins-section-menu-button.active {
774
+ color: #fff;
775
+ border-color: #ebebeb;
776
+ }
777
+
778
+ .tctwins-section-menu-button:hover {
779
+ color: #477dca;
780
+ }
781
+
782
+ .tctwins-section-menu-button.active:hover {
783
+ color: white;
784
+ /*border: 2px solid #477dca;*/
785
+ }
786
+
787
+ .tctwins-section-menu-button.disabled:hover {
788
+ color: #99A4AD;
789
+ }
790
+
791
+ .tctwins-arrow-up {
792
+ width: 0;
793
+ height: 0;
794
+ display: inline-block;
795
+ vertical-align: middle;
796
+ border-left: 8px solid transparent;
797
+ border-right: 8px solid transparent;
798
+ border-bottom: 8px solid black !important;
799
+ }
800
+
801
+ .tctwins-arrow-up.disabled {
802
+ border-bottom: 8px solid #99A4AD !important;
803
+ }
804
+
805
+ .tctwins-arrow-up.active {
806
+ border-bottom: 8px solid white !important;
807
+ }
808
+
809
+ .tctwins-arrow-up:hover {
810
+ border-bottom: 8px solid #477dca !important;
811
+ }
812
+
813
+ .tctwins-arrow-up.active:hover {
814
+ border-bottom: 8px solid white !important;
815
+ }
816
+
817
+ .tctwins-arrow-up.disabled:hover {
818
+ border-bottom: 8px solid #99A4AD !important;
819
+ }
820
+
821
+ .tctwins-arrow-down {
822
+ width: 0;
823
+ height: 0;
824
+ display: inline-block;
825
+ vertical-align: middle;
826
+ border-style: solid;
827
+ border-width: 8px 8px 0 8px;
828
+ border-color: black transparent transparent transparent !important;
829
+ }
830
+
831
+ .tctwins-arrow-down.disabled {
832
+ color: #99A4AD !important;
833
+ }
834
+
835
+ .tctwins-arrow-down.active {
836
+ color: white !important;
837
+ border-color: white transparent transparent transparent !important;
838
+ }
839
+
840
+ .tctwins-arrow-down:hover {
841
+ color: white !important;
842
+ border-color: #477dca transparent transparent transparent !important;
843
+ }
844
+
845
+ .tctwins-arrow-down.active:hover {
846
+ color: white !important;
847
+ border-color: white transparent transparent transparent !important;
848
+ }
849
+
850
+ .tctwins-arrow-down.disabled:hover {
851
+ border-color: #99A4AD transparent transparent transparent !important;
852
+ }
853
+
854
+
855
+
856
+ .tctwins-accordion {
857
+ display: flex;
858
+ flex-direction: column;
859
+ width: 100%;
860
+ height: auto;
861
+ overflow-y: scroll;
862
+ overflow-x: hidden;
863
+ }
864
+
865
+ .tctwins-accordion .tctwins-accordion-container {
866
+ display: flex;
867
+ flex-direction: column;
868
+ width: 100%;
869
+ padding-bottom: 5px;
870
+ }
871
+
872
+ .tctwins-accordion .tctwins-accordion-container .tctwins-accordion-button {
873
+ margin: 0;
874
+ position: relative;
875
+ padding: 15px 15px;
876
+ color: #bdbdbd;
877
+ display: block;
878
+ font-weight: 500;
879
+ background-color: #313961;
880
+ cursor: pointer;
881
+ transition: all 0.3s ease-in-out;
882
+ border-radius: 5px;
883
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .15), 0 10px 10px -5px rgba(0, 0, 0, .1) !important;
884
+ }
885
+
886
+ .tctwins-accordion .tctwins-accordion-container .tctwins-accordion-button span {
887
+ display: block;
888
+ position: absolute;
889
+ height: 14px;
890
+ width: 14px;
891
+ right: 20px;
892
+ top: 18px;
893
+ }
894
+
895
+ .tctwins-accordion .tctwins-accordion-container .tctwins-accordion-button span:after {
896
+ content: '';
897
+ width: 14px;
898
+ height: 3px;
899
+ border-radius: 2px;
900
+ background-color: #fff;
901
+ position: absolute;
902
+ top: 6px;
903
+ }
904
+
905
+ .tctwins-accordion .tctwins-accordion-container .tctwins-accordion-button span:before {
906
+ content: '';
907
+ width: 14px;
908
+ height: 3px;
909
+ border-radius: 2px;
910
+ background-color: #fff;
911
+ position: absolute;
912
+ top: 6px;
913
+ transform: rotate(90deg);
914
+ transition: all 0.3s ease-in-out;
915
+ }
916
+
917
+ .tctwins-accordion .tctwins-accordion-container .tctwins-accordion-panel {
918
+ width: 100%;
919
+ color: #cfcfcf;
920
+ transition: all 0.2s ease-in-out;
921
+ opacity: 0;
922
+ height: auto;
923
+ max-height: 0;
924
+ padding: 0 10px;
925
+ }
926
+
927
+ .tctwins-accordion .tctwins-accordion-container.active .tctwins-accordion-button {
928
+ color: #cfcfcf;
929
+ }
930
+
931
+ .tctwins-accordion .tctwins-accordion-container.active .tctwins-accordion-button span::before {
932
+ transform: rotate(0deg);
933
+ }
934
+
935
+ .tctwins-accordion .tctwins-accordion-container.active .tctwins-accordion-panel {
936
+ padding: 0;
937
+ opacity: 1;
938
+ max-height: 500px;
939
+ }
940
+
941
+
942
+
943
+
944
+ .tctwins-propertiesTab .element-attributes {
945
+ padding-left: 10px;
946
+ }
947
+
948
+ .tctwins-propertiesTab .tctwins-tab-btn {
949
+ margin-left: 15px;
950
+ }
951
+
952
+ .tctwins-propertiesTab .title {
953
+ color: #CFCFCF;
954
+ font-size: 20px;
955
+ font-weight: normal;
956
+ padding-left: 0;
957
+ padding-top: 0;
958
+ padding-bottom: 20px;
959
+ margin-top: 12px;
960
+ }
961
+
962
+ .tctwins-propertiesTab .subtitle {
963
+ color: #CFCFCF;
964
+ font-size: 16px;
965
+ font-weight: normal;
966
+ padding-left: 0;
967
+ }
968
+
969
+ .tctwins-propertiesTab .subsubtitle {
970
+ color: #CFCFCF;
971
+ font-size: 14px;
972
+ font-weight: normal;
973
+ padding-left: 0;
974
+ }
975
+
976
+ .tctwins-propertiesTab .panel {
977
+ padding: 0 18px;
978
+ background: #03103F;
979
+ color: #CFCFCF;
980
+ max-height: 0;
981
+ overflow: hidden;
982
+ transition: max-height 0.15s;
983
+ }
984
+
985
+ .tctwins-propertiesTab input {
986
+ position: absolute;
987
+ opacity: 0;
988
+ z-index: -1;
989
+ }
990
+
991
+ .tctwins-propertiesTab .row {
992
+ display: flex;
993
+ }
994
+
995
+ .tctwins-propertiesTab .row .col {
996
+ flex: 1;
997
+ }
998
+
999
+ .tctwins-propertiesTab .row .col:last-child {
1000
+ margin-left: 1em;
1001
+ }
1002
+
1003
+ .tctwins-propertiesTab .tabs {
1004
+ border-radius: 8px;
1005
+ overflow: hidden;
1006
+ box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
1007
+ }
1008
+
1009
+ .tctwins-propertiesTab .tab {
1010
+ width: 100%;
1011
+ color: #CFCFCF;
1012
+ overflow: hidden;
1013
+ }
1014
+
1015
+ .tctwins-propertiesTab .tab-label {
1016
+ display: flex;
1017
+ padding: .5em .5em .5em 1em;
1018
+ font-weight: normal;
1019
+ cursor: pointer;
1020
+ }
1021
+
1022
+ .tctwins-propertiesTab .tab-label:hover {
1023
+ cursor: pointer;
1024
+ background: rgba(255, 255, 255, 0.2);
1025
+ }
1026
+
1027
+ .tctwins-propertiesTab .tab-label::before {
1028
+ content: "\276F";
1029
+ width: 1em;
1030
+ height: 1em;
1031
+ text-align: center;
1032
+ transition: all 0.35s;
1033
+ }
1034
+
1035
+ .tctwins-propertiesTab .tab-content {
1036
+ max-height: 0;
1037
+ padding: 0 1em;
1038
+ transition: all 0.35s;
1039
+ overflow: hidden;
1040
+ }
1041
+
1042
+ .tctwins-btn {
1043
+ box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.1);
1044
+ }
1045
+
1046
+ .tctwins-table {
1047
+ width: 100%;
1048
+ margin-bottom: 1rem;
1049
+ display: table;
1050
+ /*border-collapse: separate;*/
1051
+ box-sizing: border-box;
1052
+ text-indent: initial;
1053
+ /*border-spacing: 2px;*/
1054
+ }
1055
+
1056
+ .tctwins-table .td1,
1057
+ .tctwins-table th {
1058
+ padding: .6em;
1059
+ vertical-align: top;
1060
+ border-top: 1px solid #81819a;
1061
+ border-right: 1px solid #81819a;
1062
+ white-space: nowrap;
1063
+ font-weight: bold;
1064
+ width: 150px;
1065
+ max-width: 150px;
1066
+ }
1067
+
1068
+ .tctwins-table tr:first-child td {
1069
+ border-top: 0;
1070
+ }
1071
+
1072
+ .tctwins-table .td2,
1073
+ .tctwins-table th {
1074
+ padding: .5em;
1075
+ vertical-align: top;
1076
+ border-top: 1px solid #81819a;
1077
+ }
1078
+
1079
+ .tctwins-table th {
1080
+ text-align: inherit;
1081
+ }
1082
+
1083
+ .tctwins-table th {
1084
+ display: table-cell;
1085
+ vertical-align: inherit;
1086
+ font-weight: bold;
1087
+ }
1088
+
1089
+ .tctwins-no-prop-set-warning {
1090
+ visibility: visible
1091
+ }
1092
+
1093
+ .no-object-selected-warning {}