@clayui/css 3.44.2 → 3.45.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.
- package/lib/css/atlas.css +228 -1
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +228 -1
- package/lib/css/base.css.map +1 -1
- package/lib/css/bootstrap.css.map +1 -1
- package/lib/css/cadmin.css +22 -14
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/add-cell.svg +1 -1
- package/lib/images/icons/corner-radius.svg +12 -0
- package/lib/images/icons/font-family.svg +10 -0
- package/lib/images/icons/font-size.svg +10 -0
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/shadow.svg +9 -0
- package/package.json +2 -2
- package/src/images/icons/add-cell.svg +1 -1
- package/src/images/icons/corner-radius.svg +12 -0
- package/src/images/icons/font-family.svg +10 -0
- package/src/images/icons/font-size.svg +10 -0
- package/src/images/icons/shadow.svg +9 -0
- package/src/scss/_components.scss +1 -0
- package/src/scss/_variables.scss +1 -0
- package/src/scss/atlas/variables/_forms.scss +2 -1
- package/src/scss/cadmin/components/_custom-forms.scss +4 -0
- package/src/scss/cadmin/components/_forms.scss +1 -1
- package/src/scss/cadmin/components/_links.scss +1 -6
- package/src/scss/cadmin/components/_navs.scss +8 -0
- package/src/scss/cadmin/components/_treeview.scss +135 -211
- package/src/scss/cadmin/variables/_custom-forms.scss +3 -0
- package/src/scss/cadmin/variables/_forms.scss +3 -2
- package/src/scss/cadmin/variables/_treeview.scss +21 -16
- package/src/scss/components/_forms.scss +1 -1
- package/src/scss/components/_links.scss +12 -0
- package/src/scss/components/_treeview.scss +310 -0
- package/src/scss/functions/_lx-icons-generated.scss +8 -0
- package/src/scss/variables/_forms.scss +3 -2
- package/src/scss/variables/_links.scss +17 -0
- package/src/scss/variables/_treeview.scss +222 -0
package/lib/css/base.css
CHANGED
|
@@ -7088,10 +7088,11 @@ fieldset[disabled] label .form-control {
|
|
|
7088
7088
|
}
|
|
7089
7089
|
.form-control .label {
|
|
7090
7090
|
border-width: 0.0625rem;
|
|
7091
|
-
height:
|
|
7091
|
+
height: auto;
|
|
7092
7092
|
margin-bottom: 0.25rem;
|
|
7093
7093
|
margin-right: 0.5rem;
|
|
7094
7094
|
margin-top: 0.25rem;
|
|
7095
|
+
min-height: 1.25rem;
|
|
7095
7096
|
}
|
|
7096
7097
|
fieldset[disabled] .form-control {
|
|
7097
7098
|
background-color: #e9ecef;
|
|
@@ -7898,6 +7899,17 @@ button.link-outline {
|
|
|
7898
7899
|
margin-top: 0;
|
|
7899
7900
|
}
|
|
7900
7901
|
|
|
7902
|
+
.component-icon {
|
|
7903
|
+
align-items: center;
|
|
7904
|
+
display: inline-flex;
|
|
7905
|
+
height: 32px;
|
|
7906
|
+
justify-content: center;
|
|
7907
|
+
width: 32px;
|
|
7908
|
+
}
|
|
7909
|
+
.component-icon .lexicon-icon {
|
|
7910
|
+
margin-top: 0;
|
|
7911
|
+
}
|
|
7912
|
+
|
|
7901
7913
|
.clay-range {
|
|
7902
7914
|
padding-bottom: 0.1px;
|
|
7903
7915
|
}
|
|
@@ -19408,6 +19420,221 @@ caption {
|
|
|
19408
19420
|
margin-left: 0;
|
|
19409
19421
|
right: 0.25rem;
|
|
19410
19422
|
}
|
|
19423
|
+
.treeview {
|
|
19424
|
+
display: flex;
|
|
19425
|
+
flex-direction: column;
|
|
19426
|
+
font-size: 14px;
|
|
19427
|
+
list-style: none;
|
|
19428
|
+
margin-bottom: 0;
|
|
19429
|
+
padding: 2px 0;
|
|
19430
|
+
}
|
|
19431
|
+
.treeview .btn-monospaced {
|
|
19432
|
+
font-size: 14px;
|
|
19433
|
+
height: 24px;
|
|
19434
|
+
width: 24px;
|
|
19435
|
+
}
|
|
19436
|
+
.treeview .btn-monospaced:focus, .treeview .btn-monospaced.focus {
|
|
19437
|
+
box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
19438
|
+
}
|
|
19439
|
+
.treeview .btn-monospaced:active:focus {
|
|
19440
|
+
box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
19441
|
+
}
|
|
19442
|
+
.treeview .custom-control {
|
|
19443
|
+
margin-left: 4px;
|
|
19444
|
+
margin-right: 4px;
|
|
19445
|
+
margin-top: 1.5px;
|
|
19446
|
+
}
|
|
19447
|
+
.treeview .component-expander .lexicon-icon:not(.component-expanded-d-none) {
|
|
19448
|
+
display: none;
|
|
19449
|
+
}
|
|
19450
|
+
.treeview .component-action {
|
|
19451
|
+
display: none;
|
|
19452
|
+
margin-left: 2px;
|
|
19453
|
+
margin-right: 2px;
|
|
19454
|
+
}
|
|
19455
|
+
.treeview .component-action:hover {
|
|
19456
|
+
background-color: transparent;
|
|
19457
|
+
color: #6c757d;
|
|
19458
|
+
}
|
|
19459
|
+
.treeview .component-action:focus, .treeview .component-action.focus {
|
|
19460
|
+
color: #6c757d;
|
|
19461
|
+
}
|
|
19462
|
+
.treeview .component-action:active {
|
|
19463
|
+
background-color: transparent;
|
|
19464
|
+
}
|
|
19465
|
+
.treeview .component-action.active {
|
|
19466
|
+
background-color: transparent;
|
|
19467
|
+
}
|
|
19468
|
+
.treeview .component-action[aria-expanded=true], .treeview .component-action.show {
|
|
19469
|
+
background-color: transparent;
|
|
19470
|
+
}
|
|
19471
|
+
.treeview .component-icon {
|
|
19472
|
+
display: inline;
|
|
19473
|
+
height: auto;
|
|
19474
|
+
margin-left: 4px;
|
|
19475
|
+
margin-right: 4px;
|
|
19476
|
+
width: auto;
|
|
19477
|
+
}
|
|
19478
|
+
.treeview .component-text {
|
|
19479
|
+
padding-bottom: 1.5px;
|
|
19480
|
+
padding-left: 4px;
|
|
19481
|
+
padding-top: 1.5px;
|
|
19482
|
+
-ms-user-select: auto;
|
|
19483
|
+
-moz-user-select: auto;
|
|
19484
|
+
-webkit-user-select: auto;
|
|
19485
|
+
user-select: auto;
|
|
19486
|
+
}
|
|
19487
|
+
.treeview.show-component-expander-on-hover:hover .component-expander, .treeview.show-component-expander-on-hover.hover .component-expander {
|
|
19488
|
+
opacity: 1;
|
|
19489
|
+
transition: opacity ease-in-out 600ms;
|
|
19490
|
+
}
|
|
19491
|
+
@media (prefers-reduced-motion: reduce) {
|
|
19492
|
+
.treeview.show-component-expander-on-hover:hover .component-expander, .treeview.show-component-expander-on-hover.hover .component-expander {
|
|
19493
|
+
transition: none;
|
|
19494
|
+
}
|
|
19495
|
+
}
|
|
19496
|
+
.treeview.show-component-expander-on-hover .treeview-link:focus .component-expander, .treeview.show-component-expander-on-hover .treeview-link.focus .component-expander {
|
|
19497
|
+
opacity: 1;
|
|
19498
|
+
transition: none;
|
|
19499
|
+
}
|
|
19500
|
+
.treeview.show-component-expander-on-hover .component-expander {
|
|
19501
|
+
opacity: 0;
|
|
19502
|
+
transition: opacity ease-in-out 450ms;
|
|
19503
|
+
}
|
|
19504
|
+
@media (prefers-reduced-motion: reduce) {
|
|
19505
|
+
.treeview.show-component-expander-on-hover .component-expander {
|
|
19506
|
+
transition: none;
|
|
19507
|
+
}
|
|
19508
|
+
}
|
|
19509
|
+
|
|
19510
|
+
.treeview-group {
|
|
19511
|
+
display: flex;
|
|
19512
|
+
flex-direction: column;
|
|
19513
|
+
list-style: none;
|
|
19514
|
+
margin-bottom: 0;
|
|
19515
|
+
padding-left: 0;
|
|
19516
|
+
}
|
|
19517
|
+
|
|
19518
|
+
.treeview-item {
|
|
19519
|
+
overflow-wrap: break-word;
|
|
19520
|
+
word-wrap: break-word;
|
|
19521
|
+
}
|
|
19522
|
+
.treeview-link {
|
|
19523
|
+
cursor: pointer;
|
|
19524
|
+
display: block;
|
|
19525
|
+
border-color: transparent;
|
|
19526
|
+
border-style: solid;
|
|
19527
|
+
border-width: 1px;
|
|
19528
|
+
margin-bottom: 2px;
|
|
19529
|
+
margin-top: 2px;
|
|
19530
|
+
min-width: 100%;
|
|
19531
|
+
padding: 0;
|
|
19532
|
+
position: relative;
|
|
19533
|
+
-ms-user-select: none;
|
|
19534
|
+
-moz-user-select: none;
|
|
19535
|
+
-webkit-user-select: none;
|
|
19536
|
+
user-select: none;
|
|
19537
|
+
}
|
|
19538
|
+
.treeview-link:hover {
|
|
19539
|
+
text-decoration: none;
|
|
19540
|
+
}
|
|
19541
|
+
.treeview-link:focus {
|
|
19542
|
+
box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
19543
|
+
outline: 0;
|
|
19544
|
+
}
|
|
19545
|
+
.treeview-link.treeview-dropping-bottom {
|
|
19546
|
+
box-shadow: 0 2px 0 0 #75b8ff;
|
|
19547
|
+
}
|
|
19548
|
+
.treeview-link.treeview-dropping-middle {
|
|
19549
|
+
background-color: #e5f2ff;
|
|
19550
|
+
border-color: #75b8ff;
|
|
19551
|
+
}
|
|
19552
|
+
.treeview-link.treeview-dropping-top {
|
|
19553
|
+
box-shadow: 0 -2px 0 0 #75b8ff;
|
|
19554
|
+
}
|
|
19555
|
+
.treeview-link.hover .component-action, .treeview-link:hover .component-action, .treeview-link.focus .component-action, .treeview-link:focus .component-action {
|
|
19556
|
+
display: block;
|
|
19557
|
+
}
|
|
19558
|
+
.treeview-link.show .component-expander .component-expanded-d-none, .treeview-link[aria-expanded=true] .component-expander .component-expanded-d-none {
|
|
19559
|
+
display: none;
|
|
19560
|
+
}
|
|
19561
|
+
.treeview-link.show .component-expander .lexicon-icon:not(.component-expanded-d-none), .treeview-link[aria-expanded=true] .component-expander .lexicon-icon:not(.component-expanded-d-none) {
|
|
19562
|
+
display: inline-block;
|
|
19563
|
+
}
|
|
19564
|
+
|
|
19565
|
+
.treeview-nested-margins .treeview-group .treeview-item {
|
|
19566
|
+
margin-left: 24px;
|
|
19567
|
+
}
|
|
19568
|
+
|
|
19569
|
+
.treeview-item-dragging {
|
|
19570
|
+
cursor: not-allowed;
|
|
19571
|
+
opacity: 0.4;
|
|
19572
|
+
}
|
|
19573
|
+
.treeview-item-dragging .treeview-link {
|
|
19574
|
+
background-color: transparent;
|
|
19575
|
+
border-color: transparent;
|
|
19576
|
+
box-shadow: none;
|
|
19577
|
+
}
|
|
19578
|
+
.treeview-dragging {
|
|
19579
|
+
background-color: #fff;
|
|
19580
|
+
border-color: #75b8ff;
|
|
19581
|
+
border-radius: 0.2rem;
|
|
19582
|
+
border-style: solid;
|
|
19583
|
+
border-width: 1px;
|
|
19584
|
+
display: inline-block;
|
|
19585
|
+
font-size: 10px;
|
|
19586
|
+
font-weight: 500;
|
|
19587
|
+
padding: 4px 12px;
|
|
19588
|
+
text-transform: uppercase;
|
|
19589
|
+
}
|
|
19590
|
+
|
|
19591
|
+
.treeview-light .component-expander {
|
|
19592
|
+
color: #6c757d;
|
|
19593
|
+
}
|
|
19594
|
+
.treeview-light .component-expander:hover {
|
|
19595
|
+
color: #007bff;
|
|
19596
|
+
}
|
|
19597
|
+
.treeview-light .component-expander.btn-secondary {
|
|
19598
|
+
background-color: #fff;
|
|
19599
|
+
}
|
|
19600
|
+
.treeview-light .treeview-link {
|
|
19601
|
+
color: #6c757d;
|
|
19602
|
+
}
|
|
19603
|
+
.treeview-light .treeview-link:hover {
|
|
19604
|
+
background-color: #f8f9fa;
|
|
19605
|
+
color: #212529;
|
|
19606
|
+
}
|
|
19607
|
+
.treeview-light .treeview-link:active {
|
|
19608
|
+
background-color: #e9ecef;
|
|
19609
|
+
color: #212529;
|
|
19610
|
+
}
|
|
19611
|
+
.treeview-light .treeview-link.active {
|
|
19612
|
+
background-color: #e9ecef;
|
|
19613
|
+
color: #212529;
|
|
19614
|
+
}
|
|
19615
|
+
.treeview-dark .component-expander {
|
|
19616
|
+
color: #a9afb5;
|
|
19617
|
+
}
|
|
19618
|
+
.treeview-dark .component-expander:hover {
|
|
19619
|
+
color: #75b8ff;
|
|
19620
|
+
}
|
|
19621
|
+
.treeview-dark .treeview-link {
|
|
19622
|
+
color: #a9afb5;
|
|
19623
|
+
}
|
|
19624
|
+
.treeview-dark .treeview-link:hover {
|
|
19625
|
+
background-color: rgba(255, 255, 255, 0.04);
|
|
19626
|
+
}
|
|
19627
|
+
.treeview-dark .treeview-link.active {
|
|
19628
|
+
background-color: rgba(255, 255, 255, 0.06);
|
|
19629
|
+
color: #fff;
|
|
19630
|
+
}
|
|
19631
|
+
.treeview-dark .treeview-link:disabled, .treeview-dark .treeview-link.disabled {
|
|
19632
|
+
background-color: transparent;
|
|
19633
|
+
color: rgba(169, 175, 181, 0.04);
|
|
19634
|
+
}
|
|
19635
|
+
.treeview-dark .component-action {
|
|
19636
|
+
color: #a9afb5;
|
|
19637
|
+
}
|
|
19411
19638
|
.bg-checkered {
|
|
19412
19639
|
background-image: linear-gradient(45deg, #e9ecef 25%, transparent 25%), linear-gradient(-45deg, #e9ecef 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #e9ecef 75%), linear-gradient(-45deg, transparent 75%, #e9ecef 75%);
|
|
19413
19640
|
background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
|