@sankhyalabs/ez-design 1.1.2 → 1.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.
- package/dist/default/ez-themed.css +145 -45
- package/dist/default/ez-themed.min.css +1 -1
- package/dist/default/icons/fonts/ez-icons.css +6 -6
- package/dist/default/icons/fonts/ez-icons.eot +0 -0
- package/dist/default/icons/fonts/ez-icons.less +6 -6
- package/dist/default/icons/fonts/ez-icons.module.less +6 -6
- package/dist/default/icons/fonts/ez-icons.scss +6 -6
- package/dist/default/icons/fonts/ez-icons.styl +6 -6
- package/dist/default/icons/fonts/ez-icons.ttf +0 -0
- package/dist/default/icons/fonts/ez-icons.woff +0 -0
- package/dist/default/icons/fonts/ez-icons.woff2 +0 -0
- package/dist/default/icons/fonts/unicode.html +4 -4
- package/package.json +1 -1
|
@@ -8392,6 +8392,151 @@ ag-grid, ag-grid-angular, ag-grid-ng2, ag-grid-polymer, ag-grid-aurelia {
|
|
|
8392
8392
|
background-color: var(--ag-input-focus-border-color); }
|
|
8393
8393
|
.ez-grid input[class^='ag-'][type='range']:disabled {
|
|
8394
8394
|
opacity: 0.5; }
|
|
8395
|
+
.ez-grid__cell-header:not([col-id="checkBoxColumn"]) {
|
|
8396
|
+
border-right: var(--border--small) var(--color--strokes);
|
|
8397
|
+
padding-right: var(--space--medium); }
|
|
8398
|
+
.ez-grid__cell-header .ag-header-cell-comp-wrapper {
|
|
8399
|
+
width: 100%; }
|
|
8400
|
+
.ez-grid__cell-body {
|
|
8401
|
+
font-family: var(--font-pattern);
|
|
8402
|
+
font-size: var(--text--medium);
|
|
8403
|
+
color: var(--text--primary); }
|
|
8404
|
+
.ez-grid__cell-body.ag-cell-value:not(.ag-cell-range-right):not(.ag-cell-range-single-cell), .ez-grid__cell-body.ag-cell-last-left-pinned:not(.ag-cell-range-right):not(.ag-cell-range-single-cell), .ez-grid__cell-body.ag-cell-last-right-pinned:not(.ag-cell-range-right):not(.ag-cell-range-single-cell) {
|
|
8405
|
+
border-right-color: var(--color--strokes); }
|
|
8406
|
+
.ez-grid__cell-body.ag-cell[col-id="statusColumn"] {
|
|
8407
|
+
display: flex;
|
|
8408
|
+
align-items: center;
|
|
8409
|
+
justify-content: center;
|
|
8410
|
+
padding-left: 0;
|
|
8411
|
+
padding-right: 11px; }
|
|
8412
|
+
.ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] {
|
|
8413
|
+
border-right: none;
|
|
8414
|
+
padding-left: 0;
|
|
8415
|
+
padding-right: 0; }
|
|
8416
|
+
.ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-selection-checkbox {
|
|
8417
|
+
margin: 0 5px; }
|
|
8418
|
+
.ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-checkbox-input-wrapper {
|
|
8419
|
+
width: 18px;
|
|
8420
|
+
height: 18px; }
|
|
8421
|
+
.ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-checkbox-input-wrapper input[type="checkbox"] {
|
|
8422
|
+
position: relative;
|
|
8423
|
+
cursor: pointer;
|
|
8424
|
+
display: inline-block; }
|
|
8425
|
+
.ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-checkbox-input-wrapper input[type="checkbox"]:before {
|
|
8426
|
+
content: "";
|
|
8427
|
+
display: block;
|
|
8428
|
+
position: absolute;
|
|
8429
|
+
width: 18px;
|
|
8430
|
+
height: 18px;
|
|
8431
|
+
top: 50%;
|
|
8432
|
+
left: 50%;
|
|
8433
|
+
transform: translate(-50%, -50%);
|
|
8434
|
+
border: 2px solid var(--title--primary);
|
|
8435
|
+
border-radius: var(--border--radius-small);
|
|
8436
|
+
background-color: #ffffff; }
|
|
8437
|
+
.ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-checkbox-input-wrapper input[type="checkbox"]:checked:after {
|
|
8438
|
+
content: "";
|
|
8439
|
+
display: block;
|
|
8440
|
+
width: 5px;
|
|
8441
|
+
height: 8px;
|
|
8442
|
+
border: solid var(--color--primary);
|
|
8443
|
+
border-width: 0 2px 2px 0;
|
|
8444
|
+
-webkit-transform: rotate(45deg);
|
|
8445
|
+
-ms-transform: rotate(45deg);
|
|
8446
|
+
transform: rotate(45deg);
|
|
8447
|
+
position: absolute;
|
|
8448
|
+
top: 4px;
|
|
8449
|
+
left: 6.5px; }
|
|
8450
|
+
.ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-checkbox-input-wrapper input[type="checkbox"]:indeterminate::after {
|
|
8451
|
+
content: "";
|
|
8452
|
+
display: block;
|
|
8453
|
+
width: 6px;
|
|
8454
|
+
height: 8px;
|
|
8455
|
+
border: solid var(--title--primary);
|
|
8456
|
+
border-width: 0 0 2px 0;
|
|
8457
|
+
position: absolute;
|
|
8458
|
+
top: 2px;
|
|
8459
|
+
left: 6px; }
|
|
8460
|
+
.ez-grid__cell-status {
|
|
8461
|
+
display: inline-block;
|
|
8462
|
+
vertical-align: middle;
|
|
8463
|
+
clear: both;
|
|
8464
|
+
width: 12px;
|
|
8465
|
+
height: 12px;
|
|
8466
|
+
background-color: var(--color--strokes);
|
|
8467
|
+
border: 1px solid transparent;
|
|
8468
|
+
border-radius: 50%;
|
|
8469
|
+
margin: 0 auto; }
|
|
8470
|
+
.ez-grid .ag-ltr .ez-grid__cell-body.ag-cell-value:not(.ag-cell-range-right):not(.ag-cell-range-single-cell), .ez-grid .ag-ltr .ez-grid__cell-body.ag-cell-last-left-pinned:not(.ag-cell-range-right):not(.ag-cell-range-single-cell), .ez-grid .ag-ltr .ez-grid__cell-body.ag-cell-last-right-pinned:not(.ag-cell-range-right):not(.ag-cell-range-single-cell) {
|
|
8471
|
+
border-right-color: var(--color--strokes); }
|
|
8472
|
+
.ez-grid .ag-ltr .ez-grid__cell-body.ag-cell[col-id="statusColumn"] {
|
|
8473
|
+
display: flex;
|
|
8474
|
+
align-items: center;
|
|
8475
|
+
justify-content: center;
|
|
8476
|
+
padding-left: 0;
|
|
8477
|
+
padding-right: 11px; }
|
|
8478
|
+
.ez-grid .ag-ltr .ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] {
|
|
8479
|
+
border-right: none;
|
|
8480
|
+
padding-left: 0;
|
|
8481
|
+
padding-right: 0; }
|
|
8482
|
+
.ez-grid .ag-ltr .ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-selection-checkbox {
|
|
8483
|
+
margin: 0 5px; }
|
|
8484
|
+
.ez-grid .ag-ltr .ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-checkbox-input-wrapper {
|
|
8485
|
+
width: 18px;
|
|
8486
|
+
height: 18px; }
|
|
8487
|
+
.ez-grid .ag-ltr .ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-checkbox-input-wrapper input[type="checkbox"] {
|
|
8488
|
+
position: relative;
|
|
8489
|
+
cursor: pointer;
|
|
8490
|
+
display: inline-block; }
|
|
8491
|
+
.ez-grid .ag-ltr .ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-checkbox-input-wrapper input[type="checkbox"]:before {
|
|
8492
|
+
content: "";
|
|
8493
|
+
display: block;
|
|
8494
|
+
position: absolute;
|
|
8495
|
+
width: 18px;
|
|
8496
|
+
height: 18px;
|
|
8497
|
+
top: 50%;
|
|
8498
|
+
left: 50%;
|
|
8499
|
+
transform: translate(-50%, -50%);
|
|
8500
|
+
border: 2px solid var(--title--primary);
|
|
8501
|
+
border-radius: var(--border--radius-small);
|
|
8502
|
+
background-color: #ffffff; }
|
|
8503
|
+
.ez-grid .ag-ltr .ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-checkbox-input-wrapper input[type="checkbox"]:checked:after {
|
|
8504
|
+
content: "";
|
|
8505
|
+
display: block;
|
|
8506
|
+
width: 5px;
|
|
8507
|
+
height: 8px;
|
|
8508
|
+
border: solid var(--color--primary);
|
|
8509
|
+
border-width: 0 2px 2px 0;
|
|
8510
|
+
-webkit-transform: rotate(45deg);
|
|
8511
|
+
-ms-transform: rotate(45deg);
|
|
8512
|
+
transform: rotate(45deg);
|
|
8513
|
+
position: absolute;
|
|
8514
|
+
top: 4px;
|
|
8515
|
+
left: 6.5px; }
|
|
8516
|
+
.ez-grid .ag-ltr .ez-grid__cell-body.ag-cell[col-id="checkBoxColumn"] .ag-checkbox-input-wrapper input[type="checkbox"]:indeterminate::after {
|
|
8517
|
+
content: "";
|
|
8518
|
+
display: block;
|
|
8519
|
+
width: 6px;
|
|
8520
|
+
height: 8px;
|
|
8521
|
+
border: solid var(--title--primary);
|
|
8522
|
+
border-width: 0 0 2px 0;
|
|
8523
|
+
position: absolute;
|
|
8524
|
+
top: 2px;
|
|
8525
|
+
left: 6px; }
|
|
8526
|
+
.ez-grid .ag-pinned-left-header {
|
|
8527
|
+
border-right: none; }
|
|
8528
|
+
.ez-grid .ag-pinned-right-header {
|
|
8529
|
+
border-left: none; }
|
|
8530
|
+
.ez-grid .ag-pinned-left-header .ez-grid__header-cell,
|
|
8531
|
+
.ez-grid .ag-pinned-right-header .ez-grid__header-cell {
|
|
8532
|
+
padding-right: var(--space--medium); }
|
|
8533
|
+
.ez-grid .ag-horizontal-left-spacer:not(.ag-scroller-corner) {
|
|
8534
|
+
border-right-color: var(--color--strokes); }
|
|
8535
|
+
.ez-grid .ag-horizontal-right-spacer:not(.ag-scroller-corner) {
|
|
8536
|
+
border-left-color: var(--color--strokes); }
|
|
8537
|
+
.ez-grid .ag-horizontal-left-spacer,
|
|
8538
|
+
.ez-grid .ag-horizontal-right-spacer {
|
|
8539
|
+
overflow-x: auto; }
|
|
8395
8540
|
.ez-grid .ag-header-cell-text {
|
|
8396
8541
|
font-family: var(--font-pattern);
|
|
8397
8542
|
color: var(--title--primary);
|
|
@@ -8399,13 +8544,6 @@ ag-grid, ag-grid-angular, ag-grid-ng2, ag-grid-polymer, ag-grid-aurelia {
|
|
|
8399
8544
|
font-weight: var(--text-weight--large); }
|
|
8400
8545
|
.ez-grid .ag-header {
|
|
8401
8546
|
border-bottom: none; }
|
|
8402
|
-
.ez-grid .ag-cell {
|
|
8403
|
-
display: flex;
|
|
8404
|
-
align-items: center;
|
|
8405
|
-
line-height: normal;
|
|
8406
|
-
font-family: var(--font-pattern);
|
|
8407
|
-
font-size: var(--text--medium);
|
|
8408
|
-
color: var(--text--primary); }
|
|
8409
8547
|
.ez-grid .ag-menu-separator {
|
|
8410
8548
|
display: none; }
|
|
8411
8549
|
.ez-grid .ag-tabs-header.ag-menu-header {
|
|
@@ -8508,44 +8646,6 @@ ag-grid, ag-grid-angular, ag-grid-ng2, ag-grid-polymer, ag-grid-aurelia {
|
|
|
8508
8646
|
content: ""; }
|
|
8509
8647
|
.ez-grid input.ag-input-field-input.ag-checkbox-input {
|
|
8510
8648
|
opacity: 1; }
|
|
8511
|
-
.ez-grid input[type="checkbox"] {
|
|
8512
|
-
position: relative;
|
|
8513
|
-
cursor: pointer;
|
|
8514
|
-
display: inline-block; }
|
|
8515
|
-
.ez-grid input[type="checkbox"]:before {
|
|
8516
|
-
content: "";
|
|
8517
|
-
display: block;
|
|
8518
|
-
position: absolute;
|
|
8519
|
-
width: 16px;
|
|
8520
|
-
height: 16px;
|
|
8521
|
-
top: -3px;
|
|
8522
|
-
left: 0;
|
|
8523
|
-
border: 2px solid var(--title--primary);
|
|
8524
|
-
border-radius: var(--border--radius-small);
|
|
8525
|
-
background-color: white; }
|
|
8526
|
-
.ez-grid input[type="checkbox"]:checked:after {
|
|
8527
|
-
content: "";
|
|
8528
|
-
display: block;
|
|
8529
|
-
width: 5px;
|
|
8530
|
-
height: 8px;
|
|
8531
|
-
border: solid var(--color--primary);
|
|
8532
|
-
border-width: 0 2px 2px 0;
|
|
8533
|
-
-webkit-transform: rotate(45deg);
|
|
8534
|
-
-ms-transform: rotate(45deg);
|
|
8535
|
-
transform: rotate(45deg);
|
|
8536
|
-
position: absolute;
|
|
8537
|
-
top: 0px;
|
|
8538
|
-
left: 5.5px; }
|
|
8539
|
-
.ez-grid input[type="checkbox"]:indeterminate::after {
|
|
8540
|
-
content: "";
|
|
8541
|
-
display: block;
|
|
8542
|
-
width: 6px;
|
|
8543
|
-
height: 8px;
|
|
8544
|
-
border: solid var(--title--primary);
|
|
8545
|
-
border-width: 0 0 2px 0;
|
|
8546
|
-
position: absolute;
|
|
8547
|
-
top: -2px;
|
|
8548
|
-
left: 5px; }
|
|
8549
8649
|
.ez-grid .ag-virtual-list-viewport.ag-column-select-virtual-list-viewport.ag-focus-managed {
|
|
8550
8650
|
max-height: 120px;
|
|
8551
8651
|
overflow-y: auto; }
|