@a3s-lab/office 0.13.1 → 0.15.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/README.md +40 -5
- package/dist/0~7048.js +14 -4
- package/dist/0~spreadsheet-editor.js +14748 -8939
- package/dist/0~work-office-diagnostics.js +1 -1
- package/dist/{4476.js → 2180.js} +34 -1
- package/dist/4104.js +41 -19
- package/dist/core.js +1 -1
- package/dist/index.js +1 -1
- package/dist/internal/features/work/editors/office-checkbox.d.ts +3 -2
- package/dist/internal/features/work/editors/spreadsheet-auto-sum-command.d.ts +3 -0
- package/dist/internal/features/work/editors/spreadsheet-auto-sum.d.ts +19 -0
- package/dist/internal/features/work/editors/spreadsheet-cell-format-command.d.ts +3 -0
- package/dist/internal/features/work/editors/spreadsheet-cell-format.d.ts +36 -0
- package/dist/internal/features/work/editors/spreadsheet-cell-mutation-guard.d.ts +4 -0
- package/dist/internal/features/work/editors/spreadsheet-clipboard-shortcuts.d.ts +1 -0
- package/dist/internal/features/work/editors/spreadsheet-clipboard.d.ts +13 -0
- package/dist/internal/features/work/editors/spreadsheet-command-catalog.d.ts +142 -0
- package/dist/internal/features/work/editors/spreadsheet-command-controller.d.ts +56 -0
- package/dist/internal/features/work/editors/spreadsheet-context-menu.d.ts +5 -15
- package/dist/internal/features/work/editors/spreadsheet-data-validation-command.d.ts +3 -0
- package/dist/internal/features/work/editors/spreadsheet-data-validation-dialog.d.ts +9 -0
- package/dist/internal/features/work/editors/spreadsheet-data-validation.d.ts +50 -0
- package/dist/internal/features/work/editors/spreadsheet-editor-ribbon.d.ts +1 -2
- package/dist/internal/features/work/editors/spreadsheet-editor-support.d.ts +1 -0
- package/dist/internal/features/work/editors/spreadsheet-format-cells-dialog-model.d.ts +86 -0
- package/dist/internal/features/work/editors/spreadsheet-format-cells-dialog-panels.d.ts +15 -0
- package/dist/internal/features/work/editors/spreadsheet-format-cells-dialog.d.ts +8 -0
- package/dist/internal/features/work/editors/spreadsheet-go-to.d.ts +24 -0
- package/dist/internal/features/work/editors/spreadsheet-hyperlink-command.d.ts +3 -0
- package/dist/internal/features/work/editors/spreadsheet-hyperlink-dialog.d.ts +9 -0
- package/dist/internal/features/work/editors/spreadsheet-hyperlink.d.ts +44 -0
- package/dist/internal/features/work/editors/spreadsheet-keyboard-navigation.d.ts +4 -0
- package/dist/internal/features/work/editors/spreadsheet-navigation-command.d.ts +3 -0
- package/dist/internal/features/work/editors/spreadsheet-number-format-command.d.ts +24 -0
- package/dist/internal/features/work/editors/spreadsheet-paste-special-cell.d.ts +17 -0
- package/dist/internal/features/work/editors/spreadsheet-paste-special-dialog.d.ts +9 -0
- package/dist/internal/features/work/editors/spreadsheet-paste-special-mode.d.ts +11 -0
- package/dist/internal/features/work/editors/spreadsheet-paste-special-plan.d.ts +4 -0
- package/dist/internal/features/work/editors/spreadsheet-paste-special-sheet.d.ts +23 -0
- package/dist/internal/features/work/editors/spreadsheet-paste-special-snapshot.d.ts +10 -0
- package/dist/internal/features/work/editors/spreadsheet-paste-special-types.d.ts +127 -0
- package/dist/internal/features/work/editors/spreadsheet-paste-special.d.ts +7 -0
- package/dist/internal/features/work/editors/use-spreadsheet-clipboard.d.ts +36 -0
- package/dist/internal/features/work/editors/use-spreadsheet-data-validation.d.ts +23 -0
- package/dist/internal/features/work/editors/use-spreadsheet-hyperlink.d.ts +24 -0
- package/dist/internal/features/work/work-spreadsheet-data-validation.d.ts +2 -0
- package/dist/office-kernel.wasm +0 -0
- package/dist/styles.css +845 -1
- package/docs/latest/en/browser-editor-architecture.md +12 -1
- package/package.json +15 -3
package/dist/styles.css
CHANGED
|
@@ -4877,7 +4877,7 @@ html[data-ds-resizing="horizontal"], html[data-ds-resizing="horizontal"] * {
|
|
|
4877
4877
|
display: grid;
|
|
4878
4878
|
}
|
|
4879
4879
|
|
|
4880
|
-
.work-office-checkbox.checked .work-office-checkbox-box {
|
|
4880
|
+
.work-office-checkbox.checked .work-office-checkbox-box, .work-office-checkbox.indeterminate .work-office-checkbox-box {
|
|
4881
4881
|
border-color: var(--work-office-control-accent, var(--a3s-blue));
|
|
4882
4882
|
background: var(--work-office-control-accent, var(--a3s-blue));
|
|
4883
4883
|
}
|
|
@@ -14985,6 +14985,17 @@ button.work-office-collaboration-participant:hover .work-office-collaboration-lo
|
|
|
14985
14985
|
grid-template-columns: 20px minmax(0, 1fr);
|
|
14986
14986
|
}
|
|
14987
14987
|
|
|
14988
|
+
.work-spreadsheet-find-select-menu > button, .work-spreadsheet-paste-menu > button {
|
|
14989
|
+
grid-template-columns: 20px minmax(0, 1fr) auto;
|
|
14990
|
+
}
|
|
14991
|
+
|
|
14992
|
+
.work-spreadsheet-ribbon-menu-separator {
|
|
14993
|
+
background: var(--a3s-line);
|
|
14994
|
+
border: 0;
|
|
14995
|
+
height: 1px;
|
|
14996
|
+
margin: 4px 8px;
|
|
14997
|
+
}
|
|
14998
|
+
|
|
14988
14999
|
.work-spreadsheet-ribbon-menu > button > span:last-child {
|
|
14989
15000
|
white-space: normal;
|
|
14990
15001
|
}
|
|
@@ -15592,6 +15603,839 @@ button.work-office-collaboration-participant:hover .work-office-collaboration-lo
|
|
|
15592
15603
|
}
|
|
15593
15604
|
}
|
|
15594
15605
|
|
|
15606
|
+
.work-spreadsheet-format-cells-dialog {
|
|
15607
|
+
width: min(680px, 100%);
|
|
15608
|
+
}
|
|
15609
|
+
|
|
15610
|
+
.work-spreadsheet-format-cells-dialog > .ds-dialog-body {
|
|
15611
|
+
padding-top: 0;
|
|
15612
|
+
}
|
|
15613
|
+
|
|
15614
|
+
.work-spreadsheet-format-cells-tabs.ds-tabs {
|
|
15615
|
+
border-bottom: 1px solid var(--a3s-line);
|
|
15616
|
+
scrollbar-width: thin;
|
|
15617
|
+
gap: 0;
|
|
15618
|
+
overflow-x: auto;
|
|
15619
|
+
}
|
|
15620
|
+
|
|
15621
|
+
.work-spreadsheet-format-cells-tabs.ds-tabs > button {
|
|
15622
|
+
flex: 1 0 auto;
|
|
15623
|
+
min-width: max-content;
|
|
15624
|
+
padding-inline: 13px;
|
|
15625
|
+
}
|
|
15626
|
+
|
|
15627
|
+
.work-spreadsheet-format-cells-dialog form {
|
|
15628
|
+
min-height: 290px;
|
|
15629
|
+
}
|
|
15630
|
+
|
|
15631
|
+
.work-spreadsheet-format-cells-panel {
|
|
15632
|
+
outline: 0;
|
|
15633
|
+
min-height: 270px;
|
|
15634
|
+
padding: 20px 2px 4px;
|
|
15635
|
+
}
|
|
15636
|
+
|
|
15637
|
+
.work-spreadsheet-format-cells-grid {
|
|
15638
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
15639
|
+
gap: 16px 20px;
|
|
15640
|
+
display: grid;
|
|
15641
|
+
}
|
|
15642
|
+
|
|
15643
|
+
.work-spreadsheet-format-cells-grid.font {
|
|
15644
|
+
align-items: start;
|
|
15645
|
+
}
|
|
15646
|
+
|
|
15647
|
+
.work-spreadsheet-format-cells-field {
|
|
15648
|
+
min-width: 0;
|
|
15649
|
+
color: var(--a3s-muted);
|
|
15650
|
+
gap: 6px;
|
|
15651
|
+
font-size: 11px;
|
|
15652
|
+
font-weight: 600;
|
|
15653
|
+
display: grid;
|
|
15654
|
+
}
|
|
15655
|
+
|
|
15656
|
+
.work-spreadsheet-format-cells-field > .work-office-select, .work-spreadsheet-format-cells-field > .work-office-number-field, .work-spreadsheet-format-cells-field > .work-office-text-field, .work-spreadsheet-format-cells-field > .work-office-color-picker, .work-spreadsheet-format-cells-field > .work-office-select > button[role="combobox"], .work-spreadsheet-format-cells-field .work-office-color-trigger {
|
|
15657
|
+
width: 100%;
|
|
15658
|
+
}
|
|
15659
|
+
|
|
15660
|
+
.work-spreadsheet-format-cells-field > .work-office-text-field {
|
|
15661
|
+
min-height: 29px;
|
|
15662
|
+
}
|
|
15663
|
+
|
|
15664
|
+
.work-spreadsheet-format-cells-number {
|
|
15665
|
+
grid-template-columns: minmax(150px, .7fr) minmax(240px, 1.3fr);
|
|
15666
|
+
gap: 16px 20px;
|
|
15667
|
+
display: grid;
|
|
15668
|
+
}
|
|
15669
|
+
|
|
15670
|
+
.work-spreadsheet-format-cells-number > [role="alert"], .work-spreadsheet-format-cells-grid > [role="alert"] {
|
|
15671
|
+
color: var(--a3s-red);
|
|
15672
|
+
grid-column: 1 / -1;
|
|
15673
|
+
margin: -8px 0 0;
|
|
15674
|
+
font-size: 11px;
|
|
15675
|
+
}
|
|
15676
|
+
|
|
15677
|
+
.work-spreadsheet-format-cells-sample {
|
|
15678
|
+
border: 1px solid var(--a3s-line);
|
|
15679
|
+
background: var(--a3s-panel-soft);
|
|
15680
|
+
border-radius: 10px;
|
|
15681
|
+
grid-column: 1 / -1;
|
|
15682
|
+
grid-template-columns: minmax(0, 1fr) auto;
|
|
15683
|
+
align-content: center;
|
|
15684
|
+
gap: 7px 16px;
|
|
15685
|
+
min-height: 104px;
|
|
15686
|
+
padding: 16px 18px;
|
|
15687
|
+
display: grid;
|
|
15688
|
+
}
|
|
15689
|
+
|
|
15690
|
+
.work-spreadsheet-format-cells-sample > span {
|
|
15691
|
+
color: var(--a3s-muted);
|
|
15692
|
+
grid-column: 1 / -1;
|
|
15693
|
+
font-size: 10px;
|
|
15694
|
+
font-weight: 650;
|
|
15695
|
+
}
|
|
15696
|
+
|
|
15697
|
+
.work-spreadsheet-format-cells-sample > output {
|
|
15698
|
+
color: var(--a3s-ink);
|
|
15699
|
+
text-overflow: ellipsis;
|
|
15700
|
+
white-space: nowrap;
|
|
15701
|
+
font-size: 22px;
|
|
15702
|
+
font-weight: 650;
|
|
15703
|
+
overflow: hidden;
|
|
15704
|
+
}
|
|
15705
|
+
|
|
15706
|
+
.work-spreadsheet-format-cells-sample > small {
|
|
15707
|
+
color: var(--a3s-muted);
|
|
15708
|
+
font-family: var(--font-mono);
|
|
15709
|
+
align-self: center;
|
|
15710
|
+
font-size: 10px;
|
|
15711
|
+
}
|
|
15712
|
+
|
|
15713
|
+
.work-spreadsheet-format-cells-options {
|
|
15714
|
+
border: 1px solid var(--a3s-line);
|
|
15715
|
+
border-radius: 8px;
|
|
15716
|
+
gap: 4px;
|
|
15717
|
+
min-width: 0;
|
|
15718
|
+
margin: 0;
|
|
15719
|
+
padding: 9px 12px;
|
|
15720
|
+
display: grid;
|
|
15721
|
+
}
|
|
15722
|
+
|
|
15723
|
+
.work-spreadsheet-format-cells-options > legend {
|
|
15724
|
+
color: var(--a3s-muted);
|
|
15725
|
+
padding: 0 4px;
|
|
15726
|
+
font-size: 10px;
|
|
15727
|
+
font-weight: 650;
|
|
15728
|
+
}
|
|
15729
|
+
|
|
15730
|
+
.work-spreadsheet-format-cells-options.emphasis {
|
|
15731
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
15732
|
+
}
|
|
15733
|
+
|
|
15734
|
+
.work-spreadsheet-format-cells-font-preview {
|
|
15735
|
+
border: 1px solid var(--a3s-line);
|
|
15736
|
+
background: var(--a3s-panel-soft);
|
|
15737
|
+
text-align: center;
|
|
15738
|
+
border-radius: 9px;
|
|
15739
|
+
grid-column: 1 / -1;
|
|
15740
|
+
place-items: center;
|
|
15741
|
+
min-height: 72px;
|
|
15742
|
+
padding: 12px;
|
|
15743
|
+
display: grid;
|
|
15744
|
+
overflow: hidden;
|
|
15745
|
+
}
|
|
15746
|
+
|
|
15747
|
+
.work-spreadsheet-format-cells-border {
|
|
15748
|
+
gap: 18px;
|
|
15749
|
+
display: grid;
|
|
15750
|
+
}
|
|
15751
|
+
|
|
15752
|
+
.work-spreadsheet-format-cells-border-tools {
|
|
15753
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
15754
|
+
gap: 20px;
|
|
15755
|
+
display: grid;
|
|
15756
|
+
}
|
|
15757
|
+
|
|
15758
|
+
.work-spreadsheet-format-cells-border-layout {
|
|
15759
|
+
grid-template-columns: minmax(190px, .8fr) minmax(220px, 1.2fr);
|
|
15760
|
+
align-items: center;
|
|
15761
|
+
gap: 24px;
|
|
15762
|
+
display: grid;
|
|
15763
|
+
}
|
|
15764
|
+
|
|
15765
|
+
.work-spreadsheet-format-cells-border-actions {
|
|
15766
|
+
grid-template-columns: repeat(5, 34px);
|
|
15767
|
+
gap: 8px;
|
|
15768
|
+
display: grid;
|
|
15769
|
+
}
|
|
15770
|
+
|
|
15771
|
+
.work-spreadsheet-format-cells-border-actions > .ds-button {
|
|
15772
|
+
grid-column: 1 / -1;
|
|
15773
|
+
justify-self: start;
|
|
15774
|
+
}
|
|
15775
|
+
|
|
15776
|
+
.work-spreadsheet-border-edge {
|
|
15777
|
+
border: 1px solid var(--a3s-line);
|
|
15778
|
+
background: var(--a3s-panel);
|
|
15779
|
+
cursor: pointer;
|
|
15780
|
+
border-radius: 7px;
|
|
15781
|
+
place-items: center;
|
|
15782
|
+
width: 34px;
|
|
15783
|
+
height: 34px;
|
|
15784
|
+
padding: 7px;
|
|
15785
|
+
display: grid;
|
|
15786
|
+
position: relative;
|
|
15787
|
+
}
|
|
15788
|
+
|
|
15789
|
+
.work-spreadsheet-border-edge:hover, .work-spreadsheet-border-edge[aria-pressed="true"] {
|
|
15790
|
+
border-color: color-mix(in srgb, var(--a3s-green) 48%, var(--a3s-line));
|
|
15791
|
+
background: color-mix(in srgb, var(--a3s-green) 9%, var(--a3s-panel));
|
|
15792
|
+
}
|
|
15793
|
+
|
|
15794
|
+
.work-spreadsheet-border-edge > span {
|
|
15795
|
+
border: 1px solid var(--a3s-line-strong);
|
|
15796
|
+
width: 18px;
|
|
15797
|
+
height: 18px;
|
|
15798
|
+
position: relative;
|
|
15799
|
+
}
|
|
15800
|
+
|
|
15801
|
+
.work-spreadsheet-border-edge.top > span {
|
|
15802
|
+
border-top: 2px solid;
|
|
15803
|
+
}
|
|
15804
|
+
|
|
15805
|
+
.work-spreadsheet-border-edge.bottom > span {
|
|
15806
|
+
border-bottom: 2px solid;
|
|
15807
|
+
}
|
|
15808
|
+
|
|
15809
|
+
.work-spreadsheet-border-edge.left > span {
|
|
15810
|
+
border-left: 2px solid;
|
|
15811
|
+
}
|
|
15812
|
+
|
|
15813
|
+
.work-spreadsheet-border-edge.right > span {
|
|
15814
|
+
border-right: 2px solid;
|
|
15815
|
+
}
|
|
15816
|
+
|
|
15817
|
+
.work-spreadsheet-border-edge.diagonal > span:after {
|
|
15818
|
+
content: "";
|
|
15819
|
+
border-top: 2px solid;
|
|
15820
|
+
width: 20px;
|
|
15821
|
+
position: absolute;
|
|
15822
|
+
top: 8px;
|
|
15823
|
+
left: -2px;
|
|
15824
|
+
transform: rotate(-45deg);
|
|
15825
|
+
}
|
|
15826
|
+
|
|
15827
|
+
.work-spreadsheet-format-cells-border-preview {
|
|
15828
|
+
border: 1px dashed var(--a3s-line-strong);
|
|
15829
|
+
background: var(--a3s-panel-soft);
|
|
15830
|
+
justify-self: center;
|
|
15831
|
+
place-items: center;
|
|
15832
|
+
width: min(220px, 100%);
|
|
15833
|
+
height: 126px;
|
|
15834
|
+
display: grid;
|
|
15835
|
+
position: relative;
|
|
15836
|
+
}
|
|
15837
|
+
|
|
15838
|
+
.work-spreadsheet-format-cells-border-preview > span {
|
|
15839
|
+
pointer-events: none;
|
|
15840
|
+
position: absolute;
|
|
15841
|
+
inset: 10px;
|
|
15842
|
+
}
|
|
15843
|
+
|
|
15844
|
+
.work-spreadsheet-format-cells-border-preview > .diagonal {
|
|
15845
|
+
inset: 50% 5%;
|
|
15846
|
+
transform: rotate(-26deg);
|
|
15847
|
+
}
|
|
15848
|
+
|
|
15849
|
+
.work-spreadsheet-format-cells-border-preview > strong {
|
|
15850
|
+
color: var(--a3s-muted);
|
|
15851
|
+
font-size: 12px;
|
|
15852
|
+
font-weight: 600;
|
|
15853
|
+
}
|
|
15854
|
+
|
|
15855
|
+
.work-spreadsheet-format-cells-fill {
|
|
15856
|
+
grid-template-columns: minmax(190px, 1fr) auto;
|
|
15857
|
+
align-items: end;
|
|
15858
|
+
gap: 16px;
|
|
15859
|
+
max-width: 430px;
|
|
15860
|
+
display: grid;
|
|
15861
|
+
}
|
|
15862
|
+
|
|
15863
|
+
.work-spreadsheet-format-cells-fill-preview {
|
|
15864
|
+
border: 1px solid var(--a3s-line);
|
|
15865
|
+
min-height: 118px;
|
|
15866
|
+
color: var(--a3s-ink);
|
|
15867
|
+
border-radius: 9px;
|
|
15868
|
+
grid-column: 1 / -1;
|
|
15869
|
+
place-items: center;
|
|
15870
|
+
font-size: 11px;
|
|
15871
|
+
font-weight: 650;
|
|
15872
|
+
display: grid;
|
|
15873
|
+
}
|
|
15874
|
+
|
|
15875
|
+
.work-spreadsheet-format-cells-fill-preview.empty {
|
|
15876
|
+
background: var(--a3s-panel-soft);
|
|
15877
|
+
color: var(--a3s-muted);
|
|
15878
|
+
}
|
|
15879
|
+
|
|
15880
|
+
.work-spreadsheet-format-cells-protection {
|
|
15881
|
+
gap: 8px;
|
|
15882
|
+
max-width: 460px;
|
|
15883
|
+
display: grid;
|
|
15884
|
+
}
|
|
15885
|
+
|
|
15886
|
+
.work-spreadsheet-format-cells-protection > p, .work-spreadsheet-format-cells-mixed {
|
|
15887
|
+
color: var(--a3s-muted);
|
|
15888
|
+
margin: 8px 0 0;
|
|
15889
|
+
font-size: 11px;
|
|
15890
|
+
line-height: 1.6;
|
|
15891
|
+
}
|
|
15892
|
+
|
|
15893
|
+
.work-spreadsheet-format-cells-mixed {
|
|
15894
|
+
grid-column: 1 / -1;
|
|
15895
|
+
}
|
|
15896
|
+
|
|
15897
|
+
@media (width <= 620px) {
|
|
15898
|
+
.work-spreadsheet-format-cells-dialog form {
|
|
15899
|
+
min-height: 360px;
|
|
15900
|
+
}
|
|
15901
|
+
|
|
15902
|
+
.work-spreadsheet-format-cells-panel {
|
|
15903
|
+
min-height: 340px;
|
|
15904
|
+
}
|
|
15905
|
+
|
|
15906
|
+
.work-spreadsheet-format-cells-grid, .work-spreadsheet-format-cells-number, .work-spreadsheet-format-cells-border-tools, .work-spreadsheet-format-cells-border-layout {
|
|
15907
|
+
grid-template-columns: minmax(0, 1fr);
|
|
15908
|
+
}
|
|
15909
|
+
|
|
15910
|
+
.work-spreadsheet-format-cells-border-layout {
|
|
15911
|
+
align-items: start;
|
|
15912
|
+
}
|
|
15913
|
+
|
|
15914
|
+
.work-spreadsheet-format-cells-border-preview {
|
|
15915
|
+
width: 100%;
|
|
15916
|
+
height: 100px;
|
|
15917
|
+
}
|
|
15918
|
+
|
|
15919
|
+
.work-spreadsheet-format-cells-fill {
|
|
15920
|
+
grid-template-columns: minmax(0, 1fr);
|
|
15921
|
+
}
|
|
15922
|
+
|
|
15923
|
+
.work-spreadsheet-format-cells-fill-preview {
|
|
15924
|
+
grid-column: 1;
|
|
15925
|
+
}
|
|
15926
|
+
}
|
|
15927
|
+
|
|
15928
|
+
.work-spreadsheet-data-validation-dialog {
|
|
15929
|
+
--work-office-control-accent: var(--work-spreadsheet-accent, #159469);
|
|
15930
|
+
width: min(640px, 100%);
|
|
15931
|
+
}
|
|
15932
|
+
|
|
15933
|
+
.work-spreadsheet-data-validation-dialog form {
|
|
15934
|
+
gap: 18px;
|
|
15935
|
+
display: grid;
|
|
15936
|
+
}
|
|
15937
|
+
|
|
15938
|
+
.work-spreadsheet-data-validation-dialog section {
|
|
15939
|
+
gap: 12px;
|
|
15940
|
+
min-width: 0;
|
|
15941
|
+
display: grid;
|
|
15942
|
+
}
|
|
15943
|
+
|
|
15944
|
+
.work-spreadsheet-data-validation-dialog section + section {
|
|
15945
|
+
border-top: 1px solid var(--a3s-line);
|
|
15946
|
+
padding-top: 16px;
|
|
15947
|
+
}
|
|
15948
|
+
|
|
15949
|
+
.work-spreadsheet-data-validation-dialog h3 {
|
|
15950
|
+
color: var(--a3s-ink);
|
|
15951
|
+
margin: 0;
|
|
15952
|
+
font-size: 12px;
|
|
15953
|
+
font-weight: 650;
|
|
15954
|
+
}
|
|
15955
|
+
|
|
15956
|
+
.work-spreadsheet-data-validation-scope {
|
|
15957
|
+
background: var(--a3s-panel-soft);
|
|
15958
|
+
border-radius: 8px;
|
|
15959
|
+
grid-template-columns: 32px minmax(0, 1fr);
|
|
15960
|
+
align-items: center;
|
|
15961
|
+
gap: 10px;
|
|
15962
|
+
min-width: 0;
|
|
15963
|
+
padding: 9px 11px;
|
|
15964
|
+
display: grid;
|
|
15965
|
+
}
|
|
15966
|
+
|
|
15967
|
+
.work-spreadsheet-data-validation-scope > span {
|
|
15968
|
+
background: color-mix(in srgb,
|
|
15969
|
+
var(--work-spreadsheet-accent, #159469) 11%,
|
|
15970
|
+
var(--a3s-panel));
|
|
15971
|
+
width: 32px;
|
|
15972
|
+
height: 32px;
|
|
15973
|
+
color: var(--work-spreadsheet-accent, #159469);
|
|
15974
|
+
border-radius: 7px;
|
|
15975
|
+
place-items: center;
|
|
15976
|
+
display: grid;
|
|
15977
|
+
}
|
|
15978
|
+
|
|
15979
|
+
.work-spreadsheet-data-validation-scope > div {
|
|
15980
|
+
gap: 2px;
|
|
15981
|
+
min-width: 0;
|
|
15982
|
+
display: grid;
|
|
15983
|
+
}
|
|
15984
|
+
|
|
15985
|
+
.work-spreadsheet-data-validation-scope strong, .work-spreadsheet-data-validation-scope small {
|
|
15986
|
+
text-overflow: ellipsis;
|
|
15987
|
+
white-space: nowrap;
|
|
15988
|
+
overflow: hidden;
|
|
15989
|
+
}
|
|
15990
|
+
|
|
15991
|
+
.work-spreadsheet-data-validation-scope strong {
|
|
15992
|
+
color: var(--a3s-ink);
|
|
15993
|
+
font-size: 11px;
|
|
15994
|
+
font-weight: 650;
|
|
15995
|
+
}
|
|
15996
|
+
|
|
15997
|
+
.work-spreadsheet-data-validation-scope small {
|
|
15998
|
+
color: var(--a3s-muted);
|
|
15999
|
+
font-size: 10px;
|
|
16000
|
+
}
|
|
16001
|
+
|
|
16002
|
+
.work-spreadsheet-data-validation-mixed {
|
|
16003
|
+
color: color-mix(in srgb, var(--a3s-ink) 74%, #9a6900);
|
|
16004
|
+
margin: -6px 0 0;
|
|
16005
|
+
font-size: 11px;
|
|
16006
|
+
line-height: 1.45;
|
|
16007
|
+
}
|
|
16008
|
+
|
|
16009
|
+
.work-spreadsheet-data-validation-section-heading {
|
|
16010
|
+
color: var(--work-spreadsheet-accent, #159469);
|
|
16011
|
+
align-items: center;
|
|
16012
|
+
gap: 7px;
|
|
16013
|
+
display: flex;
|
|
16014
|
+
}
|
|
16015
|
+
|
|
16016
|
+
.work-spreadsheet-data-validation-condition-grid, .work-spreadsheet-data-validation-values.two {
|
|
16017
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
16018
|
+
gap: 10px;
|
|
16019
|
+
display: grid;
|
|
16020
|
+
}
|
|
16021
|
+
|
|
16022
|
+
.work-spreadsheet-data-validation-values {
|
|
16023
|
+
gap: 8px;
|
|
16024
|
+
min-width: 0;
|
|
16025
|
+
display: grid;
|
|
16026
|
+
}
|
|
16027
|
+
|
|
16028
|
+
.work-spreadsheet-data-validation-inline-error {
|
|
16029
|
+
color: var(--a3s-danger, #c23535);
|
|
16030
|
+
grid-column: 1 / -1;
|
|
16031
|
+
font-size: 10px;
|
|
16032
|
+
}
|
|
16033
|
+
|
|
16034
|
+
.work-spreadsheet-data-validation-behavior {
|
|
16035
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
16036
|
+
gap: 8px;
|
|
16037
|
+
display: grid;
|
|
16038
|
+
}
|
|
16039
|
+
|
|
16040
|
+
.work-spreadsheet-data-validation-behavior .work-office-checkbox {
|
|
16041
|
+
min-height: 40px;
|
|
16042
|
+
padding: 8px 10px;
|
|
16043
|
+
}
|
|
16044
|
+
|
|
16045
|
+
.work-spreadsheet-data-validation-dialog textarea {
|
|
16046
|
+
resize: vertical;
|
|
16047
|
+
min-height: 70px;
|
|
16048
|
+
}
|
|
16049
|
+
|
|
16050
|
+
.work-spreadsheet-data-validation-error {
|
|
16051
|
+
color: var(--a3s-danger, #c23535);
|
|
16052
|
+
margin: 0;
|
|
16053
|
+
font-size: 11px;
|
|
16054
|
+
}
|
|
16055
|
+
|
|
16056
|
+
.work-spreadsheet-data-validation-remove {
|
|
16057
|
+
margin-right: auto;
|
|
16058
|
+
}
|
|
16059
|
+
|
|
16060
|
+
@media (width <= 560px) {
|
|
16061
|
+
.work-spreadsheet-data-validation-condition-grid, .work-spreadsheet-data-validation-values.two, .work-spreadsheet-data-validation-behavior {
|
|
16062
|
+
grid-template-columns: minmax(0, 1fr);
|
|
16063
|
+
}
|
|
16064
|
+
}
|
|
16065
|
+
|
|
16066
|
+
.work-spreadsheet-hyperlink-dialog {
|
|
16067
|
+
--work-office-control-accent: var(--work-spreadsheet-accent, #159469);
|
|
16068
|
+
width: min(610px, 100%);
|
|
16069
|
+
}
|
|
16070
|
+
|
|
16071
|
+
.work-spreadsheet-hyperlink-dialog form {
|
|
16072
|
+
gap: 18px;
|
|
16073
|
+
display: grid;
|
|
16074
|
+
}
|
|
16075
|
+
|
|
16076
|
+
.work-spreadsheet-hyperlink-types {
|
|
16077
|
+
border: 0;
|
|
16078
|
+
min-width: 0;
|
|
16079
|
+
margin: 0;
|
|
16080
|
+
padding: 0;
|
|
16081
|
+
}
|
|
16082
|
+
|
|
16083
|
+
.work-spreadsheet-hyperlink-types > legend {
|
|
16084
|
+
color: var(--a3s-muted);
|
|
16085
|
+
margin-bottom: 8px;
|
|
16086
|
+
font-size: 12px;
|
|
16087
|
+
font-weight: 600;
|
|
16088
|
+
}
|
|
16089
|
+
|
|
16090
|
+
.work-spreadsheet-hyperlink-types > div {
|
|
16091
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
16092
|
+
gap: 7px;
|
|
16093
|
+
display: grid;
|
|
16094
|
+
}
|
|
16095
|
+
|
|
16096
|
+
.work-spreadsheet-hyperlink-types label {
|
|
16097
|
+
border: 1px solid var(--a3s-line);
|
|
16098
|
+
background: var(--a3s-panel);
|
|
16099
|
+
min-width: 0;
|
|
16100
|
+
min-height: 62px;
|
|
16101
|
+
color: var(--a3s-muted);
|
|
16102
|
+
cursor: pointer;
|
|
16103
|
+
border-radius: 8px;
|
|
16104
|
+
grid-template-columns: 20px minmax(0, 1fr);
|
|
16105
|
+
align-items: center;
|
|
16106
|
+
gap: 8px;
|
|
16107
|
+
padding: 9px 10px;
|
|
16108
|
+
display: grid;
|
|
16109
|
+
position: relative;
|
|
16110
|
+
}
|
|
16111
|
+
|
|
16112
|
+
.work-spreadsheet-hyperlink-types label:hover {
|
|
16113
|
+
border-color: color-mix(in srgb,
|
|
16114
|
+
var(--work-spreadsheet-accent, #159469) 42%,
|
|
16115
|
+
var(--a3s-line));
|
|
16116
|
+
}
|
|
16117
|
+
|
|
16118
|
+
.work-spreadsheet-hyperlink-types label.selected {
|
|
16119
|
+
border-color: color-mix(in srgb,
|
|
16120
|
+
var(--work-spreadsheet-accent, #159469) 58%,
|
|
16121
|
+
var(--a3s-line));
|
|
16122
|
+
background: color-mix(in srgb,
|
|
16123
|
+
var(--work-spreadsheet-accent, #159469) 8%,
|
|
16124
|
+
var(--a3s-panel));
|
|
16125
|
+
color: var(--work-spreadsheet-accent, #159469);
|
|
16126
|
+
}
|
|
16127
|
+
|
|
16128
|
+
.work-spreadsheet-hyperlink-types label:has(input:focus-visible) {
|
|
16129
|
+
outline: 2px solid
|
|
16130
|
+
color-mix(in srgb, var(--work-spreadsheet-accent, #159469) 38%, transparent);
|
|
16131
|
+
outline-offset: 2px;
|
|
16132
|
+
}
|
|
16133
|
+
|
|
16134
|
+
.work-spreadsheet-hyperlink-types input {
|
|
16135
|
+
opacity: 0;
|
|
16136
|
+
width: 1px;
|
|
16137
|
+
height: 1px;
|
|
16138
|
+
position: absolute;
|
|
16139
|
+
}
|
|
16140
|
+
|
|
16141
|
+
.work-spreadsheet-hyperlink-types label > span {
|
|
16142
|
+
gap: 1px;
|
|
16143
|
+
min-width: 0;
|
|
16144
|
+
display: grid;
|
|
16145
|
+
}
|
|
16146
|
+
|
|
16147
|
+
.work-spreadsheet-hyperlink-types strong, .work-spreadsheet-hyperlink-types small {
|
|
16148
|
+
text-overflow: ellipsis;
|
|
16149
|
+
white-space: nowrap;
|
|
16150
|
+
overflow: hidden;
|
|
16151
|
+
}
|
|
16152
|
+
|
|
16153
|
+
.work-spreadsheet-hyperlink-types strong {
|
|
16154
|
+
color: var(--a3s-ink);
|
|
16155
|
+
font-size: 11px;
|
|
16156
|
+
font-weight: 650;
|
|
16157
|
+
}
|
|
16158
|
+
|
|
16159
|
+
.work-spreadsheet-hyperlink-types small {
|
|
16160
|
+
color: var(--a3s-muted);
|
|
16161
|
+
font-size: 9px;
|
|
16162
|
+
}
|
|
16163
|
+
|
|
16164
|
+
.work-spreadsheet-hyperlink-preview {
|
|
16165
|
+
background: var(--a3s-panel-soft);
|
|
16166
|
+
border-radius: 8px;
|
|
16167
|
+
grid-template-columns: 30px minmax(0, 1fr);
|
|
16168
|
+
align-items: center;
|
|
16169
|
+
gap: 10px;
|
|
16170
|
+
min-width: 0;
|
|
16171
|
+
min-height: 56px;
|
|
16172
|
+
padding: 9px 11px;
|
|
16173
|
+
display: grid;
|
|
16174
|
+
}
|
|
16175
|
+
|
|
16176
|
+
.work-spreadsheet-hyperlink-preview > span {
|
|
16177
|
+
background: color-mix(in srgb,
|
|
16178
|
+
var(--work-spreadsheet-accent, #159469) 11%,
|
|
16179
|
+
var(--a3s-panel));
|
|
16180
|
+
width: 30px;
|
|
16181
|
+
height: 30px;
|
|
16182
|
+
color: var(--work-spreadsheet-accent, #159469);
|
|
16183
|
+
border-radius: 7px;
|
|
16184
|
+
place-items: center;
|
|
16185
|
+
display: grid;
|
|
16186
|
+
}
|
|
16187
|
+
|
|
16188
|
+
.work-spreadsheet-hyperlink-preview > div {
|
|
16189
|
+
gap: 1px;
|
|
16190
|
+
min-width: 0;
|
|
16191
|
+
display: grid;
|
|
16192
|
+
}
|
|
16193
|
+
|
|
16194
|
+
.work-spreadsheet-hyperlink-preview strong, .work-spreadsheet-hyperlink-preview small {
|
|
16195
|
+
text-overflow: ellipsis;
|
|
16196
|
+
white-space: nowrap;
|
|
16197
|
+
overflow: hidden;
|
|
16198
|
+
}
|
|
16199
|
+
|
|
16200
|
+
.work-spreadsheet-hyperlink-preview strong {
|
|
16201
|
+
color: var(--a3s-ink);
|
|
16202
|
+
font-size: 11px;
|
|
16203
|
+
font-weight: 650;
|
|
16204
|
+
}
|
|
16205
|
+
|
|
16206
|
+
.work-spreadsheet-hyperlink-preview small {
|
|
16207
|
+
color: var(--a3s-muted);
|
|
16208
|
+
font-size: 10px;
|
|
16209
|
+
}
|
|
16210
|
+
|
|
16211
|
+
.work-spreadsheet-hyperlink-remove {
|
|
16212
|
+
margin-right: auto;
|
|
16213
|
+
}
|
|
16214
|
+
|
|
16215
|
+
@media (width <= 560px) {
|
|
16216
|
+
.work-spreadsheet-hyperlink-types > div {
|
|
16217
|
+
grid-template-columns: minmax(0, 1fr);
|
|
16218
|
+
}
|
|
16219
|
+
|
|
16220
|
+
.work-spreadsheet-hyperlink-types label {
|
|
16221
|
+
min-height: 50px;
|
|
16222
|
+
}
|
|
16223
|
+
}
|
|
16224
|
+
|
|
16225
|
+
.work-spreadsheet-paste-special-dialog {
|
|
16226
|
+
--work-office-control-accent: var(--work-spreadsheet-accent, #159469);
|
|
16227
|
+
width: min(660px, 100%);
|
|
16228
|
+
}
|
|
16229
|
+
|
|
16230
|
+
.work-spreadsheet-paste-special-dialog > .ds-dialog-body {
|
|
16231
|
+
padding-top: 0;
|
|
16232
|
+
}
|
|
16233
|
+
|
|
16234
|
+
.work-spreadsheet-paste-special-source {
|
|
16235
|
+
background: color-mix(in srgb,
|
|
16236
|
+
var(--work-spreadsheet-accent, #159469) 7%,
|
|
16237
|
+
var(--a3s-panel-soft));
|
|
16238
|
+
min-height: 34px;
|
|
16239
|
+
color: var(--a3s-muted);
|
|
16240
|
+
border-radius: 7px;
|
|
16241
|
+
justify-content: space-between;
|
|
16242
|
+
align-items: center;
|
|
16243
|
+
gap: 12px;
|
|
16244
|
+
margin-bottom: 15px;
|
|
16245
|
+
padding: 0 11px;
|
|
16246
|
+
font-size: 11px;
|
|
16247
|
+
display: flex;
|
|
16248
|
+
}
|
|
16249
|
+
|
|
16250
|
+
.work-spreadsheet-paste-special-source strong {
|
|
16251
|
+
color: var(--a3s-ink);
|
|
16252
|
+
font-weight: 650;
|
|
16253
|
+
}
|
|
16254
|
+
|
|
16255
|
+
.work-spreadsheet-paste-special-dialog form {
|
|
16256
|
+
grid-template-columns: minmax(0, 1.55fr) minmax(170px, .75fr);
|
|
16257
|
+
align-items: start;
|
|
16258
|
+
gap: 18px 22px;
|
|
16259
|
+
display: grid;
|
|
16260
|
+
}
|
|
16261
|
+
|
|
16262
|
+
.work-spreadsheet-paste-special-dialog fieldset {
|
|
16263
|
+
border: 0;
|
|
16264
|
+
min-width: 0;
|
|
16265
|
+
margin: 0;
|
|
16266
|
+
padding: 0;
|
|
16267
|
+
}
|
|
16268
|
+
|
|
16269
|
+
.work-spreadsheet-paste-special-dialog legend {
|
|
16270
|
+
width: 100%;
|
|
16271
|
+
color: var(--a3s-muted);
|
|
16272
|
+
margin-bottom: 8px;
|
|
16273
|
+
font-size: 11px;
|
|
16274
|
+
font-weight: 650;
|
|
16275
|
+
}
|
|
16276
|
+
|
|
16277
|
+
.work-spreadsheet-paste-special-modes {
|
|
16278
|
+
grid-row: span 2;
|
|
16279
|
+
}
|
|
16280
|
+
|
|
16281
|
+
.work-spreadsheet-paste-special-modes > div {
|
|
16282
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
16283
|
+
gap: 3px;
|
|
16284
|
+
display: grid;
|
|
16285
|
+
}
|
|
16286
|
+
|
|
16287
|
+
.work-spreadsheet-paste-special-modes label {
|
|
16288
|
+
min-height: 37px;
|
|
16289
|
+
color: var(--a3s-ink);
|
|
16290
|
+
cursor: pointer;
|
|
16291
|
+
border-radius: 7px;
|
|
16292
|
+
grid-template-columns: 14px minmax(0, 1fr);
|
|
16293
|
+
align-items: center;
|
|
16294
|
+
gap: 8px;
|
|
16295
|
+
padding: 6px 8px;
|
|
16296
|
+
font-size: 11px;
|
|
16297
|
+
display: grid;
|
|
16298
|
+
position: relative;
|
|
16299
|
+
}
|
|
16300
|
+
|
|
16301
|
+
.work-spreadsheet-paste-special-modes label:hover {
|
|
16302
|
+
background: var(--a3s-panel-soft);
|
|
16303
|
+
}
|
|
16304
|
+
|
|
16305
|
+
.work-spreadsheet-paste-special-modes label.selected {
|
|
16306
|
+
background: color-mix(in srgb,
|
|
16307
|
+
var(--work-spreadsheet-accent, #159469) 10%,
|
|
16308
|
+
var(--a3s-panel));
|
|
16309
|
+
}
|
|
16310
|
+
|
|
16311
|
+
.work-spreadsheet-paste-special-modes label:has(input:focus-visible), .work-spreadsheet-paste-special-operations label:has(input:focus-visible) {
|
|
16312
|
+
outline: 2px solid
|
|
16313
|
+
color-mix(in srgb, var(--work-spreadsheet-accent, #159469) 32%, transparent);
|
|
16314
|
+
outline-offset: 1px;
|
|
16315
|
+
}
|
|
16316
|
+
|
|
16317
|
+
.work-spreadsheet-paste-special-modes label:has(input:disabled) {
|
|
16318
|
+
cursor: not-allowed;
|
|
16319
|
+
opacity: .48;
|
|
16320
|
+
}
|
|
16321
|
+
|
|
16322
|
+
.work-spreadsheet-paste-special-modes input, .work-spreadsheet-paste-special-operations input {
|
|
16323
|
+
opacity: 0;
|
|
16324
|
+
width: 1px;
|
|
16325
|
+
height: 1px;
|
|
16326
|
+
position: absolute;
|
|
16327
|
+
}
|
|
16328
|
+
|
|
16329
|
+
.work-spreadsheet-paste-special-modes label > span[aria-hidden="true"] {
|
|
16330
|
+
box-sizing: border-box;
|
|
16331
|
+
border: 1px solid var(--a3s-line-strong);
|
|
16332
|
+
background: var(--a3s-panel);
|
|
16333
|
+
border-radius: 50%;
|
|
16334
|
+
place-items: center;
|
|
16335
|
+
width: 14px;
|
|
16336
|
+
height: 14px;
|
|
16337
|
+
display: grid;
|
|
16338
|
+
}
|
|
16339
|
+
|
|
16340
|
+
.work-spreadsheet-paste-special-modes label.selected > span[aria-hidden="true"] {
|
|
16341
|
+
border: 4px solid var(--work-spreadsheet-accent, #159469);
|
|
16342
|
+
}
|
|
16343
|
+
|
|
16344
|
+
.work-spreadsheet-paste-special-modes small {
|
|
16345
|
+
color: var(--a3s-muted);
|
|
16346
|
+
grid-column: 2;
|
|
16347
|
+
margin-top: -2px;
|
|
16348
|
+
font-size: 9px;
|
|
16349
|
+
line-height: 1.2;
|
|
16350
|
+
}
|
|
16351
|
+
|
|
16352
|
+
.work-spreadsheet-paste-special-operations > div {
|
|
16353
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
16354
|
+
gap: 4px;
|
|
16355
|
+
display: grid;
|
|
16356
|
+
}
|
|
16357
|
+
|
|
16358
|
+
.work-spreadsheet-paste-special-operations label {
|
|
16359
|
+
border: 1px solid var(--a3s-line);
|
|
16360
|
+
background: var(--a3s-panel);
|
|
16361
|
+
min-height: 30px;
|
|
16362
|
+
color: var(--a3s-muted);
|
|
16363
|
+
cursor: pointer;
|
|
16364
|
+
border-radius: 6px;
|
|
16365
|
+
place-items: center;
|
|
16366
|
+
font-size: 10px;
|
|
16367
|
+
display: grid;
|
|
16368
|
+
position: relative;
|
|
16369
|
+
}
|
|
16370
|
+
|
|
16371
|
+
.work-spreadsheet-paste-special-operations label:first-child {
|
|
16372
|
+
grid-column: 1 / -1;
|
|
16373
|
+
}
|
|
16374
|
+
|
|
16375
|
+
.work-spreadsheet-paste-special-operations label:hover {
|
|
16376
|
+
border-color: color-mix(in srgb,
|
|
16377
|
+
var(--work-spreadsheet-accent, #159469) 42%,
|
|
16378
|
+
var(--a3s-line));
|
|
16379
|
+
}
|
|
16380
|
+
|
|
16381
|
+
.work-spreadsheet-paste-special-operations label.selected {
|
|
16382
|
+
border-color: color-mix(in srgb,
|
|
16383
|
+
var(--work-spreadsheet-accent, #159469) 58%,
|
|
16384
|
+
var(--a3s-line));
|
|
16385
|
+
background: color-mix(in srgb,
|
|
16386
|
+
var(--work-spreadsheet-accent, #159469) 9%,
|
|
16387
|
+
var(--a3s-panel));
|
|
16388
|
+
color: var(--a3s-ink);
|
|
16389
|
+
font-weight: 650;
|
|
16390
|
+
}
|
|
16391
|
+
|
|
16392
|
+
.work-spreadsheet-paste-special-operations label:has(input:disabled) {
|
|
16393
|
+
cursor: not-allowed;
|
|
16394
|
+
opacity: .42;
|
|
16395
|
+
}
|
|
16396
|
+
|
|
16397
|
+
.work-spreadsheet-paste-special-options {
|
|
16398
|
+
gap: 8px;
|
|
16399
|
+
padding-top: 2px;
|
|
16400
|
+
display: grid;
|
|
16401
|
+
}
|
|
16402
|
+
|
|
16403
|
+
.work-spreadsheet-paste-special-options .work-office-checkbox {
|
|
16404
|
+
min-height: 28px;
|
|
16405
|
+
}
|
|
16406
|
+
|
|
16407
|
+
.work-spreadsheet-paste-special-error {
|
|
16408
|
+
background: color-mix(in srgb, var(--a3s-red) 8%, var(--a3s-panel));
|
|
16409
|
+
color: color-mix(in srgb, var(--a3s-red) 88%, var(--a3s-ink));
|
|
16410
|
+
border-radius: 6px;
|
|
16411
|
+
grid-column: 1 / -1;
|
|
16412
|
+
margin: -4px 0 0;
|
|
16413
|
+
padding: 8px 10px;
|
|
16414
|
+
font-size: 11px;
|
|
16415
|
+
line-height: 1.45;
|
|
16416
|
+
}
|
|
16417
|
+
|
|
16418
|
+
@media (width <= 620px) {
|
|
16419
|
+
.work-spreadsheet-paste-special-dialog form {
|
|
16420
|
+
grid-template-columns: minmax(0, 1fr);
|
|
16421
|
+
gap: 16px;
|
|
16422
|
+
}
|
|
16423
|
+
|
|
16424
|
+
.work-spreadsheet-paste-special-modes {
|
|
16425
|
+
grid-row: auto;
|
|
16426
|
+
}
|
|
16427
|
+
|
|
16428
|
+
.work-spreadsheet-paste-special-options {
|
|
16429
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
16430
|
+
}
|
|
16431
|
+
}
|
|
16432
|
+
|
|
16433
|
+
@media (width <= 420px) {
|
|
16434
|
+
.work-spreadsheet-paste-special-modes > div, .work-spreadsheet-paste-special-options {
|
|
16435
|
+
grid-template-columns: minmax(0, 1fr);
|
|
16436
|
+
}
|
|
16437
|
+
}
|
|
16438
|
+
|
|
15595
16439
|
.work-spreadsheet-chart-manager {
|
|
15596
16440
|
border: 0;
|
|
15597
16441
|
grid-template-columns: minmax(180px, 230px) minmax(720px, 1fr);
|