omnia-sass 3.5.169 → 3.5.186
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/omnia-sass.scss +275 -126
- package/package.json +4 -3
package/dist/omnia-sass.scss
CHANGED
@@ -8580,9 +8580,25 @@ $colors: (
|
|
8580
8580
|
}
|
8581
8581
|
}
|
8582
8582
|
}
|
8583
|
+
// Generate css variables, but using :host instead of :root to ensure compatibility in shadow dom
|
8584
|
+
:host {
|
8585
|
+
// Custom variable values only support SassScript inside `#{}`.
|
8586
|
+
@each $color, $value in $colors {
|
8587
|
+
--#{$color}: #{$value};
|
8588
|
+
}
|
8589
|
+
|
8590
|
+
@each $color, $value in $theme-colors {
|
8591
|
+
--#{$color}: #{$value};
|
8592
|
+
}
|
8593
|
+
|
8594
|
+
@each $bp, $value in $grid-breakpoints {
|
8595
|
+
--breakpoint-#{$bp}: #{$value};
|
8596
|
+
}
|
8597
|
+
}
|
8583
8598
|
|
8584
8599
|
$transition-duration: 0.1s;
|
8585
8600
|
$transition-effect: ease-in-out;
|
8601
|
+
|
8586
8602
|
.sidebar-container {
|
8587
8603
|
position: fixed;
|
8588
8604
|
display: inline;
|
@@ -8596,6 +8612,7 @@ $transition-effect: ease-in-out;
|
|
8596
8612
|
-moz-transition: width $transition-duration $transition-effect;
|
8597
8613
|
-o-transition: width $transition-duration $transition-effect;
|
8598
8614
|
transition: width $transition-duration $transition-effect;
|
8615
|
+
|
8599
8616
|
.sidebar {
|
8600
8617
|
height: calc(100vh - #{$topbar-height});
|
8601
8618
|
position: relative;
|
@@ -8603,6 +8620,7 @@ $transition-effect: ease-in-out;
|
|
8603
8620
|
overflow-y: auto;
|
8604
8621
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
8605
8622
|
}
|
8623
|
+
|
8606
8624
|
.sidebar-entry-text {
|
8607
8625
|
display: none;
|
8608
8626
|
}
|
@@ -8618,12 +8636,14 @@ $transition-effect: ease-in-out;
|
|
8618
8636
|
width: $side-panel-size-sm-open;
|
8619
8637
|
right: 0;
|
8620
8638
|
margin-top: $topbar-height;
|
8639
|
+
|
8621
8640
|
.notification-center {
|
8622
8641
|
height: calc(100vh - #{$topbar-height});
|
8623
8642
|
position: relative;
|
8624
8643
|
overflow-x: hidden;
|
8625
8644
|
overflow-y: auto;
|
8626
8645
|
}
|
8646
|
+
|
8627
8647
|
&.hidden {
|
8628
8648
|
width: 0;
|
8629
8649
|
min-width: 0;
|
@@ -8632,7 +8652,12 @@ $transition-effect: ease-in-out;
|
|
8632
8652
|
|
8633
8653
|
.content-container {
|
8634
8654
|
margin-top: calc(#{$topbar-height} + #{$color-page-indicator-bar-height});
|
8655
|
+
height: calc(100vh - (#{$topbar-height} + #{$color-page-indicator-bar-height}));
|
8635
8656
|
width: 100%;
|
8657
|
+
overflow-y: auto;
|
8658
|
+
display: flex;
|
8659
|
+
position: relative;
|
8660
|
+
flex-direction: column;
|
8636
8661
|
}
|
8637
8662
|
|
8638
8663
|
.sidebar-opened {
|
@@ -8641,6 +8666,7 @@ $transition-effect: ease-in-out;
|
|
8641
8666
|
height: 100%;
|
8642
8667
|
width: $sidebar-min-size-open;
|
8643
8668
|
}
|
8669
|
+
|
8644
8670
|
.content-container {
|
8645
8671
|
opacity: 0.25;
|
8646
8672
|
pointer-events: none;
|
@@ -8653,17 +8679,20 @@ $transition-effect: ease-in-out;
|
|
8653
8679
|
width: $sidebar-min-size;
|
8654
8680
|
min-width: $sidebar-min-size;
|
8655
8681
|
}
|
8682
|
+
|
8656
8683
|
.notification-center-container {
|
8657
8684
|
height: 100%;
|
8658
8685
|
width: $side-panel-min-size-open;
|
8659
8686
|
min-width: $side-panel-min-size-open;
|
8660
8687
|
margin-top: $topbar-height;
|
8661
8688
|
}
|
8689
|
+
|
8662
8690
|
.content-container {
|
8663
8691
|
margin-left: $sidebar-min-size;
|
8664
8692
|
margin-top: $topbar-height;
|
8665
8693
|
width: $content-size;
|
8666
8694
|
}
|
8695
|
+
|
8667
8696
|
.sidebar-opened {
|
8668
8697
|
.content-container {
|
8669
8698
|
pointer-events: all;
|
@@ -8740,6 +8769,11 @@ body.modal-scroll-fixer {
|
|
8740
8769
|
z-index: 1020 !important;
|
8741
8770
|
}
|
8742
8771
|
|
8772
|
+
//TODO: Move this to modeling styles
|
8773
|
+
.problems-panel-container {
|
8774
|
+
z-index: 1021 !important;
|
8775
|
+
}
|
8776
|
+
|
8743
8777
|
.color-navigation-bar {
|
8744
8778
|
z-index: 1035 !important;
|
8745
8779
|
}
|
@@ -9294,12 +9328,22 @@ $breadcrumb-height: 2.5rem;
|
|
9294
9328
|
}
|
9295
9329
|
}
|
9296
9330
|
|
9331
|
+
.horizontal-layout-element {
|
9332
|
+
display: flex;
|
9333
|
+
width: fit-content;
|
9334
|
+
}
|
9335
|
+
|
9336
|
+
.horizontal-layout-container {
|
9337
|
+
display: flex;
|
9338
|
+
}
|
9297
9339
|
|
9298
9340
|
.element-hidden {
|
9299
9341
|
display: none;
|
9342
|
+
|
9300
9343
|
&.element-show-if-hidden {
|
9301
9344
|
display: block;
|
9302
9345
|
opacity: 0.5;
|
9346
|
+
|
9303
9347
|
&.element-editable-list-header,
|
9304
9348
|
&.element-editable-list-cell,
|
9305
9349
|
&.list-header {
|
@@ -9311,6 +9355,7 @@ $breadcrumb-height: 2.5rem;
|
|
9311
9355
|
.element-dashboard {
|
9312
9356
|
padding-left: 0;
|
9313
9357
|
padding-right: 0;
|
9358
|
+
|
9314
9359
|
.col-form-label,
|
9315
9360
|
.form-field {
|
9316
9361
|
padding-left: 0;
|
@@ -9321,33 +9366,40 @@ $breadcrumb-height: 2.5rem;
|
|
9321
9366
|
.element-form {
|
9322
9367
|
padding-left: 0;
|
9323
9368
|
padding-right: 0;
|
9369
|
+
|
9324
9370
|
.form-group {
|
9325
9371
|
margin-bottom: 0.25rem;
|
9326
9372
|
}
|
9373
|
+
|
9327
9374
|
.col-form-label,
|
9328
9375
|
.form-field {
|
9329
9376
|
padding-left: 0;
|
9330
9377
|
padding-right: 0;
|
9331
9378
|
}
|
9379
|
+
|
9332
9380
|
:not(.element-editable-list) > .col-form-label {
|
9333
9381
|
padding-bottom: 0;
|
9334
9382
|
}
|
9383
|
+
|
9335
9384
|
.element-form-footer {
|
9336
9385
|
:not(.btn-group) {
|
9337
9386
|
> .btn:not(:first-child) {
|
9338
9387
|
margin-left: 0.2rem;
|
9339
9388
|
}
|
9389
|
+
|
9340
9390
|
> .btn:not(:last-child) {
|
9341
9391
|
margin-right: 0.2rem;
|
9342
9392
|
}
|
9343
9393
|
}
|
9344
9394
|
}
|
9395
|
+
|
9345
9396
|
.react-datepicker__input {
|
9346
9397
|
.react-datepicker__input_calendarIcon {
|
9347
9398
|
margin-left: 0;
|
9348
9399
|
margin-right: 0;
|
9349
9400
|
padding-right: 2px;
|
9350
9401
|
}
|
9402
|
+
|
9351
9403
|
.DateInput {
|
9352
9404
|
width: calc(100% - 28px);
|
9353
9405
|
}
|
@@ -9364,6 +9416,7 @@ tfoot .element-required-indicator-footer {
|
|
9364
9416
|
color: $gray-600;
|
9365
9417
|
padding: 0;
|
9366
9418
|
border: 0;
|
9419
|
+
|
9367
9420
|
&:hover {
|
9368
9421
|
color: $gray-800;
|
9369
9422
|
}
|
@@ -9383,15 +9436,18 @@ tfoot .element-required-indicator-footer {
|
|
9383
9436
|
.form-field-feedback-error {
|
9384
9437
|
color: $danger;
|
9385
9438
|
}
|
9439
|
+
|
9386
9440
|
.form-field-feedback-success {
|
9387
9441
|
color: $success;
|
9388
9442
|
}
|
9443
|
+
|
9389
9444
|
font-size: 1rem;
|
9390
9445
|
}
|
9391
9446
|
|
9392
9447
|
.tooltip-messages {
|
9393
9448
|
.tooltip {
|
9394
9449
|
opacity: 1;
|
9450
|
+
|
9395
9451
|
.tooltip-inner {
|
9396
9452
|
display: inline-block;
|
9397
9453
|
position: relative;
|
@@ -9446,27 +9502,34 @@ tfoot .element-required-indicator-footer {
|
|
9446
9502
|
overflow-x: auto;
|
9447
9503
|
overflow-y: visible;
|
9448
9504
|
}
|
9505
|
+
|
9449
9506
|
table {
|
9450
9507
|
border-bottom: $table-border-width solid $table-border-color;
|
9451
9508
|
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16);
|
9452
9509
|
}
|
9510
|
+
|
9453
9511
|
.element-editable-list-cell {
|
9454
9512
|
padding: 0;
|
9513
|
+
|
9455
9514
|
label:not(.form-check) {
|
9456
9515
|
display: none;
|
9457
9516
|
}
|
9517
|
+
|
9458
9518
|
.form-group {
|
9459
9519
|
margin: 0;
|
9520
|
+
|
9460
9521
|
.form-field-date {
|
9461
9522
|
.form-control,
|
9462
9523
|
.form-control.disabled {
|
9463
9524
|
border: none !important;
|
9464
9525
|
border-radius: 0;
|
9465
9526
|
}
|
9527
|
+
|
9466
9528
|
.react-datepicker-wrapper {
|
9467
9529
|
.react-datepicker__input-container {
|
9468
9530
|
border: none;
|
9469
9531
|
background-color: transparent;
|
9532
|
+
|
9470
9533
|
.DateInput {
|
9471
9534
|
background-color: transparent;
|
9472
9535
|
}
|
@@ -9474,13 +9537,16 @@ tfoot .element-required-indicator-footer {
|
|
9474
9537
|
}
|
9475
9538
|
}
|
9476
9539
|
}
|
9540
|
+
|
9477
9541
|
select {
|
9478
9542
|
border: none;
|
9479
9543
|
border-radius: 0px;
|
9480
9544
|
background-color: transparent;
|
9481
9545
|
}
|
9546
|
+
|
9482
9547
|
.form-check {
|
9483
9548
|
margin-left: calc(50% - 36px / 2);
|
9549
|
+
|
9484
9550
|
.checkmark {
|
9485
9551
|
height: 36px;
|
9486
9552
|
width: 36px;
|
@@ -9489,15 +9555,18 @@ tfoot .element-required-indicator-footer {
|
|
9489
9555
|
top: 1px;
|
9490
9556
|
}
|
9491
9557
|
}
|
9558
|
+
|
9492
9559
|
&.element-hidden {
|
9493
9560
|
display: none;
|
9494
9561
|
}
|
9495
9562
|
}
|
9563
|
+
|
9496
9564
|
.element-editable-list-show-details .btn,
|
9497
9565
|
.element-editable-list-cell-options .btn {
|
9498
9566
|
border-color: transparent;
|
9499
9567
|
border-radius: 0;
|
9500
9568
|
}
|
9569
|
+
|
9501
9570
|
.element-editable-list-header {
|
9502
9571
|
font-weight: normal;
|
9503
9572
|
padding: 0.5rem;
|
@@ -9505,6 +9574,7 @@ tfoot .element-required-indicator-footer {
|
|
9505
9574
|
overflow: hidden;
|
9506
9575
|
text-overflow: ellipsis;
|
9507
9576
|
}
|
9577
|
+
|
9508
9578
|
.element-editable-list-header-show-details,
|
9509
9579
|
.element-editable-list-show-details,
|
9510
9580
|
.element-editable-list-header-options,
|
@@ -9512,13 +9582,16 @@ tfoot .element-required-indicator-footer {
|
|
9512
9582
|
width: 3rem;
|
9513
9583
|
max-width: 3rem;
|
9514
9584
|
}
|
9585
|
+
|
9515
9586
|
.element-editable-list-show-details,
|
9516
9587
|
.element-editable-list-cell-options {
|
9517
9588
|
background-color: transparent;
|
9518
9589
|
}
|
9590
|
+
|
9519
9591
|
.element-editable-list-cell-options .btn {
|
9520
9592
|
float: right;
|
9521
9593
|
}
|
9594
|
+
|
9522
9595
|
.element-editable-list-cell {
|
9523
9596
|
.form-field {
|
9524
9597
|
.input-group {
|
@@ -9529,50 +9602,63 @@ tfoot .element-required-indicator-footer {
|
|
9529
9602
|
border-bottom: none;
|
9530
9603
|
border-color: $table-border-color;
|
9531
9604
|
background-color: transparent;
|
9605
|
+
|
9532
9606
|
&:hover {
|
9533
9607
|
background-color: $secondary;
|
9534
9608
|
}
|
9535
9609
|
}
|
9536
9610
|
}
|
9611
|
+
|
9537
9612
|
input {
|
9538
9613
|
border-radius: 0;
|
9539
9614
|
border: none;
|
9615
|
+
|
9540
9616
|
&:not(.form-field-disabled) {
|
9541
9617
|
background-color: transparent;
|
9542
9618
|
}
|
9543
9619
|
}
|
9544
9620
|
}
|
9545
9621
|
}
|
9622
|
+
|
9546
9623
|
.element-editable-list-row:not(.element-editable-list-details-row) {
|
9547
9624
|
.form-control {
|
9548
9625
|
background-color: transparent;
|
9549
9626
|
}
|
9627
|
+
|
9550
9628
|
&:hover {
|
9551
9629
|
background-color: $gray-200 !important;
|
9630
|
+
|
9552
9631
|
.element-editable-list-cell .form-field-disabled,
|
9553
9632
|
.checkmark.disabled {
|
9554
9633
|
background-color: $gray-400 !important;
|
9555
9634
|
}
|
9635
|
+
|
9556
9636
|
.checkmark {
|
9557
9637
|
border-color: $gray-400;
|
9558
9638
|
}
|
9559
9639
|
}
|
9560
9640
|
}
|
9641
|
+
|
9561
9642
|
.element-editable-list-norecords {
|
9562
9643
|
display: none;
|
9644
|
+
|
9563
9645
|
td {
|
9564
9646
|
padding: 0.5rem;
|
9565
9647
|
}
|
9566
9648
|
}
|
9649
|
+
|
9567
9650
|
.element-editable-list-row {
|
9568
9651
|
background-color: $input-bg;
|
9652
|
+
|
9569
9653
|
&.element-editable-list-row-created {
|
9570
9654
|
border: 3px solid $success;
|
9571
9655
|
}
|
9656
|
+
|
9572
9657
|
&.element-editable-list-row-removed {
|
9573
9658
|
border: 3px solid $danger;
|
9574
9659
|
text-decoration: line-through;
|
9575
9660
|
}
|
9661
|
+
|
9576
9662
|
> .element-editable-list-cell {
|
9577
9663
|
.form-field-history {
|
9578
9664
|
.input-group-append .btn {
|
@@ -9580,20 +9666,24 @@ tfoot .element-required-indicator-footer {
|
|
9580
9666
|
border: none;
|
9581
9667
|
}
|
9582
9668
|
}
|
9669
|
+
|
9583
9670
|
.form-field-reference .form-field-history {
|
9584
9671
|
> .input-group {
|
9585
9672
|
flex-wrap: nowrap;
|
9586
9673
|
}
|
9587
9674
|
}
|
9588
9675
|
}
|
9676
|
+
|
9589
9677
|
&:not(.element-editable-list-details-row) {
|
9590
9678
|
.element-input-feedback {
|
9591
9679
|
display: none;
|
9592
9680
|
}
|
9593
9681
|
}
|
9594
9682
|
}
|
9683
|
+
|
9595
9684
|
.element-editable-list-empty-line {
|
9596
9685
|
background-color: $input-bg;
|
9686
|
+
|
9597
9687
|
&:hover {
|
9598
9688
|
.element-editable-list-cell .form-field {
|
9599
9689
|
.input-group .input-group-prepend .btn,
|
@@ -9602,34 +9692,42 @@ tfoot .element-required-indicator-footer {
|
|
9602
9692
|
}
|
9603
9693
|
}
|
9604
9694
|
}
|
9695
|
+
|
9605
9696
|
.element-editable-list-cell .form-field {
|
9606
9697
|
.input-group .input-group-prepend .btn,
|
9607
9698
|
.form-control {
|
9608
9699
|
opacity: 0.3;
|
9609
9700
|
}
|
9610
9701
|
}
|
9702
|
+
|
9611
9703
|
&:not(.element-editable-list-details-row) {
|
9612
9704
|
.element-input-feedback {
|
9613
9705
|
display: none;
|
9614
9706
|
}
|
9615
9707
|
}
|
9616
9708
|
}
|
9709
|
+
|
9617
9710
|
.element-editable-list-row-invalid {
|
9618
9711
|
background-color: rgba($danger, 0.2) !important;
|
9619
9712
|
border-bottom-color: $danger;
|
9713
|
+
|
9620
9714
|
&:hover {
|
9621
9715
|
background-color: rgba($danger, 0.25) !important;
|
9622
9716
|
}
|
9717
|
+
|
9623
9718
|
& > td {
|
9624
9719
|
border-bottom-color: $danger;
|
9625
9720
|
}
|
9626
9721
|
}
|
9722
|
+
|
9627
9723
|
.element-editable-list-row-valid {
|
9628
9724
|
background-color: rgba($success, 0.2) !important;
|
9629
9725
|
border-bottom-color: $success;
|
9726
|
+
|
9630
9727
|
&:hover {
|
9631
9728
|
background-color: rgba($success, 0.25) !important;
|
9632
9729
|
}
|
9730
|
+
|
9633
9731
|
& > td {
|
9634
9732
|
border-bottom-color: $success;
|
9635
9733
|
}
|
@@ -9640,9 +9738,11 @@ tfoot .element-required-indicator-footer {
|
|
9640
9738
|
.element-editable-list-feedback-error {
|
9641
9739
|
color: $danger;
|
9642
9740
|
}
|
9741
|
+
|
9643
9742
|
.element-editable-list-feedback-success {
|
9644
9743
|
color: $success;
|
9645
9744
|
}
|
9745
|
+
|
9646
9746
|
font-size: 1rem;
|
9647
9747
|
}
|
9648
9748
|
|
@@ -9676,35 +9776,44 @@ tfoot .element-required-indicator-footer {
|
|
9676
9776
|
display: none;
|
9677
9777
|
}
|
9678
9778
|
}
|
9779
|
+
|
9679
9780
|
input {
|
9680
9781
|
pointer-events: none;
|
9681
9782
|
text-overflow: ellipsis;
|
9682
9783
|
}
|
9784
|
+
|
9683
9785
|
&.form-field-disabled .react-datepicker__input-container {
|
9684
9786
|
background-color: transparent;
|
9685
9787
|
}
|
9686
9788
|
}
|
9789
|
+
|
9687
9790
|
.element-editable-list-header-show-details,
|
9688
9791
|
.element-editable-list-show-details,
|
9689
9792
|
.element-editable-list-header-options,
|
9690
9793
|
.element-editable-list-cell-options {
|
9691
9794
|
display: none;
|
9692
9795
|
}
|
9796
|
+
|
9693
9797
|
.element-editable-list-empty-line {
|
9694
9798
|
display: none;
|
9695
9799
|
}
|
9800
|
+
|
9696
9801
|
.element-editable-list-norecords {
|
9697
9802
|
display: table-row;
|
9698
9803
|
}
|
9804
|
+
|
9699
9805
|
.element-editable-list-table {
|
9700
9806
|
width: 100% !important;
|
9701
9807
|
}
|
9808
|
+
|
9702
9809
|
.element-editable-list-details-row {
|
9703
9810
|
display: none;
|
9704
9811
|
}
|
9812
|
+
|
9705
9813
|
thead th {
|
9706
9814
|
display: none;
|
9707
9815
|
}
|
9816
|
+
|
9708
9817
|
td,
|
9709
9818
|
th {
|
9710
9819
|
display: block;
|
@@ -9712,9 +9821,11 @@ tfoot .element-required-indicator-footer {
|
|
9712
9821
|
text-align: right;
|
9713
9822
|
border: none;
|
9714
9823
|
}
|
9824
|
+
|
9715
9825
|
tr {
|
9716
9826
|
border: 1px solid $table-border-color;
|
9717
9827
|
}
|
9828
|
+
|
9718
9829
|
td[data-label]:before {
|
9719
9830
|
content: attr(data-label);
|
9720
9831
|
float: left;
|
@@ -9729,6 +9840,7 @@ tfoot .element-required-indicator-footer {
|
|
9729
9840
|
text-align: left;
|
9730
9841
|
color: $input-color !important;
|
9731
9842
|
}
|
9843
|
+
|
9732
9844
|
.element-editable-list-cell {
|
9733
9845
|
.form-group {
|
9734
9846
|
display: flex;
|
@@ -9738,9 +9850,11 @@ tfoot .element-required-indicator-footer {
|
|
9738
9850
|
.react-datepicker__input-container {
|
9739
9851
|
border: none;
|
9740
9852
|
background-color: transparent;
|
9853
|
+
|
9741
9854
|
.DateInput {
|
9742
9855
|
background-color: transparent;
|
9743
9856
|
}
|
9857
|
+
|
9744
9858
|
.react-datepicker__input-container_calendarIcon,
|
9745
9859
|
.react-datepicker__input-container_clearDate {
|
9746
9860
|
display: none;
|
@@ -9748,34 +9862,41 @@ tfoot .element-required-indicator-footer {
|
|
9748
9862
|
}
|
9749
9863
|
}
|
9750
9864
|
}
|
9865
|
+
|
9751
9866
|
.form-field-boolean,
|
9752
9867
|
&.element-web-component {
|
9753
9868
|
margin-right: 10px;
|
9754
9869
|
}
|
9755
9870
|
}
|
9871
|
+
|
9756
9872
|
&:first-child:not(.element-editable-list-show-details),
|
9757
9873
|
&.element-editable-list-show-details + .element-editable-list-cell {
|
9758
9874
|
margin-top: 1rem;
|
9759
9875
|
}
|
9760
9876
|
}
|
9877
|
+
|
9761
9878
|
.element-editable-list-row-messages {
|
9762
9879
|
td {
|
9763
9880
|
text-align: left;
|
9764
9881
|
padding: calc(#{$input-padding-y} + #{$input-border-width}) $input-padding-x-sm;
|
9882
|
+
|
9765
9883
|
&:first-child {
|
9766
9884
|
border-left: none;
|
9767
9885
|
}
|
9768
9886
|
}
|
9769
9887
|
}
|
9888
|
+
|
9770
9889
|
.element-editable-list-row:nth-child(even) {
|
9771
9890
|
background: $gray-100;
|
9772
9891
|
}
|
9773
9892
|
}
|
9893
|
+
|
9774
9894
|
.element-multiple-value-element {
|
9775
9895
|
.element-editable-list-table {
|
9776
9896
|
width: 100% !important;
|
9777
9897
|
}
|
9778
9898
|
}
|
9899
|
+
|
9779
9900
|
.element-required-indicator-footer {
|
9780
9901
|
display: none;
|
9781
9902
|
}
|
@@ -9786,11 +9907,13 @@ tfoot .element-required-indicator-footer {
|
|
9786
9907
|
padding-left: 0;
|
9787
9908
|
padding-right: 0;
|
9788
9909
|
}
|
9910
|
+
|
9789
9911
|
thead th,
|
9790
9912
|
tbody td {
|
9791
9913
|
overflow: hidden;
|
9792
9914
|
text-overflow: ellipsis;
|
9793
9915
|
}
|
9916
|
+
|
9794
9917
|
thead th {
|
9795
9918
|
position: relative;
|
9796
9919
|
}
|
@@ -9805,6 +9928,7 @@ tfoot .element-required-indicator-footer {
|
|
9805
9928
|
cursor: col-resize;
|
9806
9929
|
user-select: none;
|
9807
9930
|
border-right: 1px dashed $table-border-color;
|
9931
|
+
|
9808
9932
|
&:hover {
|
9809
9933
|
border-right: 2px dashed darken($table-border-color, 25%);
|
9810
9934
|
}
|
@@ -9816,9 +9940,11 @@ tfoot .element-required-indicator-footer {
|
|
9816
9940
|
color: $warning;
|
9817
9941
|
}
|
9818
9942
|
}
|
9943
|
+
|
9819
9944
|
.element-web-component-container {
|
9820
9945
|
padding: 0;
|
9821
9946
|
}
|
9947
|
+
|
9822
9948
|
.element-web-component-preview {
|
9823
9949
|
height: 100px;
|
9824
9950
|
width: 100%;
|
@@ -9831,6 +9957,7 @@ tfoot .element-required-indicator-footer {
|
|
9831
9957
|
|
9832
9958
|
.element-container {
|
9833
9959
|
padding: 0.5rem 0;
|
9960
|
+
|
9834
9961
|
.element-container-open-btn {
|
9835
9962
|
display: flex;
|
9836
9963
|
align-items: center;
|
@@ -9866,6 +9993,7 @@ tfoot .element-required-indicator-footer {
|
|
9866
9993
|
|
9867
9994
|
.tree-node {
|
9868
9995
|
color: $white;
|
9996
|
+
|
9869
9997
|
&:not(.tree-selected-node) {
|
9870
9998
|
background-color: $gray-500;
|
9871
9999
|
}
|
@@ -9875,77 +10003,15 @@ tfoot .element-required-indicator-footer {
|
|
9875
10003
|
background-color: $gray-100;
|
9876
10004
|
}
|
9877
10005
|
|
9878
|
-
.elements-row-wrapper {
|
9879
|
-
position: relative;
|
9880
|
-
}
|
9881
|
-
|
9882
|
-
.elements-row-wrapper-over {
|
9883
|
-
border: 1px solid $primary;
|
9884
|
-
padding-bottom: 30px;
|
9885
|
-
padding-top: 30px;
|
9886
|
-
}
|
9887
|
-
|
9888
|
-
.elements-row-wrapper-over {
|
9889
|
-
& .elements-row-empty {
|
9890
|
-
padding-bottom: 0px !important;
|
9891
|
-
padding-top: 0px !important;
|
9892
|
-
}
|
9893
|
-
}
|
9894
|
-
|
9895
|
-
.elements-row-empty {
|
9896
|
-
background: repeating-linear-gradient(-45deg, $white, $white 5px, lightgrey 5px, lightgrey 10px);
|
9897
|
-
height: 90px;
|
9898
|
-
}
|
9899
|
-
|
9900
|
-
.empty-drop-element {
|
9901
|
-
background: repeating-linear-gradient(-45deg, $white, $white 5px, lightgrey 5px, lightgrey 10px);
|
9902
|
-
height: 38px;
|
9903
|
-
}
|
9904
|
-
|
9905
|
-
.empty-drop-element-over {
|
9906
|
-
background: $primary !important;
|
9907
|
-
}
|
9908
|
-
|
9909
|
-
.dropPosition {
|
9910
|
-
z-index: 100;
|
9911
|
-
background-color: $primary;
|
9912
|
-
position: absolute;
|
9913
|
-
top: 0;
|
9914
|
-
bottom: 0;
|
9915
|
-
width: 1rem;
|
9916
|
-
text-align: center;
|
9917
|
-
color: $white;
|
9918
|
-
font-weight: bold;
|
9919
|
-
}
|
9920
|
-
|
9921
|
-
.dropPositionSize {
|
9922
|
-
background-color: gray;
|
9923
|
-
opacity: 0.2;
|
9924
|
-
position: absolute;
|
9925
|
-
top: 0;
|
9926
|
-
bottom: 0;
|
9927
|
-
right: 0;
|
9928
|
-
left: 0;
|
9929
|
-
}
|
9930
|
-
|
9931
|
-
.dropPositionIndicator {
|
9932
|
-
width: 1rem;
|
9933
|
-
position: absolute;
|
9934
|
-
top: 0;
|
9935
|
-
bottom: 0;
|
9936
|
-
background-color: $primary;
|
9937
|
-
text-align: center;
|
9938
|
-
color: $white;
|
9939
|
-
font-weight: bold;
|
9940
|
-
}
|
9941
|
-
|
9942
10006
|
.element-calendar {
|
9943
10007
|
.element-calendar-controls {
|
9944
10008
|
border-bottom: 1px solid $border-color;
|
10009
|
+
|
9945
10010
|
.text-muted {
|
9946
10011
|
color: $body-color !important;
|
9947
10012
|
}
|
9948
10013
|
}
|
10014
|
+
|
9949
10015
|
.element-calendar-preview {
|
9950
10016
|
width: 100%;
|
9951
10017
|
min-height: 250px;
|
@@ -9953,13 +10019,16 @@ tfoot .element-required-indicator-footer {
|
|
9953
10019
|
color: grey;
|
9954
10020
|
padding: 1rem;
|
9955
10021
|
}
|
10022
|
+
|
9956
10023
|
.element-calendar-caption-entry:not(.element-calendar-caption-entry-inactive) .element-calendar-caption-entry-text {
|
9957
10024
|
&:hover {
|
9958
10025
|
opacity: 0.8;
|
9959
10026
|
}
|
9960
10027
|
}
|
10028
|
+
|
9961
10029
|
.element-calendar-caption-entry-inactive .element-calendar-caption-entry-text {
|
9962
10030
|
opacity: 0.3;
|
10031
|
+
|
9963
10032
|
&:hover {
|
9964
10033
|
opacity: 0.6;
|
9965
10034
|
}
|
@@ -9971,10 +10040,12 @@ tfoot .element-required-indicator-footer {
|
|
9971
10040
|
margin-bottom: 5px;
|
9972
10041
|
margin-top: 5px;
|
9973
10042
|
margin-left: 1px;
|
10043
|
+
|
9974
10044
|
&:hover {
|
9975
10045
|
border-left-color: lightgrey;
|
9976
10046
|
background-color: lighten(lightgrey, 10%);
|
9977
10047
|
}
|
10048
|
+
|
9978
10049
|
.element-menu-entry-edit-child-details {
|
9979
10050
|
padding: 0;
|
9980
10051
|
border: 0;
|
@@ -9994,9 +10065,11 @@ tfoot .element-required-indicator-footer {
|
|
9994
10065
|
padding-left: 1rem;
|
9995
10066
|
padding-bottom: 0.25rem;
|
9996
10067
|
font-size: 0.8rem;
|
10068
|
+
|
9997
10069
|
span {
|
9998
10070
|
padding-left: 0.5rem;
|
9999
10071
|
}
|
10072
|
+
|
10000
10073
|
&:hover {
|
10001
10074
|
cursor: pointer;
|
10002
10075
|
}
|
@@ -10005,22 +10078,28 @@ tfoot .element-required-indicator-footer {
|
|
10005
10078
|
.element-menu {
|
10006
10079
|
background-color: $sidebar-bg-color;
|
10007
10080
|
border-right: 1px solid $sidebar-border-color;
|
10081
|
+
|
10008
10082
|
.row {
|
10009
10083
|
margin: 0;
|
10010
10084
|
}
|
10085
|
+
|
10011
10086
|
div[class^='col-'] {
|
10012
10087
|
padding: 0;
|
10013
10088
|
}
|
10089
|
+
|
10014
10090
|
&:first-child {
|
10015
10091
|
padding-top: 0.25rem;
|
10016
10092
|
}
|
10093
|
+
|
10017
10094
|
.element-menu-toggler:focus {
|
10018
10095
|
box-shadow: none;
|
10019
10096
|
}
|
10097
|
+
|
10020
10098
|
.element-menu-entry-container {
|
10021
10099
|
.element-menu-entry {
|
10022
10100
|
border: none;
|
10023
10101
|
}
|
10102
|
+
|
10024
10103
|
border: none;
|
10025
10104
|
border-bottom-width: 0.125rem !important;
|
10026
10105
|
border-bottom-style: solid;
|
@@ -10029,6 +10108,7 @@ tfoot .element-required-indicator-footer {
|
|
10029
10108
|
button.element-menu-entry {
|
10030
10109
|
width: 100%;
|
10031
10110
|
}
|
10111
|
+
|
10032
10112
|
.element-menu-entry,
|
10033
10113
|
.element-menu-toggler {
|
10034
10114
|
border-radius: 0 !important;
|
@@ -10039,6 +10119,7 @@ tfoot .element-required-indicator-footer {
|
|
10039
10119
|
margin-bottom: 1px;
|
10040
10120
|
border-bottom-width: 2px !important;
|
10041
10121
|
border-bottom-style: solid;
|
10122
|
+
|
10042
10123
|
.element-menu-entry-icon {
|
10043
10124
|
display: inline-flex;
|
10044
10125
|
|
@@ -10073,26 +10154,31 @@ tfoot .element-required-indicator-footer {
|
|
10073
10154
|
text-decoration: none;
|
10074
10155
|
}
|
10075
10156
|
}
|
10157
|
+
|
10076
10158
|
.element-menu-toggler {
|
10077
10159
|
border: none !important;
|
10078
10160
|
text-align: center;
|
10079
10161
|
}
|
10162
|
+
|
10080
10163
|
&.element-menu-opened {
|
10081
10164
|
.element-menu-entry-container {
|
10082
10165
|
&:not(:hover):not(:active):not(:focus) {
|
10083
10166
|
border-bottom-color: transparent !important;
|
10084
10167
|
}
|
10085
10168
|
}
|
10169
|
+
|
10086
10170
|
.element-menu-entry {
|
10087
10171
|
justify-content: unset !important;
|
10088
10172
|
background-color: transparent !important;
|
10089
10173
|
width: 80%;
|
10174
|
+
|
10090
10175
|
&:hover,
|
10091
10176
|
&:active,
|
10092
10177
|
&:focus {
|
10093
10178
|
text-decoration: none;
|
10094
10179
|
}
|
10095
10180
|
}
|
10181
|
+
|
10096
10182
|
.element-menu-entry-text {
|
10097
10183
|
padding-left: 0.5rem;
|
10098
10184
|
display: block;
|
@@ -10101,8 +10187,10 @@ tfoot .element-required-indicator-footer {
|
|
10101
10187
|
overflow: hidden;
|
10102
10188
|
text-overflow: ellipsis;
|
10103
10189
|
}
|
10190
|
+
|
10104
10191
|
.element-menu-toggler {
|
10105
10192
|
text-align: left;
|
10193
|
+
|
10106
10194
|
&:hover,
|
10107
10195
|
&:active,
|
10108
10196
|
&:focus {
|
@@ -10137,6 +10225,7 @@ tfoot .element-required-indicator-footer {
|
|
10137
10225
|
.element-menu-toggler {
|
10138
10226
|
.element-menu-entry-icon {
|
10139
10227
|
display: inline-block !important;
|
10228
|
+
|
10140
10229
|
i {
|
10141
10230
|
display: table-cell !important;
|
10142
10231
|
text-align: center !important;
|
@@ -10145,9 +10234,11 @@ tfoot .element-required-indicator-footer {
|
|
10145
10234
|
}
|
10146
10235
|
}
|
10147
10236
|
}
|
10237
|
+
|
10148
10238
|
.element-menu-entry-highlight {
|
10149
10239
|
font-weight: bold;
|
10150
10240
|
}
|
10241
|
+
|
10151
10242
|
&.element-menu-editor {
|
10152
10243
|
a:not(.element-menu-back-btn) {
|
10153
10244
|
color: $link-color;
|
@@ -10160,18 +10251,22 @@ tfoot .element-required-indicator-footer {
|
|
10160
10251
|
&:not(.element-menu-opened) {
|
10161
10252
|
.element-menu-entry {
|
10162
10253
|
display: flex !important;
|
10254
|
+
|
10163
10255
|
&:not(:hover):not(:active):not(:focus) {
|
10164
10256
|
background-color: transparent !important;
|
10165
10257
|
}
|
10258
|
+
|
10166
10259
|
&:hover,
|
10167
10260
|
&:active,
|
10168
10261
|
&:focus {
|
10169
10262
|
text-decoration: none;
|
10170
10263
|
color: white;
|
10264
|
+
|
10171
10265
|
i {
|
10172
10266
|
color: white;
|
10173
10267
|
}
|
10174
10268
|
}
|
10269
|
+
|
10175
10270
|
.element-menu-entry-text {
|
10176
10271
|
position: fixed;
|
10177
10272
|
left: calc(100% - #{$content-size}) !important;
|
@@ -10185,6 +10280,7 @@ tfoot .element-required-indicator-footer {
|
|
10185
10280
|
max-width: 200px;
|
10186
10281
|
display: none;
|
10187
10282
|
border-top: 2px solid;
|
10283
|
+
|
10188
10284
|
&.show {
|
10189
10285
|
display: block;
|
10190
10286
|
}
|
@@ -10205,12 +10301,14 @@ tfoot .element-required-indicator-footer {
|
|
10205
10301
|
.element-container > button > button {
|
10206
10302
|
width: 90%;
|
10207
10303
|
}
|
10304
|
+
|
10208
10305
|
.element-editable-list-header,
|
10209
10306
|
.col-form-label {
|
10210
10307
|
button {
|
10211
10308
|
width: 100%;
|
10212
10309
|
}
|
10213
10310
|
}
|
10311
|
+
|
10214
10312
|
.element-container > button,
|
10215
10313
|
.element-editable-list-header,
|
10216
10314
|
.col-form-label {
|
@@ -10218,14 +10316,17 @@ tfoot .element-required-indicator-footer {
|
|
10218
10316
|
text-align: left;
|
10219
10317
|
}
|
10220
10318
|
}
|
10319
|
+
|
10221
10320
|
.element-label-container {
|
10222
10321
|
display: inline-grid;
|
10223
10322
|
width: 100%;
|
10323
|
+
|
10224
10324
|
.element-label-content {
|
10225
10325
|
overflow-x: hidden;
|
10226
10326
|
text-overflow: ellipsis;
|
10227
10327
|
display: flex;
|
10228
10328
|
align-items: center;
|
10329
|
+
|
10229
10330
|
.element-label-text {
|
10230
10331
|
overflow-x: hidden;
|
10231
10332
|
text-overflow: ellipsis;
|
@@ -10246,6 +10347,7 @@ tfoot .element-required-indicator-footer {
|
|
10246
10347
|
.element-editable-list .element-editable-list-row {
|
10247
10348
|
.element-input-value-changed {
|
10248
10349
|
border: 2px solid lighten($warning, 25%) !important;
|
10350
|
+
|
10249
10351
|
.form-field-history {
|
10250
10352
|
.form-control,
|
10251
10353
|
.form-check-container .checkmark,
|
@@ -10263,44 +10365,6 @@ tfoot .element-required-indicator-footer {
|
|
10263
10365
|
}
|
10264
10366
|
}
|
10265
10367
|
|
10266
|
-
.editor-wrapper-unwrapped,
|
10267
|
-
.editor-wrapper-inner {
|
10268
|
-
position: relative;
|
10269
|
-
border: 0.15rem solid transparent;
|
10270
|
-
}
|
10271
|
-
|
10272
|
-
.selected-element {
|
10273
|
-
border: 0.15rem solid $primary;
|
10274
|
-
}
|
10275
|
-
|
10276
|
-
.focused-element {
|
10277
|
-
border: 0.15rem dashed $primary;
|
10278
|
-
}
|
10279
|
-
|
10280
|
-
.droppable-element {
|
10281
|
-
position: relative;
|
10282
|
-
&.top {
|
10283
|
-
background: linear-gradient(360deg, transparent calc(100% - 1rem), $primary 1rem);
|
10284
|
-
}
|
10285
|
-
&.bottom {
|
10286
|
-
background: linear-gradient(180deg, transparent calc(100% - 1rem), $primary 1rem);
|
10287
|
-
}
|
10288
|
-
&.right {
|
10289
|
-
background: linear-gradient(90deg, transparent calc(100% - 1rem), $primary 1rem);
|
10290
|
-
}
|
10291
|
-
&.left {
|
10292
|
-
background: linear-gradient(270deg, transparent calc(100% - 1rem), $primary 1rem);
|
10293
|
-
}
|
10294
|
-
}
|
10295
|
-
|
10296
|
-
.panel-option {
|
10297
|
-
display: block;
|
10298
|
-
position: absolute;
|
10299
|
-
top: 0;
|
10300
|
-
right: 0;
|
10301
|
-
z-index: 1009;
|
10302
|
-
}
|
10303
|
-
|
10304
10368
|
.feedback-message {
|
10305
10369
|
background-color: transparent;
|
10306
10370
|
border-radius: 0;
|
@@ -10324,24 +10388,30 @@ tfoot .element-required-indicator-footer {
|
|
10324
10388
|
.form-field {
|
10325
10389
|
.react-datepicker-wrapper {
|
10326
10390
|
width: 100%;
|
10391
|
+
|
10327
10392
|
.DateInput_fang {
|
10328
10393
|
display: none;
|
10329
10394
|
}
|
10395
|
+
|
10330
10396
|
.react-datepicker-wrapper_picker {
|
10331
10397
|
top: 40px !important;
|
10332
10398
|
}
|
10399
|
+
|
10333
10400
|
.react-datepicker__input-container input {
|
10334
10401
|
height: 100%;
|
10335
10402
|
width: 100%;
|
10336
10403
|
border-radius: $border-radius;
|
10337
10404
|
display: block;
|
10338
10405
|
}
|
10406
|
+
|
10339
10407
|
.DayPickerKeyboardShortcuts_show__bottomRight {
|
10340
10408
|
border-right-color: $primary;
|
10341
10409
|
}
|
10410
|
+
|
10342
10411
|
.DayPickerKeyboardShortcuts_show__bottomRight::before {
|
10343
10412
|
border-right-color: $link-color !important;
|
10344
10413
|
}
|
10414
|
+
|
10345
10415
|
.react-datepicker__input-container_picker,
|
10346
10416
|
.DayPicker__withBorder,
|
10347
10417
|
.CalendarMonthGrid,
|
@@ -10351,35 +10421,43 @@ tfoot .element-required-indicator-footer {
|
|
10351
10421
|
.DayPickerKeyboardShortcuts_panel {
|
10352
10422
|
background: $body-bg;
|
10353
10423
|
}
|
10424
|
+
|
10354
10425
|
.CalendarDay__default:not(.CalendarDay__selected):hover {
|
10355
10426
|
background: lighten($primary, 30%) !important;
|
10356
10427
|
color: $body-bg !important;
|
10357
10428
|
}
|
10429
|
+
|
10358
10430
|
.DayPickerNavigation_leftButton__horizontalDefault,
|
10359
10431
|
.DayPickerNavigation_rightButton__horizontalDefault,
|
10360
10432
|
.CalendarDay__default,
|
10361
10433
|
.DayPickerKeyboardShortcuts_panel {
|
10362
10434
|
border-color: $nav-tabs-border-color;
|
10363
10435
|
}
|
10436
|
+
|
10364
10437
|
.DayPickerNavigation_svg__horizontal,
|
10365
10438
|
.DayPickerKeyboardShortcuts_closeSvg {
|
10366
10439
|
fill: $body-color;
|
10367
10440
|
}
|
10441
|
+
|
10368
10442
|
.CalendarDay__default,
|
10369
10443
|
.DayPickerKeyboardShortcuts_panel {
|
10370
10444
|
color: $body-color;
|
10371
10445
|
}
|
10446
|
+
|
10372
10447
|
.CalendarDay__selected {
|
10373
10448
|
background: $link-color !important;
|
10374
10449
|
border-color: $link-color !important;
|
10375
10450
|
}
|
10451
|
+
|
10376
10452
|
.DayPicker__withBorder {
|
10377
10453
|
border-radius: $border-radius;
|
10378
10454
|
}
|
10455
|
+
|
10379
10456
|
.DateInput {
|
10380
10457
|
line-height: 1.25;
|
10381
10458
|
padding: 0;
|
10382
10459
|
}
|
10460
|
+
|
10383
10461
|
.DateInput_input {
|
10384
10462
|
font-size: 1rem;
|
10385
10463
|
font-family: $font-family-base;
|
@@ -10390,23 +10468,29 @@ tfoot .element-required-indicator-footer {
|
|
10390
10468
|
background: transparent !important;
|
10391
10469
|
outline: none;
|
10392
10470
|
}
|
10471
|
+
|
10393
10472
|
.DateInput_input__focused {
|
10394
10473
|
background-color: transparent;
|
10395
10474
|
border-radius: 0;
|
10396
10475
|
}
|
10476
|
+
|
10397
10477
|
.react-datepicker-wrapper__picker {
|
10398
10478
|
top: 40px;
|
10399
10479
|
}
|
10480
|
+
|
10400
10481
|
.react-datepicker__input-container_clearDate {
|
10401
10482
|
margin: 0;
|
10483
|
+
|
10402
10484
|
&:hover {
|
10403
10485
|
background-color: transparent;
|
10486
|
+
|
10404
10487
|
.react-datepicker__input-container_clearDate_svg {
|
10405
10488
|
fill: $primary;
|
10406
10489
|
}
|
10407
10490
|
}
|
10408
10491
|
}
|
10409
10492
|
}
|
10493
|
+
|
10410
10494
|
.SingleDatePickerInput_calendarIcon {
|
10411
10495
|
display: inline-flex;
|
10412
10496
|
margin: 0;
|
@@ -10415,70 +10499,87 @@ tfoot .element-required-indicator-footer {
|
|
10415
10499
|
background-color: transparent;
|
10416
10500
|
border: 0;
|
10417
10501
|
}
|
10502
|
+
|
10418
10503
|
.form-field-number {
|
10419
10504
|
text-align: right;
|
10420
10505
|
}
|
10506
|
+
|
10421
10507
|
.form-field-disabled,
|
10422
10508
|
&.form-field-date .form-control.disabled {
|
10423
10509
|
background-color: $input-disabled-bg !important;
|
10510
|
+
|
10424
10511
|
.DateInput_input {
|
10425
10512
|
background-color: $input-disabled-bg;
|
10426
10513
|
font-style: normal;
|
10427
10514
|
}
|
10515
|
+
|
10428
10516
|
.SingleDatePickerInput_calendarIcon {
|
10429
10517
|
cursor: no-drop;
|
10430
10518
|
}
|
10431
10519
|
}
|
10520
|
+
|
10432
10521
|
&.form-field-invalid {
|
10433
10522
|
.react-datepicker-wrapperInput {
|
10434
10523
|
border: 1px solid $danger;
|
10435
10524
|
}
|
10525
|
+
|
10436
10526
|
.element-input-feedback {
|
10437
10527
|
display: block;
|
10438
10528
|
}
|
10439
10529
|
}
|
10530
|
+
|
10440
10531
|
&.form-field-valid {
|
10441
10532
|
.react-datepicker-wrapperInput {
|
10442
10533
|
border: 1px solid $success;
|
10443
10534
|
}
|
10535
|
+
|
10444
10536
|
.element-input-feedback {
|
10445
10537
|
display: block;
|
10446
10538
|
}
|
10447
10539
|
}
|
10540
|
+
|
10448
10541
|
// Placeholder text color
|
10449
10542
|
::-webkit-input-placeholder {
|
10450
10543
|
/* WebKit, Blink, Edge */
|
10451
10544
|
color: rgba($black, 0.35);
|
10452
10545
|
}
|
10546
|
+
|
10453
10547
|
:-moz-placeholder {
|
10454
10548
|
/* Mozilla Firefox 4 to 18 */
|
10455
10549
|
color: rgba($black, 0.35);
|
10456
10550
|
opacity: 1;
|
10457
10551
|
}
|
10552
|
+
|
10458
10553
|
::-moz-placeholder {
|
10459
10554
|
/* Mozilla Firefox 19+ */
|
10460
10555
|
color: rgba($black, 0.35);
|
10461
10556
|
opacity: 1;
|
10462
10557
|
}
|
10558
|
+
|
10463
10559
|
:-ms-input-placeholder {
|
10464
10560
|
/* Internet Explorer 10-11 */
|
10465
10561
|
color: rgba($black, 0.35);
|
10466
10562
|
}
|
10563
|
+
|
10467
10564
|
::-ms-input-placeholder {
|
10468
10565
|
/* Microsoft Edge */
|
10469
10566
|
color: rgba($black, 0.35);
|
10470
10567
|
}
|
10568
|
+
|
10471
10569
|
.input-group-addon {
|
10472
10570
|
padding: 0;
|
10571
|
+
|
10473
10572
|
.btn {
|
10474
10573
|
border: none;
|
10475
10574
|
border-top-right-radius: 0;
|
10476
10575
|
border-bottom-right-radius: 0;
|
10477
10576
|
}
|
10478
10577
|
}
|
10578
|
+
|
10479
10579
|
.input-group .btn {
|
10480
10580
|
border-color: $input-border-color;
|
10481
10581
|
}
|
10582
|
+
|
10482
10583
|
/* Checkbox: Customize the label (the container) */
|
10483
10584
|
.form-check-container {
|
10484
10585
|
cursor: pointer;
|
@@ -10487,16 +10588,19 @@ tfoot .element-required-indicator-footer {
|
|
10487
10588
|
-ms-user-select: none;
|
10488
10589
|
user-select: none;
|
10489
10590
|
height: 38px; // 36px + 2px margin
|
10591
|
+
|
10490
10592
|
/* Hide the browser's default checkbox */
|
10491
10593
|
input {
|
10492
10594
|
position: absolute;
|
10493
10595
|
opacity: 0;
|
10494
10596
|
cursor: pointer;
|
10597
|
+
|
10495
10598
|
/* When the checkbox is checked, add a blue background */
|
10496
10599
|
&:checked ~ .checkmark {
|
10497
10600
|
background-color: white;
|
10498
10601
|
}
|
10499
10602
|
}
|
10603
|
+
|
10500
10604
|
/* Create a custom checkbox */
|
10501
10605
|
.checkmark {
|
10502
10606
|
position: absolute;
|
@@ -10507,6 +10611,7 @@ tfoot .element-required-indicator-footer {
|
|
10507
10611
|
background-color: white;
|
10508
10612
|
border-radius: 0.25rem;
|
10509
10613
|
border: 1px solid $input-border-color;
|
10614
|
+
|
10510
10615
|
/* Create the checkmark/indicator (hidden when not checked) */
|
10511
10616
|
&:after {
|
10512
10617
|
content: '';
|
@@ -10523,24 +10628,29 @@ tfoot .element-required-indicator-footer {
|
|
10523
10628
|
-ms-transform: rotate(45deg);
|
10524
10629
|
transform: rotate(45deg);
|
10525
10630
|
}
|
10631
|
+
|
10526
10632
|
&.disabled {
|
10527
10633
|
background-color: $input-disabled-bg !important;
|
10528
10634
|
cursor: default;
|
10529
10635
|
}
|
10530
10636
|
}
|
10637
|
+
|
10531
10638
|
/* On mouse-over, add a grey background color */
|
10532
10639
|
&:hover input ~ .checkmark {
|
10533
10640
|
background-color: #eee;
|
10534
10641
|
}
|
10642
|
+
|
10535
10643
|
/* Show the checkmark when checked */
|
10536
10644
|
input:checked ~ .checkmark:after {
|
10537
10645
|
display: block;
|
10538
10646
|
}
|
10647
|
+
|
10539
10648
|
input:focus ~ .checkmark {
|
10540
10649
|
color: $input-focus-color;
|
10541
10650
|
background-color: $input-focus-bg;
|
10542
10651
|
border-color: $input-focus-border-color;
|
10543
10652
|
outline: 0;
|
10653
|
+
|
10544
10654
|
// Avoid using mixin so we can pass custom focus shadow properly
|
10545
10655
|
@if $enable-shadows {
|
10546
10656
|
box-shadow: $input-box-shadow, $input-focus-box-shadow;
|
@@ -10567,6 +10677,7 @@ tfoot .element-required-indicator-footer {
|
|
10567
10677
|
border-radius: 0rem;
|
10568
10678
|
width: auto;
|
10569
10679
|
}
|
10680
|
+
|
10570
10681
|
.form-control-property-editor-checkbox {
|
10571
10682
|
height: 19px !important;
|
10572
10683
|
width: 19px !important;
|
@@ -10574,6 +10685,7 @@ tfoot .element-required-indicator-footer {
|
|
10574
10685
|
font-size: 1rem;
|
10575
10686
|
border-radius: 0rem;
|
10576
10687
|
}
|
10688
|
+
|
10577
10689
|
.compact-form-field-reference-window-toggler {
|
10578
10690
|
height: auto;
|
10579
10691
|
padding: 0 0.2rem;
|
@@ -10582,6 +10694,14 @@ tfoot .element-required-indicator-footer {
|
|
10582
10694
|
width: auto;
|
10583
10695
|
}
|
10584
10696
|
|
10697
|
+
.compact-form-field-reference-window-combo {
|
10698
|
+
height: auto;
|
10699
|
+
padding: 0 0.2rem;
|
10700
|
+
font-size: 0.8rem;
|
10701
|
+
border-radius: 0rem;
|
10702
|
+
width: 20px;
|
10703
|
+
}
|
10704
|
+
|
10585
10705
|
.DayPickerKeyboardShortcuts_show__bottomRight {
|
10586
10706
|
border-right-color: $primary !important;
|
10587
10707
|
}
|
@@ -10591,6 +10711,7 @@ tfoot .element-required-indicator-footer {
|
|
10591
10711
|
transform-origin: 100% 100%;
|
10592
10712
|
transform: rotate(0deg);
|
10593
10713
|
}
|
10714
|
+
|
10594
10715
|
100% {
|
10595
10716
|
transform-origin: 100% 100%;
|
10596
10717
|
transform: rotate(360deg);
|
@@ -10603,6 +10724,7 @@ tfoot .element-required-indicator-footer {
|
|
10603
10724
|
bottom: 2rem;
|
10604
10725
|
right: 2rem;
|
10605
10726
|
margin-top: 0;
|
10727
|
+
|
10606
10728
|
&:before {
|
10607
10729
|
position: absolute;
|
10608
10730
|
display: block;
|
@@ -10615,6 +10737,7 @@ tfoot .element-required-indicator-footer {
|
|
10615
10737
|
border-radius: 50%;
|
10616
10738
|
background-color: $gray-300;
|
10617
10739
|
}
|
10740
|
+
|
10618
10741
|
&:after {
|
10619
10742
|
position: absolute;
|
10620
10743
|
display: block;
|
@@ -10655,11 +10778,13 @@ table .checkmark {
|
|
10655
10778
|
border-top-right-radius: 0;
|
10656
10779
|
border-bottom-right-radius: 0;
|
10657
10780
|
}
|
10781
|
+
|
10658
10782
|
&.form-field-history-previous {
|
10659
10783
|
.form-control,
|
10660
10784
|
.react-datepicker-wrapper .react-datepicker__input-container .DateInput input {
|
10661
10785
|
text-decoration: line-through;
|
10662
10786
|
}
|
10787
|
+
|
10663
10788
|
.form-check-container .checkmark::after {
|
10664
10789
|
border-color: $gray-600;
|
10665
10790
|
}
|
@@ -10671,18 +10796,29 @@ table .checkmark {
|
|
10671
10796
|
border-right: 2px dotted;
|
10672
10797
|
background-color: $input-bg;
|
10673
10798
|
}
|
10799
|
+
|
10674
10800
|
input {
|
10675
10801
|
border-left: none;
|
10676
10802
|
}
|
10677
10803
|
}
|
10678
10804
|
|
10679
|
-
.form-field-
|
10680
|
-
|
10681
|
-
|
10682
|
-
|
10683
|
-
|
10684
|
-
|
10685
|
-
|
10805
|
+
.form-field-file-upload-button {
|
10806
|
+
background-color: $white;
|
10807
|
+
border: 1px solid $gray-600;
|
10808
|
+
color: $gray-600;
|
10809
|
+
border-radius: $input-border-radius;
|
10810
|
+
height: $input-height;
|
10811
|
+
padding: 0 0.75rem;
|
10812
|
+
margin-right: 0.5rem;
|
10813
|
+
|
10814
|
+
&:hover {
|
10815
|
+
background-color: $gray-600;
|
10816
|
+
color: $white;
|
10817
|
+
}
|
10818
|
+
|
10819
|
+
&:focus {
|
10820
|
+
outline: none;
|
10821
|
+
box-shadow: 0 0 0 0.2rem $gray-500;
|
10686
10822
|
}
|
10687
10823
|
}
|
10688
10824
|
|
@@ -10704,40 +10840,49 @@ table .checkmark {
|
|
10704
10840
|
}
|
10705
10841
|
}
|
10706
10842
|
}
|
10843
|
+
|
10707
10844
|
.react-datepicker-popper {
|
10708
10845
|
&[data-placement='top-start'] {
|
10709
10846
|
.react-datepicker__triangle::before {
|
10710
10847
|
border-top-color: $table-border-color !important;
|
10711
10848
|
}
|
10849
|
+
|
10712
10850
|
.react-datepicker__triangle::after {
|
10713
10851
|
border-top-color: $body-bg !important;
|
10714
10852
|
}
|
10715
10853
|
}
|
10854
|
+
|
10716
10855
|
&[data-placement='bottom-start'] {
|
10717
10856
|
.react-datepicker__triangle::before {
|
10718
10857
|
border-bottom-color: $table-border-color !important;
|
10719
10858
|
}
|
10859
|
+
|
10720
10860
|
.react-datepicker__triangle::after {
|
10721
10861
|
border-bottom-color: $body-bg !important;
|
10722
10862
|
}
|
10723
10863
|
}
|
10864
|
+
|
10724
10865
|
.react-datepicker {
|
10725
10866
|
font-family: inherit;
|
10726
10867
|
background: $body-bg;
|
10727
10868
|
border: 1px solid $table-border-color;
|
10869
|
+
|
10728
10870
|
.react-datepicker__triangle {
|
10729
10871
|
transform: none !important;
|
10730
10872
|
left: 2rem !important;
|
10731
10873
|
z-index: 1 !important;
|
10732
10874
|
}
|
10875
|
+
|
10733
10876
|
.react-datepicker__navigation--next,
|
10734
10877
|
.react-datepicker__navigation--previous {
|
10735
10878
|
color: lighten($body-color, 50%);
|
10736
10879
|
margin-top: 1rem;
|
10737
10880
|
}
|
10881
|
+
|
10738
10882
|
.react-datepicker__month-container {
|
10739
10883
|
background: $body-bg;
|
10740
10884
|
margin: 0.75rem;
|
10885
|
+
|
10741
10886
|
.react-datepicker__month,
|
10742
10887
|
.react-datepicker__week {
|
10743
10888
|
background: $body-bg;
|
@@ -10749,16 +10894,20 @@ table .checkmark {
|
|
10749
10894
|
margin: 0px;
|
10750
10895
|
border-radius: 0rem;
|
10751
10896
|
}
|
10897
|
+
|
10752
10898
|
.react-datepicker__day:hover {
|
10753
10899
|
color: $body-bg;
|
10754
10900
|
}
|
10901
|
+
|
10755
10902
|
.react-datepicker__day--selected {
|
10756
10903
|
background-color: $primary;
|
10757
10904
|
}
|
10905
|
+
|
10758
10906
|
.react-datepicker__day--outside-month {
|
10759
10907
|
opacity: 30%;
|
10760
10908
|
}
|
10761
10909
|
}
|
10910
|
+
|
10762
10911
|
.react-datepicker__header {
|
10763
10912
|
background: $body-bg;
|
10764
10913
|
border-bottom: none;
|
@@ -11381,23 +11530,6 @@ table .checkmark {
|
|
11381
11530
|
}
|
11382
11531
|
}
|
11383
11532
|
|
11384
|
-
.theme-selector {
|
11385
|
-
white-space: normal !important;
|
11386
|
-
.badge-primary {
|
11387
|
-
height: fit-content;
|
11388
|
-
}
|
11389
|
-
.theme-identification {
|
11390
|
-
&.active {
|
11391
|
-
max-width: 80%;
|
11392
|
-
}
|
11393
|
-
small {
|
11394
|
-
word-break: break-word;
|
11395
|
-
word-wrap: break-word;
|
11396
|
-
overflow-wrap: break-word;
|
11397
|
-
}
|
11398
|
-
}
|
11399
|
-
}
|
11400
|
-
|
11401
11533
|
.timestamp-refuse {
|
11402
11534
|
text-align: center;
|
11403
11535
|
.title {
|
@@ -11455,6 +11587,23 @@ table .checkmark {
|
|
11455
11587
|
}
|
11456
11588
|
}
|
11457
11589
|
|
11590
|
+
.theme-selector {
|
11591
|
+
white-space: normal !important;
|
11592
|
+
.badge-primary {
|
11593
|
+
height: fit-content;
|
11594
|
+
}
|
11595
|
+
.theme-identification {
|
11596
|
+
&.active {
|
11597
|
+
max-width: 80%;
|
11598
|
+
}
|
11599
|
+
small {
|
11600
|
+
word-break: break-word;
|
11601
|
+
word-wrap: break-word;
|
11602
|
+
overflow-wrap: break-word;
|
11603
|
+
}
|
11604
|
+
}
|
11605
|
+
}
|
11606
|
+
|
11458
11607
|
.instances-form-container {
|
11459
11608
|
&.with-history-open {
|
11460
11609
|
.instances-form {
|
package/package.json
CHANGED
@@ -6,10 +6,11 @@
|
|
6
6
|
"build": "scss-bundle -c scss-bundle.config.json",
|
7
7
|
"test": "echo ok",
|
8
8
|
"pack": "yarn pack",
|
9
|
-
"clean": "rimraf dist && rimraf omnia-low-code-omnia-sass*.tgz"
|
9
|
+
"clean": "rimraf dist && rimraf omnia-low-code-omnia-sass*.tgz",
|
10
|
+
"uninstall": "rimraf node_modules"
|
10
11
|
},
|
11
12
|
"devDependencies": {
|
12
|
-
"@omnia-low-code/runtime-web-app": "^3.5.
|
13
|
+
"@omnia-low-code/runtime-web-app": "^3.5.186",
|
13
14
|
"scss-bundle": "3.1.2"
|
14
15
|
},
|
15
16
|
"workspaces": {
|
@@ -18,7 +19,7 @@
|
|
18
19
|
"*@omnia-low-code/runtime-web-app*/**"
|
19
20
|
]
|
20
21
|
},
|
21
|
-
"version": "3.5.
|
22
|
+
"version": "3.5.186",
|
22
23
|
"author": "",
|
23
24
|
"license": "MIT"
|
24
25
|
}
|