ljcoder2015_obsidian-excel/styles.css

1176 lines
73 KiB
CSS
Raw Normal View History

2023-12-08 10:05:02 +00:00
:root {
--sheet-iframe-border-color: #f5f6f7;
--sheet-iframe-background-color: #fff;
--sheet-toolbar-background-color: #f5f6f7;
--sheet-toolbar-divider-color: #e0e2e4;
--sheet-dropdown-content-background-color: #fff;
--sheet-dropdown-content-color: rgba(0, 0, 0, 0.9);
--sheet-dropdown-title-color: rgba(0, 0, 0, 0.9);
--sheet-menu-color: #80868b;
--sheet-menu-active-background-color: #fff;
--sheet-header-background-color: #f8f8f9;
--sheet-checked-before: #4b89ff;
}
.sheet-html {
overflow-x: auto;
}
.sheet-html table {
border-collapse: collapse;
line-height: var(--table-line-height);
}
.sheet-html td,
.sheet-html th {
padding: var(--size-2-2) var(--size-4-2);
border: var(--table-border-width) solid var(--table-border-color);
max-width: var(--table-column-max-width);
}
.sheet-html td {
font-size: var(--table-text-size);
color: var(--table-text-color);
}
.sheet-box {
width: 100%;
height: 100%;
margin: -16px;
padding: 0;
}
.import-excel {
position: absolute;
right: 0;
bottom: 0;
z-index: 100;
opacity: 0;
}
/* Markdown 文档引入样式设置*/
.sheet-iframe {
width: 100%;
background-color: var(--sheet-iframe-background-color);
border: 5px solid var(--sheet-iframe-border-color);
}
ul.x-spreadsheet-menu {
margin-block-start: 0;
}
.sheet-iframe .x-spreadsheet-menu > li .x-spreadsheet-icon {
display: none;
}
2023-08-21 09:08:47 +00:00
/* node_modules/x-data-spreadsheet/src/index.less */
body {
margin: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet {
2023-08-18 10:27:21 +00:00
font-size: 13px;
line-height: normal;
user-select: none;
-moz-user-select: none;
2023-12-08 10:05:02 +00:00
font-family: "Lato", "Source Sans Pro", Roboto, Helvetica, Arial, sans-serif;
2023-08-18 10:27:21 +00:00
box-sizing: content-box;
2023-12-08 10:05:02 +00:00
background: var(--sheet-iframe-background-color);
2023-08-18 10:27:21 +00:00
-webkit-font-smoothing: antialiased;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet textarea {
font: 400 13px Arial, "Lato", "Source Sans Pro", Roboto, Helvetica,
sans-serif;
}
.x-spreadsheet-sheet {
2023-08-18 10:27:21 +00:00
position: relative;
overflow: hidden;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-table {
2023-08-18 10:27:21 +00:00
vertical-align: bottom;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-tooltip {
2023-08-18 10:27:21 +00:00
font-family: inherit;
position: absolute;
padding: 5px 10px;
color: #fff;
border-radius: 1px;
background: #000000;
font-size: 12px;
z-index: 201;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-tooltip:before {
2023-08-18 10:27:21 +00:00
pointer-events: none;
position: absolute;
left: calc(50% - 4px);
top: -4px;
content: "";
width: 8px;
height: 8px;
background: inherit;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
z-index: 1;
box-shadow: 1px 1px 3px -1px rgba(0, 0, 0, 0.3);
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-color-palette {
2023-08-18 10:27:21 +00:00
padding: 5px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-color-palette table {
2023-08-18 10:27:21 +00:00
margin: 0;
padding: 0;
border-collapse: separate;
border-spacing: 2;
background: #fff;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-color-palette table td {
2023-08-18 10:27:21 +00:00
margin: 0;
cursor: pointer;
border: 1px solid transparent;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-color-palette table td:hover {
2023-08-18 10:27:21 +00:00
border-color: #ddd;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-color-palette table td .x-spreadsheet-color-palette-cell {
2023-08-18 10:27:21 +00:00
width: 16px;
height: 16px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-border-palette {
2023-08-18 10:27:21 +00:00
padding: 6px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-border-palette table {
2023-08-18 10:27:21 +00:00
margin: 0;
padding: 0;
border-collapse: separate;
border-spacing: 0;
background: #fff;
table-layout: fixed;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-border-palette table td {
2023-08-18 10:27:21 +00:00
margin: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-border-palette .x-spreadsheet-border-palette-left {
2023-08-18 10:27:21 +00:00
border-right: 1px solid #eee;
padding-right: 6px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-border-palette
.x-spreadsheet-border-palette-left
.x-spreadsheet-border-palette-cell {
2023-08-18 10:27:21 +00:00
width: 30px;
height: 30px;
cursor: pointer;
text-align: center;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-border-palette
.x-spreadsheet-border-palette-left
.x-spreadsheet-border-palette-cell
.x-spreadsheet-icon-img {
2023-08-18 10:27:21 +00:00
opacity: 0.8;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-border-palette
.x-spreadsheet-border-palette-left
.x-spreadsheet-border-palette-cell:hover {
2023-08-18 10:27:21 +00:00
background-color: #eee;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-border-palette .x-spreadsheet-border-palette-right {
2023-08-18 10:27:21 +00:00
padding-left: 6px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-border-palette
.x-spreadsheet-border-palette-right
.x-spreadsheet-toolbar-btn {
2023-08-18 10:27:21 +00:00
margin-top: 0;
margin-bottom: 3px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-border-palette
.x-spreadsheet-border-palette-right
.x-spreadsheet-line-type {
2023-08-18 10:27:21 +00:00
position: relative;
left: 0;
top: -3px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-dropdown {
2023-08-18 10:27:21 +00:00
position: relative;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-dropdown .x-spreadsheet-dropdown-content {
2023-08-18 10:27:21 +00:00
position: absolute;
z-index: 200;
2023-12-08 10:05:02 +00:00
background: var(--sheet-dropdown-content-background-color);
2023-08-18 10:27:21 +00:00
box-shadow: 1px 2px 5px 2px rgba(51, 51, 51, 0.15);
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-dropdown.bottom-left .x-spreadsheet-dropdown-content {
2023-08-18 10:27:21 +00:00
top: calc(100% + 5px);
left: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-dropdown.bottom-right .x-spreadsheet-dropdown-content {
2023-08-18 10:27:21 +00:00
top: calc(100% + 5px);
right: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-dropdown.top-left .x-spreadsheet-dropdown-content {
2023-08-18 10:27:21 +00:00
bottom: calc(100% + 5px);
left: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-dropdown.top-right .x-spreadsheet-dropdown-content {
2023-08-18 10:27:21 +00:00
bottom: calc(100% + 5px);
right: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-dropdown .x-spreadsheet-dropdown-title {
2023-08-18 10:27:21 +00:00
padding: 0 5px;
display: inline-block;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-dropdown-title {
color: var(--sheet-dropdown-title-color);
}
.x-spreadsheet-dropdown
.x-spreadsheet-dropdown-header
.x-spreadsheet-icon.arrow-left {
2023-08-18 10:27:21 +00:00
margin-left: 4px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-dropdown
.x-spreadsheet-dropdown-header
.x-spreadsheet-icon.arrow-right {
2023-08-18 10:27:21 +00:00
width: 10px;
margin-right: 4px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-dropdown
.x-spreadsheet-dropdown-header
.x-spreadsheet-icon.arrow-right
.arrow-down {
2023-08-18 10:27:21 +00:00
left: -130px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-resizer {
2023-08-18 10:27:21 +00:00
position: absolute;
z-index: 11;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-resizer .x-spreadsheet-resizer-hover {
2023-08-18 10:27:21 +00:00
background-color: rgba(75, 137, 255, 0.25);
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-resizer .x-spreadsheet-resizer-line {
2023-08-18 10:27:21 +00:00
position: absolute;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-resizer.horizontal {
2023-08-18 10:27:21 +00:00
cursor: row-resize;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-resizer.horizontal .x-spreadsheet-resizer-line {
2023-08-18 10:27:21 +00:00
border-bottom: 2px dashed #4b89ff;
left: 0;
bottom: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-resizer.vertical {
2023-08-18 10:27:21 +00:00
cursor: col-resize;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-resizer.vertical .x-spreadsheet-resizer-line {
2023-08-18 10:27:21 +00:00
border-right: 2px dashed #4b89ff;
top: 0;
right: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-scrollbar {
2023-08-18 10:27:21 +00:00
position: absolute;
bottom: 0;
right: 0;
background-color: #f4f5f8;
opacity: 0.9;
z-index: 12;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-scrollbar.horizontal {
2023-08-18 10:27:21 +00:00
right: 15px;
overflow-x: scroll;
overflow-y: hidden;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-scrollbar.horizontal > div {
2023-08-18 10:27:21 +00:00
height: 1px;
background: #ddd;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-scrollbar.vertical {
2023-08-18 10:27:21 +00:00
bottom: 15px;
overflow-x: hidden;
overflow-y: scroll;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-scrollbar.vertical > div {
2023-08-18 10:27:21 +00:00
width: 1px;
background: #ddd;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-overlayer {
2023-08-18 10:27:21 +00:00
position: absolute;
left: 0;
top: 0;
z-index: 10;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-overlayer .x-spreadsheet-overlayer-content {
2023-08-18 10:27:21 +00:00
position: absolute;
overflow: hidden;
pointer-events: none;
width: 100%;
height: 100%;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-editor,
.x-spreadsheet-selector {
2023-08-18 10:27:21 +00:00
box-sizing: content-box;
position: absolute;
overflow: hidden;
pointer-events: none;
top: 0;
left: 0;
width: 100%;
height: 100%;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-selector .hide-input {
2023-08-18 10:27:21 +00:00
position: absolute;
z-index: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-selector .hide-input input {
2023-08-18 10:27:21 +00:00
padding: 0;
width: 0;
border: none !important;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-selector .x-spreadsheet-selector-area {
2023-08-18 10:27:21 +00:00
position: absolute;
border: 2px solid #4b89ff;
background: rgba(75, 137, 255, 0.1);
z-index: 5;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-selector .x-spreadsheet-selector-clipboard,
.x-spreadsheet-selector .x-spreadsheet-selector-autofill {
2023-08-18 10:27:21 +00:00
position: absolute;
background: transparent;
z-index: 100;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-selector .x-spreadsheet-selector-clipboard {
2023-08-18 10:27:21 +00:00
border: 2px dashed #4b89ff;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-selector .x-spreadsheet-selector-autofill {
2023-08-18 10:27:21 +00:00
border: 1px dashed rgba(0, 0, 0, 0.45);
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-selector .x-spreadsheet-selector-corner {
2023-08-18 10:27:21 +00:00
pointer-events: auto;
position: absolute;
cursor: crosshair;
font-size: 0;
height: 5px;
width: 5px;
right: -5px;
bottom: -5px;
border: 2px solid #ffffff;
background: #4b89ff;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-editor {
2023-08-18 10:27:21 +00:00
z-index: 20;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-editor .x-spreadsheet-editor-area {
2023-08-18 10:27:21 +00:00
position: absolute;
text-align: left;
border: 2px solid #4b89ff;
line-height: 0;
z-index: 100;
pointer-events: auto;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-editor .x-spreadsheet-editor-area textarea {
2023-08-18 10:27:21 +00:00
box-sizing: content-box;
border: none;
padding: 0 3px;
outline: none;
resize: none;
text-align: start;
overflow-y: hidden;
2023-12-08 10:05:02 +00:00
font: 400 13px Arial, "Lato", "Source Sans Pro", Roboto, Helvetica,
sans-serif;
2023-08-18 10:27:21 +00:00
color: inherit;
white-space: normal;
word-wrap: break-word;
line-height: 22px;
margin: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-editor .x-spreadsheet-editor-area .textline {
2023-08-18 10:27:21 +00:00
overflow: hidden;
visibility: hidden;
position: fixed;
top: 0;
left: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-item {
2023-08-18 10:27:21 +00:00
user-select: none;
background: 0;
border: 1px solid transparent;
outline: none;
height: 26px;
2023-12-08 10:05:02 +00:00
color: var(--sheet-dropdown-content-color);
2023-08-18 10:27:21 +00:00
line-height: 26px;
list-style: none;
padding: 2px 10px;
cursor: default;
text-align: left;
overflow: hidden;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-item.disabled {
2023-08-18 10:27:21 +00:00
pointer-events: none;
opacity: 0.5;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-item:hover,
.x-spreadsheet-item.active {
2023-08-18 10:27:21 +00:00
background: rgba(0, 0, 0, 0.05);
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-item.divider {
2023-08-18 10:27:21 +00:00
height: 0;
padding: 0;
margin: 5px 0;
border: none;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-item .label {
2023-08-18 10:27:21 +00:00
float: right;
opacity: 0.65;
font-size: 1em;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-item.state,
.x-spreadsheet-header.state {
2023-08-18 10:27:21 +00:00
padding-left: 35px !important;
position: relative;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-item.state:before,
.x-spreadsheet-header.state:before {
2023-08-18 10:27:21 +00:00
content: "";
position: absolute;
width: 10px;
height: 10px;
left: 12px;
top: calc(50% - 5px);
background: rgba(0, 0, 0, 0.08);
border-radius: 2px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-item.state.checked:before,
.x-spreadsheet-header.state.checked:before {
background: var(--sheet-checked-before);
}
.x-spreadsheet-checkbox {
2023-08-18 10:27:21 +00:00
position: relative;
display: inline-block;
backface-visibility: hidden;
outline: 0;
vertical-align: baseline;
font-style: normal;
font-size: 1rem;
line-height: 1em;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-checkbox > input {
2023-08-18 10:27:21 +00:00
position: absolute;
top: 0;
left: 0;
opacity: 0 !important;
outline: 0;
z-index: -1;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-suggest,
.x-spreadsheet-contextmenu,
.x-spreadsheet-sort-filter {
2023-08-18 10:27:21 +00:00
position: absolute;
box-shadow: 1px 2px 5px 2px rgba(51, 51, 51, 0.15);
2023-12-08 10:05:02 +00:00
background: var(--sheet-dropdown-content-background-color);
2023-08-18 10:27:21 +00:00
z-index: 100;
width: 260px;
pointer-events: auto;
overflow: auto;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-suggest {
2023-08-18 10:27:21 +00:00
width: 200px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-filter {
2023-08-18 10:27:21 +00:00
border: 1px solid #e9e9e9;
font-size: 12px;
margin: 10px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-filter .x-spreadsheet-header {
2023-08-18 10:27:21 +00:00
padding: 0.5em 0.75em;
2023-12-08 10:05:02 +00:00
background: var(--sheet-header-background-color);
2023-08-18 10:27:21 +00:00
border-bottom: 1px solid #e9e9e9;
border-left: 1px solid transparent;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-filter .x-spreadsheet-body {
2023-08-18 10:27:21 +00:00
height: 200px;
overflow-y: auto;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-filter .x-spreadsheet-body .x-spreadsheet-item {
2023-08-18 10:27:21 +00:00
height: 20px;
line-height: 20px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-sort-filter .x-spreadsheet-buttons {
2023-08-18 10:27:21 +00:00
margin: 10px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-toolbar,
.x-spreadsheet-bottombar {
2023-08-18 10:27:21 +00:00
height: 40px;
padding: 0 30px;
text-align: left;
2023-12-08 10:05:02 +00:00
background: var(--sheet-toolbar-background-color);
2023-08-18 10:27:21 +00:00
display: flex;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-toolbar {
width: 100% !important;
}
.x-spreadsheet-bottombar {
2023-08-18 10:27:21 +00:00
position: relative;
border-top: 1px solid #e0e2e4;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-bottombar .x-spreadsheet-menu > li {
2023-08-18 10:27:21 +00:00
line-height: 40px;
height: 40px;
padding-top: 0;
padding-bottom: 0;
vertical-align: middle;
2023-12-08 10:05:02 +00:00
border-right: 1px solid var(--sheet-toolbar-divider-color);
}
.x-spreadsheet-menu {
2023-08-18 10:27:21 +00:00
list-style: none;
margin: 0;
padding: 0;
user-select: none;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-menu > li {
2023-08-18 10:27:21 +00:00
float: left;
line-height: 1.25em;
padding: 0.785em 1em;
margin: 0;
vertical-align: middle;
text-align: left;
font-weight: 400;
2023-12-08 10:05:02 +00:00
color: var(--sheet-menu-color);
2023-08-18 10:27:21 +00:00
white-space: nowrap;
cursor: pointer;
transition: all 0.3s;
font-weight: bold;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-menu > li.active {
background-color: var(--sheet-menu-active-background-color);
2023-08-18 10:27:21 +00:00
color: rgba(0, 0, 0, 0.65);
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-menu > li .x-spreadsheet-icon {
2023-08-18 10:27:21 +00:00
margin: 0 6px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-menu > li .x-spreadsheet-icon .x-spreadsheet-icon-img:hover {
2023-08-18 10:27:21 +00:00
opacity: 0.85;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-menu > li .x-spreadsheet-dropdown {
2023-08-18 10:27:21 +00:00
display: inline-block;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-toolbar {
2023-08-18 10:27:21 +00:00
border-bottom: 1px solid #e0e2e4;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-toolbar .x-spreadsheet-toolbar-btns {
2023-08-18 10:27:21 +00:00
display: inline-flex;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-toolbar .x-spreadsheet-toolbar-more {
2023-08-18 10:27:21 +00:00
padding: 0 6px 6px;
text-align: left;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-toolbar
.x-spreadsheet-toolbar-more
.x-spreadsheet-toolbar-divider {
2023-08-18 10:27:21 +00:00
margin-top: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-toolbar .x-spreadsheet-toolbar-btn {
2023-08-18 10:27:21 +00:00
flex: 0 0 auto;
display: inline-block;
border: 1px solid transparent;
height: 26px;
line-height: 26px;
min-width: 26px;
margin: 6px 1px 0;
padding: 0;
text-align: center;
border-radius: 2px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-toolbar .x-spreadsheet-toolbar-btn.disabled {
2023-08-18 10:27:21 +00:00
pointer-events: none;
opacity: 0.5;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-toolbar .x-spreadsheet-toolbar-btn:hover,
.x-spreadsheet-toolbar .x-spreadsheet-toolbar-btn.active {
2023-08-18 10:27:21 +00:00
background: rgba(0, 0, 0, 0.08);
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-toolbar-divider {
2023-08-18 10:27:21 +00:00
display: inline-block;
2023-12-08 10:05:02 +00:00
border-right: 1px solid var(--sheet-toolbar-divider-color);
2023-08-18 10:27:21 +00:00
width: 0;
vertical-align: middle;
height: 18px;
margin: 12px 3px 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-print {
2023-08-18 10:27:21 +00:00
position: absolute;
left: 0;
top: 0;
z-index: 100;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-print-bar {
2023-08-18 10:27:21 +00:00
background: #424242;
height: 60px;
line-height: 60px;
padding: 0 30px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-print-bar .-title {
2023-08-18 10:27:21 +00:00
color: #fff;
font-weight: bold;
font-size: 1.2em;
float: left;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-print-bar .-right {
2023-08-18 10:27:21 +00:00
float: right;
margin-top: 12px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-print-content {
2023-08-18 10:27:21 +00:00
display: flex;
flex: auto;
flex-direction: row;
background: #d0d0d0;
height: calc(100% - 60px);
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-print-content .-sider {
2023-08-18 10:27:21 +00:00
flex: 0 0 300px;
width: 300px;
border-left: 2px solid #ccc;
background: #fff;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-print-content .-content {
2023-08-18 10:27:21 +00:00
flex: auto;
overflow-x: auto;
overflow-y: scroll;
height: 100%;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-canvas-card-wraper {
2023-08-18 10:27:21 +00:00
margin: 40px 20px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-canvas-card {
2023-08-18 10:27:21 +00:00
background: #fff;
margin: auto;
page-break-before: auto;
page-break-after: always;
2023-12-08 10:05:02 +00:00
box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14),
0 3px 14px 3px rgba(0, 0, 0, 0.12), 0 4px 5px 0 rgba(0, 0, 0, 0.2);
}
.x-spreadsheet-calendar {
2023-08-18 10:27:21 +00:00
color: rgba(0, 0, 0, 0.65);
background: #ffffff;
user-select: none;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-calendar .calendar-header {
2023-08-18 10:27:21 +00:00
font-weight: 700;
line-height: 30px;
text-align: center;
width: 100%;
float: left;
background: #f9fafb;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-calendar .calendar-header .calendar-header-left {
2023-08-18 10:27:21 +00:00
padding-left: 5px;
float: left;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-calendar .calendar-header .calendar-header-right {
2023-08-18 10:27:21 +00:00
float: right;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-calendar .calendar-header .calendar-header-right a {
2023-08-18 10:27:21 +00:00
padding: 3px 0;
margin-right: 2px;
border-radius: 2px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-calendar .calendar-header .calendar-header-right a:hover {
2023-08-18 10:27:21 +00:00
background: rgba(0, 0, 0, 0.08);
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-calendar .calendar-body {
2023-08-18 10:27:21 +00:00
border-collapse: collapse;
border-spacing: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-calendar .calendar-body th,
.x-spreadsheet-calendar .calendar-body td {
2023-08-18 10:27:21 +00:00
width: 100%/7;
min-width: 32px;
text-align: center;
font-weight: 700;
line-height: 30px;
padding: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-calendar .calendar-body td > .cell:hover {
2023-08-18 10:27:21 +00:00
background: #ecf6fd;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-calendar .calendar-body td > .cell.active,
.x-spreadsheet-calendar .calendar-body td > .cell.active:hover {
2023-08-18 10:27:21 +00:00
background: #ecf6fd;
2023-12-08 10:05:02 +00:00
color: #2185d0;
}
.x-spreadsheet-calendar .calendar-body td > .cell.disabled {
2023-08-18 10:27:21 +00:00
pointer-events: none;
opacity: 0.5;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-datepicker {
2023-08-18 10:27:21 +00:00
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
position: absolute;
left: 0;
top: calc(100% + 5px);
z-index: 10;
width: auto;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-buttons {
2023-08-18 10:27:21 +00:00
display: flex;
justify-content: flex-end;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-buttons .x-spreadsheet-button {
2023-08-18 10:27:21 +00:00
margin-left: 8px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-button {
2023-08-18 10:27:21 +00:00
display: inline-block;
border-radius: 3px;
line-height: 1em;
min-height: 1em;
white-space: nowrap;
text-align: center;
cursor: pointer;
font-size: 1em;
font-weight: 700;
padding: 0.75em 1em;
color: rgba(0, 0, 0, 0.6);
2023-12-08 10:05:02 +00:00
background: #e0e1e2;
2023-08-18 10:27:21 +00:00
text-decoration: none;
2023-12-08 10:05:02 +00:00
font-family: "Lato", "proxima-nova", "Helvetica Neue", Arial, sans-serif;
2023-08-18 10:27:21 +00:00
outline: none;
vertical-align: baseline;
zoom: 1;
user-select: none;
transition: all 0.1s linear;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-button.active,
.x-spreadsheet-button:hover {
background-color: #c0c1c2;
2023-08-18 10:27:21 +00:00
color: rgba(0, 0, 0, 0.8);
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-button.primary {
2023-08-18 10:27:21 +00:00
color: #fff;
2023-12-08 10:05:02 +00:00
background-color: #2185d0;
}
.x-spreadsheet-button.primary:hover,
.x-spreadsheet-button.primary.active {
2023-08-18 10:27:21 +00:00
color: #fff;
background-color: #1678c2;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-button.error {
2023-12-08 09:51:55 +00:00
color: #fff;
2023-12-08 10:05:02 +00:00
background-color: #db2828;
}
.x-spreadsheet-button.error:hover,
.x-spreadsheet-button.error.active {
2023-12-08 09:51:55 +00:00
color: #fff;
background-color: #d01919;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-form-input {
2023-08-18 10:27:21 +00:00
font-size: 1em;
position: relative;
font-weight: 400;
display: inline-flex;
color: rgba(0, 0, 0, 0.87);
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-form-input input {
2023-08-18 10:27:21 +00:00
z-index: 1;
margin: 0;
max-width: 100%;
flex: 1 0 auto;
outline: 0;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
text-align: left;
line-height: 30px;
height: 30px;
padding: 0 8px;
background: #fff;
border: 1px solid #e9e9e9;
2023-12-08 10:05:02 +00:00
color: rgba(0, 0, 0, 0.87);
2023-08-18 10:27:21 +00:00
border-radius: 3px;
transition: box-shadow 0.1s ease, border-color 0.1s ease;
box-shadow: inset 0 1px 2px hsla(0, 0%, 4%, 0.06);
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-form-input input:focus {
2023-08-18 10:27:21 +00:00
border-color: #4b89ff;
box-shadow: inset 0 1px 2px rgba(75, 137, 255, 0.2);
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-form-select {
2023-08-18 10:27:21 +00:00
position: relative;
display: inline-block;
background: #fff;
border: 1px solid #e9e9e9;
border-radius: 2px;
cursor: pointer;
color: rgba(0, 0, 0, 0.87);
user-select: none;
box-shadow: inset 0 1px 2px hsla(0, 0%, 4%, 0.06);
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-form-select .input-text {
2023-08-18 10:27:21 +00:00
text-overflow: ellipsis;
white-space: nowrap;
min-width: 60px;
width: auto;
height: 30px;
line-height: 30px;
padding: 0 8px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-form-fields {
2023-08-18 10:27:21 +00:00
display: flex;
flex-direction: row;
flex-wrap: wrap;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-form-fields .x-spreadsheet-form-field {
2023-08-18 10:27:21 +00:00
flex: 0 1 auto;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-form-fields .x-spreadsheet-form-field .label {
2023-08-18 10:27:21 +00:00
display: inline-block;
margin: 0 10px 0 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-form-field {
2023-08-18 10:27:21 +00:00
display: block;
vertical-align: middle;
margin-left: 10px;
margin-bottom: 10px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-form-field:first-child {
2023-08-18 10:27:21 +00:00
margin-left: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-form-field.error .x-spreadsheet-form-select,
.x-spreadsheet-form-field.error input {
2023-08-18 10:27:21 +00:00
border-color: #f04134;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-form-field .tip {
2023-08-18 10:27:21 +00:00
color: #f04134;
font-size: 0.9em;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-dimmer {
2023-08-18 10:27:21 +00:00
display: none;
position: absolute;
top: 0 !important;
left: 0 !important;
width: 100%;
height: 100%;
text-align: center;
vertical-align: middle;
background-color: rgba(0, 0, 0, 0.6);
opacity: 0;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-duration: 0.5s;
animation-duration: 0.5s;
transition: background-color 0.5s linear;
user-select: none;
z-index: 1000;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-dimmer.active {
2023-08-18 10:27:21 +00:00
display: block;
opacity: 1;
2023-12-08 10:05:02 +00:00
}
form fieldset {
2023-08-18 10:27:21 +00:00
border: none;
2023-12-08 10:05:02 +00:00
}
form fieldset label {
2023-08-18 10:27:21 +00:00
display: block;
margin-bottom: 0.5em;
font-size: 1em;
color: #666;
2023-12-08 10:05:02 +00:00
}
form fieldset select {
2023-08-18 10:27:21 +00:00
font-size: 1.1em;
width: 100%;
background-color: #fff;
border: none;
border-bottom: 2px solid #ddd;
padding: 0.5em 0.85em;
border-radius: 2px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-modal,
.x-spreadsheet-toast {
2023-08-18 10:27:21 +00:00
font-size: 13px;
position: fixed;
z-index: 1001;
text-align: left;
line-height: 1.25em;
min-width: 360px;
color: rgba(0, 0, 0, 0.87);
2023-12-08 10:05:02 +00:00
font-family: "Lato", "Source Sans Pro", Roboto, Helvetica, Arial, sans-serif;
2023-08-18 10:27:21 +00:00
border-radius: 4px;
border: 1px solid rgba(0, 0, 0, 0.1);
background-color: #fff;
background-clip: padding-box;
box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-toast {
2023-08-18 10:27:21 +00:00
background-color: rgba(255, 255, 255, 0.85);
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-modal-header,
.x-spreadsheet-toast-header {
2023-08-18 10:27:21 +00:00
font-weight: 600;
background-clip: padding-box;
background-color: rgba(255, 255, 255, 0.85);
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
border-radius: 4px 4px 0 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-modal-header .x-spreadsheet-icon,
.x-spreadsheet-toast-header .x-spreadsheet-icon {
2023-08-18 10:27:21 +00:00
position: absolute;
right: 0.8em;
top: 0.65em;
border-radius: 18px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-modal-header .x-spreadsheet-icon:hover,
.x-spreadsheet-toast-header .x-spreadsheet-icon:hover {
2023-08-18 10:27:21 +00:00
opacity: 1;
background: rgba(0, 0, 0, 0.08);
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-toast-header {
color: #f2711c;
}
.x-spreadsheet-modal-header {
2023-08-18 10:27:21 +00:00
border-bottom: 1px solid #e0e2e4;
background: rgba(0, 0, 0, 0.08);
font-size: 1.0785em;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-modal-header,
.x-spreadsheet-modal-content,
.x-spreadsheet-toast-header,
.x-spreadsheet-toast-content {
2023-08-18 10:27:21 +00:00
padding: 0.75em 1em;
2023-12-08 10:05:02 +00:00
}
@media screen and (min-width: 320px) and (max-width: 480px) {
2023-08-18 10:27:21 +00:00
.x-spreadsheet-toolbar {
2023-12-08 10:05:02 +00:00
display: none;
2023-08-18 10:27:21 +00:00
}
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon {
2023-08-18 10:27:21 +00:00
width: 18px;
height: 18px;
margin: 1px 1px 2px 1px;
text-align: center;
vertical-align: middle;
user-select: none;
overflow: hidden;
position: relative;
display: inline-block;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img {
background-image: url("data:image/svg+xml,%3Csvg width='249' height='69' viewBox='0 0 249 69' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M4.434 9.434L7 12H0V5l2.958 2.958A8.287 8.287 0 0 1 8.32 6c3.459 0 6.424 2.11 7.68 5l-2 1c-.937-2.39-3.13-3.92-5.68-4a6.572 6.572 0 0 0-3.886 1.434zM29.566 9.434L27 12h7V5l-2.958 2.958A8.287 8.287 0 0 0 25.68 6C22.22 6 19.256 8.11 18 11l2 1c.937-2.39 3.13-3.92 5.68-4 1.469.053 2.82.579 3.886 1.434zM46.114 11.226a4.778 4.778 0 0 1-3.166 1.208c-2.733 0-4.948-2.336-4.948-5.217S40.215 2 42.948 2c2.733 0 4.948 2.336 4.948 5.217 0 1.27-.43 2.433-1.145 3.338l.228.238h.71l3.59 3.794L49.94 16l-3.6-3.785v-.749l-.225-.24zm-3.166-.215c1.988 0 3.599-1.699 3.599-3.794 0-2.096-1.611-3.794-3.599-3.794-1.987 0-3.598 1.698-3.598 3.794 0 2.095 1.61 3.794 3.598 3.794zM65 2h-8c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V5h1v3h-7v8h2v-6h7V4h-3V3c0-.55-.45-1-1-1zM73.27 4.55l5.16 5.15L76 15h2.5l1.64-3.58L84.73 16 86 14.73 74.55 3.27l-1.28 1.28zM76.82 3l2 2h1.76l-.55 1.21 1.71 1.71L83.08 5H87V3H76.82zM102 6.5c0-1.93-1.57-3.5-3.5-3.5H93v12h6.25c1.79 0 3.25-1.46 3.25-3.25 0-1.3-.77-2.41-1.87-2.93.83-.58 1.37-1.44 1.37-2.32zM98 5c.83 0 1.5.67 1.5 1.5S98.83 8 98 8h-2V5h2zm-2 8v-3h2.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5H96zM114 3v2h2.58l-3.66 8H110v2h8v-2h-2.58l3.66-8H122V3z' fill='%23000'/%3E%3Cpath d='M134 15c2.76 0 5-2.24 5-5V3h-2v7c0 1.75-1.5 3-3 3s-3-1.242-3-3V3h-2v7c0 2.76 2.24 5 5 5zm-6 1v2h12v-2h-12z' fill='%23000' fill-rule='nonzero'/%3E%3Cpath d='M147.887 6.06c0-.457.098-.874.297-1.252.198-.38.476-.702.836-.968s.784-.472 1.279-.619A5.712 5.712 0 0 1 151.926 3c.608 0 1.159.083 1.654.251.495.169.919.402 1.271.705.353.3.623.657.814 1.073.191.412.285.866.285 1.357h-2.257a1.85 1.85 0 0 0-.11-.637 1.26 1.26 0 0 0-.333-.506 1.535 1.535 0 0 0-.563-.327 2.425 2.425 0 0 0-.798-.116c-.297 0-.552.034-.773.098a1.52 1.52 0 0 0-.54.27 1.144 1.144 0 0 0-.431.9c0 .36.184.663.551.907l.065.042c.262.172.739.483 1.239.983h-3s-.786-.624-.824-.691c-.191-.357-.288-.773-.288-1.249zM159 9h-14v2h7.219c.135.053.3.105.412.154.278.123.495.255.653.382.157.132.262.274.319.424.056.154.082.326.082.514 0 .176-.034.341-.101.491a1.018 1.018 0 0 1-.311.394 1.603 1.603 0 0 1-.533.258 2.71 2.71 0 0 1-.761.094c-.326 0-.623-.034-.889-.097a1.797 1.797 0 0 1-.679-.312 1.446 1.446 0 0 1-.438-.558c-.105-.229-.192-.574-.192-.744h-2.231c0 .252.06.688.176 1.025a3.15 3.15 0 0 0 1.223 1.598c.281.195.585.36.915.487.33.131.671.229 1.035.289.36.064.724.094 1.084.094.6 0 1.147-.068 1.635-.207a3.879 3.879 0 0 0 1.252-.592 2.69 2.69 0 0 0 .803-.953c.19-.378.28-.806.28-1.286 0-.45-.078-.855-.232-1.211a2.258 2.258 0 0 0-.127-.252L159 11V9z' fill='%23010101'/%3E%3Cpath d='M171 1h-2l-4.5 12h2l1.12-3h4.75l1.12 3h2L171 1zm-2.62 7L170 3.67 171.62 8h-3.24z' fill='%23000'/%3E%3Cpath d='M193.5 8.87s-1.5 1.62-1.5 2.62c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5c0-.99-1.5-2.62-1.5-2.62zm-1.79-2.08L184.91 0l-1.06 1.06 1.59 1.59-4.15 4.14a.996.996 0 0 0 0 1.41l4.5 4.5c.2.2.45.3.71.3.26 0 .51-.1.71-.29l4.5-4.5c.39-.39.39-1.03 0-1.42zm-8.5.21l3.29-3.29L189.79 7h-6.58z' fill='%23000' fill-rule='nonzero'/%3E%3Cpath d='M200 6h-2V2h7v2h-5v2zm7-2V2h7v4h-2V4h-5zm0 10h5v-2h2v4h-7v-2zm-9-2h2v2h5v2h-7v-4zm0-4h4V6l3 3-3 3v-2h-4V8zm9 1l3-3v2h4v2h-4v2l-3-3zM217 16h10v-2h-10v2zm10-10h-10v2h10V6zm-10-4v2h14V2h-14zm0 10h14v-2h-14v2zM237 14v2h10v-2h-10zm0-8v2h10V6h-10zm-2 6h14v-2h-14v2zm0-10v2h14V2h-14zM5 34h10v-2H5v2zm-4-4h14v-2H1v2zm0-10v2h14v-2H1zm4 6h10v-2H5v2zM20 20v2h12v-2H20zm2.5 7H25v7h2v-7h2.5L26 23.5 22.5 27zM47.5 21H45v-3h-2v3h-2.5l3.5 3.5 3.5-3.5zM38 26v2h12v-2H38zm2.5 7H43v3h2v-3h2.5L44 29.5 40.5 33zM65.5 27H63v-7h-2v7h-2.5l3.5 3.5 3.5-3.5zM56 32v2h12v-2H56zM87 21H73v2h14v-2zM73 33h4v-2h-4v2zm11.5-7H73v2h11.75c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5H82v-2l-3 3 3 3v-2h2.5c1.93 0 3.5-1.57 3.5-3.5S86.43 26 84.5 26zM91 21v1l6 6v5l2-1v-4l6-6v-1H91zm4 3h6l-3 3-3-3zM121 20h-10v1.8l5.5 5.2-5.5 5.2V34h10v-2h-6.9l4.9-5-4.9-5h6.9zM130 25l4 4 4-4zM150 31l4-4-4-4zM162.9 27c0-1.16.94-2.1 2.1-2.1h4V23h-4c-2.21 0-4 1.79-4 4s1.79 4 4 4h4v-1.9h-4a2.1 2
2023-08-18 10:27:21 +00:00
position: absolute;
width: 262px;
height: 444px;
opacity: 0.56;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.undo {
2023-08-18 10:27:21 +00:00
left: 0;
top: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.redo {
2023-08-18 10:27:21 +00:00
left: -18px;
top: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.search {
2023-08-18 10:27:21 +00:00
left: -36px;
top: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.paintformat {
2023-08-18 10:27:21 +00:00
left: -54px;
top: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.clearformat {
2023-08-18 10:27:21 +00:00
left: -72px;
top: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.font-bold {
2023-08-18 10:27:21 +00:00
left: -90px;
top: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.font-italic {
2023-08-18 10:27:21 +00:00
left: -108px;
top: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.underline {
2023-08-18 10:27:21 +00:00
left: -126px;
top: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.strike {
2023-08-18 10:27:21 +00:00
left: -144px;
top: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.color {
2023-08-18 10:27:21 +00:00
left: -162px;
top: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.bgcolor {
2023-08-18 10:27:21 +00:00
left: -180px;
top: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.merge {
2023-08-18 10:27:21 +00:00
left: -198px;
top: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.align-left {
2023-08-18 10:27:21 +00:00
left: -216px;
top: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.align-center {
2023-08-18 10:27:21 +00:00
left: -234px;
top: 0;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.align-right {
2023-08-18 10:27:21 +00:00
left: 0;
top: -18px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.align-top {
2023-08-18 10:27:21 +00:00
left: -18px;
top: -18px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.align-middle {
2023-08-18 10:27:21 +00:00
left: -36px;
top: -18px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.align-bottom {
2023-08-18 10:27:21 +00:00
left: -54px;
top: -18px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.textwrap {
2023-08-18 10:27:21 +00:00
left: -72px;
top: -18px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.autofilter {
2023-08-18 10:27:21 +00:00
left: -90px;
top: -18px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.formula {
2023-08-18 10:27:21 +00:00
left: -108px;
top: -18px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.arrow-down {
2023-08-18 10:27:21 +00:00
left: -126px;
top: -18px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.arrow-right {
2023-08-18 10:27:21 +00:00
left: -144px;
top: -18px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.link {
2023-08-18 10:27:21 +00:00
left: -162px;
top: -18px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.chart {
2023-08-18 10:27:21 +00:00
left: -180px;
top: -18px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.freeze {
2023-08-18 10:27:21 +00:00
left: -198px;
top: -18px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.ellipsis {
2023-08-18 10:27:21 +00:00
left: -216px;
top: -18px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.add {
2023-08-18 10:27:21 +00:00
left: -234px;
top: -18px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-all {
2023-08-18 10:27:21 +00:00
left: 0;
top: -36px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-inside {
2023-08-18 10:27:21 +00:00
left: -18px;
top: -36px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-horizontal {
2023-08-18 10:27:21 +00:00
left: -36px;
top: -36px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-vertical {
2023-08-18 10:27:21 +00:00
left: -54px;
top: -36px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-outside {
2023-08-18 10:27:21 +00:00
left: -72px;
top: -36px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-left {
2023-08-18 10:27:21 +00:00
left: -90px;
top: -36px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-top {
2023-08-18 10:27:21 +00:00
left: -108px;
top: -36px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-right {
2023-08-18 10:27:21 +00:00
left: -126px;
top: -36px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-bottom {
2023-08-18 10:27:21 +00:00
left: -144px;
top: -36px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-none {
2023-08-18 10:27:21 +00:00
left: -162px;
top: -36px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.line-color {
2023-08-18 10:27:21 +00:00
left: -180px;
top: -36px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.line-type {
2023-08-18 10:27:21 +00:00
left: -198px;
top: -36px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.close {
2023-08-18 10:27:21 +00:00
left: -234px;
top: -36px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.chevron-down {
2023-08-18 10:27:21 +00:00
left: 0;
top: -54px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.chevron-up {
2023-08-18 10:27:21 +00:00
left: -18px;
top: -54px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.chevron-left {
2023-08-18 10:27:21 +00:00
left: -36px;
top: -54px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.chevron-right {
2023-08-18 10:27:21 +00:00
left: -54px;
top: -54px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-search {
2023-12-08 09:37:15 +00:00
position: absolute;
right: 0px;
top: 0px;
z-index: 2000;
2023-12-08 10:05:02 +00:00
background-color: var(--sheet-header-background-color);
border: 1px solid var(--table-border-color);
2023-12-08 09:37:15 +00:00
padding: 10px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-search .search-input {
2023-12-08 09:37:15 +00:00
width: 300px;
display: flex;
justify-content: space-between;
margin-bottom: 10px;
2023-12-08 10:05:02 +00:00
color: var(--table-text-color);
}
.x-spreadsheet-search .search-buttons {
2023-12-08 09:37:15 +00:00
width: 300px;
display: flex;
justify-content: space-between;
margin-bottom: 10px;
margin-right: -10px;
align-items: center;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-search .search-buttons .x-spreadsheet-button {
2023-12-08 09:37:15 +00:00
flex: 1;
margin-left: 5px;
margin-right: 5px;
2023-12-08 10:05:02 +00:00
}
.x-spreadsheet-search .search-buttons .search-result-label {
2023-12-08 09:37:15 +00:00
flex: 1;
2023-12-08 10:13:21 +00:00
color: #000;
2023-12-08 10:05:02 +00:00
}
/*# sourceMappingURL=data:application/json;base64,ewogICJ2ZXJzaW9uIjogMywKICAic291cmNlcyI6IFsibm9kZV9tb2R1bGVzL3gtZGF0YS1zcHJlYWRzaGVldC9zcmMvaW5kZXgubGVzcyJdLAogICJzb3VyY2VzQ29udGVudCI6IFsiYm9keSB7XG4gIG1hcmdpbjogMDtcbn1cbi54LXNwcmVhZHNoZWV0IHtcbiAgZm9udC1zaXplOiAxM3B4O1xuICBsaW5lLWhlaWdodDogbm9ybWFsO1xuICB1c2VyLXNlbGVjdDogbm9uZTtcbiAgLW1vei11c2VyLXNlbGVjdDogbm9uZTtcbiAgZm9udC1mYW1pbHk6ICdMYXRvJywgJ1NvdXJjZSBTYW5zIFBybycsIFJvYm90bywgSGVsdmV0aWNhLCBBcmlhbCwgc2Fucy1zZXJpZjtcbiAgYm94LXNpemluZzogY29udGVudC1ib3g7XG4gIGJhY2tncm91bmQ6ICNmZmY7XG4gIC13ZWJraXQtZm9udC1zbW9vdGhpbmc6IGFudGlhbGlhc2VkO1xufVxuLngtc3ByZWFkc2hlZXQgdGV4dGFyZWEge1xuICBmb250OiA0MDAgMTNweCBBcmlhbCwgJ0xhdG8nLCAnU291cmNlIFNhbnMgUHJvJywgUm9ib3RvLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7XG59XG4ueC1zcHJlYWRzaGVldC1zaGVldCB7XG4gIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgb3ZlcmZsb3c6IGhpZGRlbjtcbn1cbi54LXNwcmVhZHNoZWV0LXRhYmxlIHtcbiAgdmVydGljYWwtYWxpZ246IGJvdHRvbTtcbn1cbi54LXNwcmVhZHNoZWV0LXRvb2x0aXAge1xuICBmb250LWZhbWlseTogaW5oZXJpdDtcbiAgcG9zaXRpb246IGFic29sdXRlO1xuICBwYWRkaW5nOiA1cHggMTBweDtcbiAgY29sb3I6ICNmZmY7XG4gIGJvcmRlci1yYWRpdXM6IDFweDtcbiAgYmFja2dyb3VuZDogIzAwMDAwMDtcbiAgZm9udC1zaXplOiAxMnB4O1xuICB6LWluZGV4OiAyMDE7XG59XG4ueC1zcHJlYWRzaGVldC10b29sdGlwOmJlZm9yZSB7XG4gIHBvaW50ZXItZXZlbnRzOiBub25lO1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIGxlZnQ6IGNhbGMoNTAlIC0gNHB4KTtcbiAgdG9wOiAtNHB4O1xuICBjb250ZW50OiBcIlwiO1xuICB3aWR0aDogOHB4O1xuICBoZWlnaHQ6IDhweDtcbiAgYmFja2dyb3VuZDogaW5oZXJpdDtcbiAgLXdlYmtpdC10cmFuc2Zvcm06IHJvdGF0ZSg0NWRlZyk7XG4gIHRyYW5zZm9ybTogcm90YXRlKDQ1ZGVnKTtcbiAgei1pbmRleDogMTtcbiAgYm94LXNoYWRvdzogMXB4IDFweCAzcHggLTFweCByZ2JhKDAsIDAsIDAsIDAuMyk7XG59XG4ueC1zcHJlYWRzaGVldC1jb2xvci1wYWxldHRlIHtcbiAgcGFkZGluZzogNXB4O1xufVxuLngtc3ByZWFkc2hlZXQtY29sb3ItcGFsZXR0ZSB0YWJsZSB7XG4gIG1hcmdpbjogMDtcbiAgcGFkZGluZzogMDtcbiAgYm9yZGVyLWNvbGxhcHNlOiBzZXBhcmF0ZTtcbiAgYm9yZGVyLXNwYWNpbmc6IDI7XG4gIGJhY2tncm91bmQ6ICNmZmY7XG59XG4ueC1zcHJlYWRzaGVldC1jb2xvci1wYWxldHRlIHRhYmxlIHRkIHtcbiAgbWFyZ2luOiAwO1xuICBjdXJzb3I6IHBvaW50ZXI7XG4gIGJvcmRlcjogMXB4IHNvbGlkIHRyYW5zcGFyZW50O1xufVxuLngtc3ByZWFkc2hlZXQtY29sb3ItcGFsZXR0ZSB0YWJsZSB0ZDpob3ZlciB7XG4gIGJvcmRlci1jb2xvcjogI2RkZDtcbn1cbi54LXNwcmVhZHNoZWV0LWNvbG9yLXBhbGV0dGUgdGFibGUgdGQgLngtc3ByZWFkc2hlZXQtY29sb3ItcGFsZXR0ZS1jZWxsIHtcbiAgd2lkdGg6IDE2cHg7XG4gIGhlaWdodDogMTZweDtcbn1cbi54LXNwcmVhZHNoZWV0LWJvcmRlci1wYWxldHRlIHtcbiAgcGFkZGluZzogNnB4O1xufVxuLngtc3ByZWFkc2hlZXQtYm9yZGVyLXBhbGV0dGUgdGFibGUge1xuICBtYXJnaW46IDA7XG4gIHBhZGRpbmc6IDA7XG4gIGJvcmRlci1jb2xsYXBzZTogc2VwYXJhdGU7XG4gIGJvcmRlci1zcGFjaW5nOiAwO1xuICBiYWNrZ3JvdW5kOiAjZmZmO1xuICB0YWJsZS1sYXlvdXQ6IGZpeGVkO1xufVxuLngtc3ByZWFkc2hlZXQtYm9yZGVyLXBhbGV0dGUgdGFibGUgdGQge1xuICBtYXJnaW46IDA7XG59XG4ueC1zcHJlYWRzaGVldC1ib3JkZXItcGFsZXR0ZSAueC1zcHJlYWRzaGVldC1ib3JkZXItcGFsZXR0ZS1sZWZ0IHtcbiAgYm9yZGVyLXJpZ2h0OiAxcHggc29saWQgI2VlZTtcbiAgcGFkZGluZy1yaWdodDogNnB4O1xufVxuLngtc3ByZWFkc2hlZXQtYm9yZGVyLXBhbGV0dGUgLngtc3ByZWFkc2hlZXQtYm9yZGVyLXBhbGV0dGUtbGVmdCAueC1zcHJlYWRzaGVldC1ib3JkZXItcGFsZXR0ZS1jZWxsIHtcbiAgd2lkdGg6IDMwcHg7XG4gIGhlaWdodDogMzBweDtcbiAgY3Vyc29yOiBwb2ludGVyO1xuICB0ZXh0LWFsaWduOiBjZW50ZXI7XG59XG4ueC1zcHJlYWRzaGVldC1ib3JkZXItcGFsZXR0ZSAueC1zcHJlYWRzaGVldC1ib3JkZXItcGFsZXR0ZS1sZWZ0IC54LXNwcmVhZHNoZWV0LWJvcmRlci1wYWxldHRlLWNlbGwgLngtc3ByZWFkc2hlZXQtaWNvbi1pbWcge1xuICBvcGFjaXR5OiAwLjg7XG59XG4ueC1zcHJlYWRzaGVldC1ib3JkZXItcGFsZXR0ZSAueC1zcHJlYWRzaGVldC1ib3JkZXItcGFsZXR0ZS1sZWZ0IC54LXNwcmVhZHNoZWV0LWJvcmRlci1wYWxldHRlLWNlbGw6aG92ZXIge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjZWVlO1xufVxuLngtc3ByZWFkc2hlZXQtYm9yZGVyLXBhbGV0dGUgLngtc3ByZWFkc2hlZXQtYm9yZGVyLXBhbGV0dGUtcmlnaHQge1xuICBwYWRkaW5nLWxlZnQ6IDZweDtcbn1cbi54LXNwcmVhZHNoZWV0LWJvcmRlci1wYWxldHRlIC54LXNwcmVhZHNoZWV0LWJvcmRlci1wYWxldHRlLXJpZ2h0IC54LXNwcmVhZHNoZWV0LXRvb2xiYXItYnRuIHtcbiAgbWFyZ2luLXRvcDogMDtcbiAgbWFyZ2luLWJvdHRvbTogM3B4O1xufVxuLngtc3ByZWFkc2hlZXQtYm9yZGVyLXBhbGV0dGUgLngtc3ByZWFkc2hlZXQtYm9yZGVyLXBhbGV0dGUtcmlnaHQgLngtc3ByZWFkc2hlZXQtbGluZS10eXBlIHtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xuICBsZWZ0OiAwO1xuICB0b3A6IC0zcHg7XG59XG4ueC1zcHJlYWRzaGVldC1kcm9wZG93biB7XG4gIHBvc2l0aW9uOiByZWxhdGl2ZTtcbn1cbi54LXNwcmVhZHNoZWV0LWRyb3Bkb3duIC54LXNwcmVhZHNoZWV0LWRyb3Bkb3duLWNvbnRlb