ljcoder2015_obsidian-excel/main.css

1107 lines
72 KiB
CSS
Raw Permalink Normal View History

2023-08-23 08:05:44 +00:00
/* node_modules/x-data-spreadsheet/src/index.less */
body {
margin: 0;
}
.x-spreadsheet {
font-size: 13px;
line-height: normal;
user-select: none;
-moz-user-select: none;
font-family:
"Lato",
"Source Sans Pro",
Roboto,
Helvetica,
Arial,
sans-serif;
box-sizing: content-box;
background: #fff;
-webkit-font-smoothing: antialiased;
}
.x-spreadsheet textarea {
font:
400 13px Arial,
"Lato",
"Source Sans Pro",
Roboto,
Helvetica,
sans-serif;
}
.x-spreadsheet-sheet {
position: relative;
overflow: hidden;
}
.x-spreadsheet-table {
vertical-align: bottom;
}
.x-spreadsheet-tooltip {
font-family: inherit;
position: absolute;
padding: 5px 10px;
color: #fff;
border-radius: 1px;
background: #000000;
font-size: 12px;
z-index: 201;
}
.x-spreadsheet-tooltip:before {
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);
}
.x-spreadsheet-color-palette {
padding: 5px;
}
.x-spreadsheet-color-palette table {
margin: 0;
padding: 0;
border-collapse: separate;
border-spacing: 2;
background: #fff;
}
.x-spreadsheet-color-palette table td {
margin: 0;
cursor: pointer;
border: 1px solid transparent;
}
.x-spreadsheet-color-palette table td:hover {
border-color: #ddd;
}
.x-spreadsheet-color-palette table td .x-spreadsheet-color-palette-cell {
width: 16px;
height: 16px;
}
.x-spreadsheet-border-palette {
padding: 6px;
}
.x-spreadsheet-border-palette table {
margin: 0;
padding: 0;
border-collapse: separate;
border-spacing: 0;
background: #fff;
table-layout: fixed;
}
.x-spreadsheet-border-palette table td {
margin: 0;
}
.x-spreadsheet-border-palette .x-spreadsheet-border-palette-left {
border-right: 1px solid #eee;
padding-right: 6px;
}
.x-spreadsheet-border-palette .x-spreadsheet-border-palette-left .x-spreadsheet-border-palette-cell {
width: 30px;
height: 30px;
cursor: pointer;
text-align: center;
}
.x-spreadsheet-border-palette .x-spreadsheet-border-palette-left .x-spreadsheet-border-palette-cell .x-spreadsheet-icon-img {
opacity: 0.8;
}
.x-spreadsheet-border-palette .x-spreadsheet-border-palette-left .x-spreadsheet-border-palette-cell:hover {
background-color: #eee;
}
.x-spreadsheet-border-palette .x-spreadsheet-border-palette-right {
padding-left: 6px;
}
.x-spreadsheet-border-palette .x-spreadsheet-border-palette-right .x-spreadsheet-toolbar-btn {
margin-top: 0;
margin-bottom: 3px;
}
.x-spreadsheet-border-palette .x-spreadsheet-border-palette-right .x-spreadsheet-line-type {
position: relative;
left: 0;
top: -3px;
}
.x-spreadsheet-dropdown {
position: relative;
}
.x-spreadsheet-dropdown .x-spreadsheet-dropdown-content {
position: absolute;
z-index: 200;
background: #fff;
box-shadow: 1px 2px 5px 2px rgba(51, 51, 51, 0.15);
}
.x-spreadsheet-dropdown.bottom-left .x-spreadsheet-dropdown-content {
top: calc(100% + 5px);
left: 0;
}
.x-spreadsheet-dropdown.bottom-right .x-spreadsheet-dropdown-content {
top: calc(100% + 5px);
right: 0;
}
.x-spreadsheet-dropdown.top-left .x-spreadsheet-dropdown-content {
bottom: calc(100% + 5px);
left: 0;
}
.x-spreadsheet-dropdown.top-right .x-spreadsheet-dropdown-content {
bottom: calc(100% + 5px);
right: 0;
}
.x-spreadsheet-dropdown .x-spreadsheet-dropdown-title {
padding: 0 5px;
display: inline-block;
}
.x-spreadsheet-dropdown .x-spreadsheet-dropdown-header .x-spreadsheet-icon.arrow-left {
margin-left: 4px;
}
.x-spreadsheet-dropdown .x-spreadsheet-dropdown-header .x-spreadsheet-icon.arrow-right {
width: 10px;
margin-right: 4px;
}
.x-spreadsheet-dropdown .x-spreadsheet-dropdown-header .x-spreadsheet-icon.arrow-right .arrow-down {
left: -130px;
}
.x-spreadsheet-resizer {
position: absolute;
z-index: 11;
}
.x-spreadsheet-resizer .x-spreadsheet-resizer-hover {
background-color: rgba(75, 137, 255, 0.25);
}
.x-spreadsheet-resizer .x-spreadsheet-resizer-line {
position: absolute;
}
.x-spreadsheet-resizer.horizontal {
cursor: row-resize;
}
.x-spreadsheet-resizer.horizontal .x-spreadsheet-resizer-line {
border-bottom: 2px dashed #4b89ff;
left: 0;
bottom: 0;
}
.x-spreadsheet-resizer.vertical {
cursor: col-resize;
}
.x-spreadsheet-resizer.vertical .x-spreadsheet-resizer-line {
border-right: 2px dashed #4b89ff;
top: 0;
right: 0;
}
.x-spreadsheet-scrollbar {
position: absolute;
bottom: 0;
right: 0;
background-color: #f4f5f8;
opacity: 0.9;
z-index: 12;
}
.x-spreadsheet-scrollbar.horizontal {
right: 15px;
overflow-x: scroll;
overflow-y: hidden;
}
.x-spreadsheet-scrollbar.horizontal > div {
height: 1px;
background: #ddd;
}
.x-spreadsheet-scrollbar.vertical {
bottom: 15px;
overflow-x: hidden;
overflow-y: scroll;
}
.x-spreadsheet-scrollbar.vertical > div {
width: 1px;
background: #ddd;
}
.x-spreadsheet-overlayer {
position: absolute;
left: 0;
top: 0;
z-index: 10;
}
.x-spreadsheet-overlayer .x-spreadsheet-overlayer-content {
position: absolute;
overflow: hidden;
pointer-events: none;
width: 100%;
height: 100%;
}
.x-spreadsheet-editor,
.x-spreadsheet-selector {
box-sizing: content-box;
position: absolute;
overflow: hidden;
pointer-events: none;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.x-spreadsheet-selector .hide-input {
position: absolute;
z-index: 0;
}
.x-spreadsheet-selector .hide-input input {
padding: 0;
width: 0;
border: none !important;
}
.x-spreadsheet-selector .x-spreadsheet-selector-area {
position: absolute;
border: 2px solid #4b89ff;
background: rgba(75, 137, 255, 0.1);
z-index: 5;
}
.x-spreadsheet-selector .x-spreadsheet-selector-clipboard,
.x-spreadsheet-selector .x-spreadsheet-selector-autofill {
position: absolute;
background: transparent;
z-index: 100;
}
.x-spreadsheet-selector .x-spreadsheet-selector-clipboard {
border: 2px dashed #4b89ff;
}
.x-spreadsheet-selector .x-spreadsheet-selector-autofill {
border: 1px dashed rgba(0, 0, 0, 0.45);
}
.x-spreadsheet-selector .x-spreadsheet-selector-corner {
pointer-events: auto;
position: absolute;
cursor: crosshair;
font-size: 0;
height: 5px;
width: 5px;
right: -5px;
bottom: -5px;
border: 2px solid #ffffff;
background: #4b89ff;
}
.x-spreadsheet-editor {
z-index: 20;
}
.x-spreadsheet-editor .x-spreadsheet-editor-area {
position: absolute;
text-align: left;
border: 2px solid #4b89ff;
line-height: 0;
z-index: 100;
pointer-events: auto;
}
.x-spreadsheet-editor .x-spreadsheet-editor-area textarea {
box-sizing: content-box;
border: none;
padding: 0 3px;
outline: none;
resize: none;
text-align: start;
overflow-y: hidden;
font:
400 13px Arial,
"Lato",
"Source Sans Pro",
Roboto,
Helvetica,
sans-serif;
color: inherit;
white-space: normal;
word-wrap: break-word;
line-height: 22px;
margin: 0;
}
.x-spreadsheet-editor .x-spreadsheet-editor-area .textline {
overflow: hidden;
visibility: hidden;
position: fixed;
top: 0;
left: 0;
}
.x-spreadsheet-item {
user-select: none;
background: 0;
border: 1px solid transparent;
outline: none;
height: 26px;
color: rgba(0, 0, 0, 0.9);
line-height: 26px;
list-style: none;
padding: 2px 10px;
cursor: default;
text-align: left;
overflow: hidden;
}
.x-spreadsheet-item.disabled {
pointer-events: none;
opacity: 0.5;
}
.x-spreadsheet-item:hover,
.x-spreadsheet-item.active {
background: rgba(0, 0, 0, 0.05);
}
.x-spreadsheet-item.divider {
height: 0;
padding: 0;
margin: 5px 0;
border: none;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.x-spreadsheet-item .label {
float: right;
opacity: 0.65;
font-size: 1em;
}
.x-spreadsheet-item.state,
.x-spreadsheet-header.state {
padding-left: 35px !important;
position: relative;
}
.x-spreadsheet-item.state:before,
.x-spreadsheet-header.state:before {
content: "";
position: absolute;
width: 10px;
height: 10px;
left: 12px;
top: calc(50% - 5px);
background: rgba(0, 0, 0, 0.08);
border-radius: 2px;
}
.x-spreadsheet-item.state.checked:before,
.x-spreadsheet-header.state.checked:before {
background: #4b89ff;
}
.x-spreadsheet-checkbox {
position: relative;
display: inline-block;
backface-visibility: hidden;
outline: 0;
vertical-align: baseline;
font-style: normal;
font-size: 1rem;
line-height: 1em;
}
.x-spreadsheet-checkbox > input {
position: absolute;
top: 0;
left: 0;
opacity: 0 !important;
outline: 0;
z-index: -1;
}
.x-spreadsheet-suggest,
.x-spreadsheet-contextmenu,
.x-spreadsheet-sort-filter {
position: absolute;
box-shadow: 1px 2px 5px 2px rgba(51, 51, 51, 0.15);
background: #fff;
z-index: 100;
width: 260px;
pointer-events: auto;
overflow: auto;
}
.x-spreadsheet-suggest {
width: 200px;
}
.x-spreadsheet-filter {
border: 1px solid #e9e9e9;
font-size: 12px;
margin: 10px;
}
.x-spreadsheet-filter .x-spreadsheet-header {
padding: 0.5em 0.75em;
background: #f8f8f9;
border-bottom: 1px solid #e9e9e9;
border-left: 1px solid transparent;
}
.x-spreadsheet-filter .x-spreadsheet-body {
height: 200px;
overflow-y: auto;
}
.x-spreadsheet-filter .x-spreadsheet-body .x-spreadsheet-item {
height: 20px;
line-height: 20px;
}
.x-spreadsheet-sort-filter .x-spreadsheet-buttons {
margin: 10px;
}
.x-spreadsheet-toolbar,
.x-spreadsheet-bottombar {
height: 40px;
padding: 0 30px;
text-align: left;
background: #f5f6f7;
display: flex;
}
.x-spreadsheet-bottombar {
position: relative;
border-top: 1px solid #e0e2e4;
}
.x-spreadsheet-bottombar .x-spreadsheet-menu > li {
line-height: 40px;
height: 40px;
padding-top: 0;
padding-bottom: 0;
vertical-align: middle;
border-right: 1px solid #e8eaed;
}
.x-spreadsheet-menu {
list-style: none;
margin: 0;
padding: 0;
user-select: none;
}
.x-spreadsheet-menu > li {
float: left;
line-height: 1.25em;
padding: 0.785em 1em;
margin: 0;
vertical-align: middle;
text-align: left;
font-weight: 400;
color: #80868b;
white-space: nowrap;
cursor: pointer;
transition: all 0.3s;
font-weight: bold;
}
.x-spreadsheet-menu > li.active {
background-color: #fff;
color: rgba(0, 0, 0, 0.65);
}
.x-spreadsheet-menu > li .x-spreadsheet-icon {
margin: 0 6px;
}
.x-spreadsheet-menu > li .x-spreadsheet-icon .x-spreadsheet-icon-img:hover {
opacity: 0.85;
}
.x-spreadsheet-menu > li .x-spreadsheet-dropdown {
display: inline-block;
}
.x-spreadsheet-toolbar {
border-bottom: 1px solid #e0e2e4;
}
.x-spreadsheet-toolbar .x-spreadsheet-toolbar-btns {
display: inline-flex;
}
.x-spreadsheet-toolbar .x-spreadsheet-toolbar-more {
padding: 0 6px 6px;
text-align: left;
}
.x-spreadsheet-toolbar .x-spreadsheet-toolbar-more .x-spreadsheet-toolbar-divider {
margin-top: 0;
}
.x-spreadsheet-toolbar .x-spreadsheet-toolbar-btn {
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;
}
.x-spreadsheet-toolbar .x-spreadsheet-toolbar-btn.disabled {
pointer-events: none;
opacity: 0.5;
}
.x-spreadsheet-toolbar .x-spreadsheet-toolbar-btn:hover,
.x-spreadsheet-toolbar .x-spreadsheet-toolbar-btn.active {
background: rgba(0, 0, 0, 0.08);
}
.x-spreadsheet-toolbar-divider {
display: inline-block;
border-right: 1px solid #e0e2e4;
width: 0;
vertical-align: middle;
height: 18px;
margin: 12px 3px 0;
}
.x-spreadsheet-print {
position: absolute;
left: 0;
top: 0;
z-index: 100;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
}
.x-spreadsheet-print-bar {
background: #424242;
height: 60px;
line-height: 60px;
padding: 0 30px;
}
.x-spreadsheet-print-bar .-title {
color: #fff;
font-weight: bold;
font-size: 1.2em;
float: left;
}
.x-spreadsheet-print-bar .-right {
float: right;
margin-top: 12px;
}
.x-spreadsheet-print-content {
display: flex;
flex: auto;
flex-direction: row;
background: #d0d0d0;
height: calc(100% - 60px);
}
.x-spreadsheet-print-content .-sider {
flex: 0 0 300px;
width: 300px;
border-left: 2px solid #ccc;
background: #fff;
}
.x-spreadsheet-print-content .-content {
flex: auto;
overflow-x: auto;
overflow-y: scroll;
height: 100%;
}
.x-spreadsheet-canvas-card-wraper {
margin: 40px 20px;
}
.x-spreadsheet-canvas-card {
background: #fff;
margin: auto;
page-break-before: auto;
page-break-after: always;
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 {
color: rgba(0, 0, 0, 0.65);
background: #ffffff;
user-select: none;
}
.x-spreadsheet-calendar .calendar-header {
font-weight: 700;
line-height: 30px;
text-align: center;
width: 100%;
float: left;
background: #f9fafb;
}
.x-spreadsheet-calendar .calendar-header .calendar-header-left {
padding-left: 5px;
float: left;
}
.x-spreadsheet-calendar .calendar-header .calendar-header-right {
float: right;
}
.x-spreadsheet-calendar .calendar-header .calendar-header-right a {
padding: 3px 0;
margin-right: 2px;
border-radius: 2px;
}
.x-spreadsheet-calendar .calendar-header .calendar-header-right a:hover {
background: rgba(0, 0, 0, 0.08);
}
.x-spreadsheet-calendar .calendar-body {
border-collapse: collapse;
border-spacing: 0;
}
.x-spreadsheet-calendar .calendar-body th,
.x-spreadsheet-calendar .calendar-body td {
width: 100%/7;
min-width: 32px;
text-align: center;
font-weight: 700;
line-height: 30px;
padding: 0;
}
.x-spreadsheet-calendar .calendar-body td > .cell:hover {
background: #ecf6fd;
}
.x-spreadsheet-calendar .calendar-body td > .cell.active,
.x-spreadsheet-calendar .calendar-body td > .cell.active:hover {
background: #ecf6fd;
color: #2185D0;
}
.x-spreadsheet-calendar .calendar-body td > .cell.disabled {
pointer-events: none;
opacity: 0.5;
}
.x-spreadsheet-datepicker {
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
position: absolute;
left: 0;
top: calc(100% + 5px);
z-index: 10;
width: auto;
}
.x-spreadsheet-buttons {
display: flex;
justify-content: flex-end;
}
.x-spreadsheet-buttons .x-spreadsheet-button {
margin-left: 8px;
}
.x-spreadsheet-button {
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);
background: #E0E1E2;
text-decoration: none;
font-family:
"Lato",
"proxima-nova",
"Helvetica Neue",
Arial,
sans-serif;
outline: none;
vertical-align: baseline;
zoom: 1;
user-select: none;
transition: all 0.1s linear;
}
.x-spreadsheet-button.active,
.x-spreadsheet-button:hover {
background-color: #C0C1C2;
color: rgba(0, 0, 0, 0.8);
}
.x-spreadsheet-button.primary {
color: #fff;
background-color: #2185D0;
}
.x-spreadsheet-button.primary:hover,
.x-spreadsheet-button.primary.active {
color: #fff;
background-color: #1678c2;
}
2023-12-08 09:37:15 +00:00
.x-spreadsheet-button.error {
color: #fff;
background-color: #DB2828;
}
.x-spreadsheet-button.error:hover,
.x-spreadsheet-button.error.active {
color: #fff;
background-color: #d01919;
}
2023-08-23 08:05:44 +00:00
.x-spreadsheet-form-input {
font-size: 1em;
position: relative;
font-weight: 400;
display: inline-flex;
color: rgba(0, 0, 0, 0.87);
}
.x-spreadsheet-form-input input {
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;
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);
}
.x-spreadsheet-form-input input:focus {
border-color: #4b89ff;
box-shadow: inset 0 1px 2px rgba(75, 137, 255, 0.2);
}
.x-spreadsheet-form-select {
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);
}
.x-spreadsheet-form-select .input-text {
text-overflow: ellipsis;
white-space: nowrap;
min-width: 60px;
width: auto;
height: 30px;
line-height: 30px;
padding: 0 8px;
}
.x-spreadsheet-form-fields {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.x-spreadsheet-form-fields .x-spreadsheet-form-field {
flex: 0 1 auto;
}
.x-spreadsheet-form-fields .x-spreadsheet-form-field .label {
display: inline-block;
margin: 0 10px 0 0;
}
.x-spreadsheet-form-field {
display: block;
vertical-align: middle;
margin-left: 10px;
margin-bottom: 10px;
}
.x-spreadsheet-form-field:first-child {
margin-left: 0;
}
.x-spreadsheet-form-field.error .x-spreadsheet-form-select,
.x-spreadsheet-form-field.error input {
border-color: #f04134;
}
.x-spreadsheet-form-field .tip {
color: #f04134;
font-size: 0.9em;
}
.x-spreadsheet-dimmer {
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;
}
.x-spreadsheet-dimmer.active {
display: block;
opacity: 1;
}
form fieldset {
border: none;
}
form fieldset label {
display: block;
margin-bottom: 0.5em;
font-size: 1em;
color: #666;
}
form fieldset select {
font-size: 1.1em;
width: 100%;
background-color: #fff;
border: none;
border-bottom: 2px solid #ddd;
padding: 0.5em 0.85em;
border-radius: 2px;
}
.x-spreadsheet-modal,
.x-spreadsheet-toast {
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);
font-family:
"Lato",
"Source Sans Pro",
Roboto,
Helvetica,
Arial,
sans-serif;
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;
}
.x-spreadsheet-toast {
background-color: rgba(255, 255, 255, 0.85);
}
.x-spreadsheet-modal-header,
.x-spreadsheet-toast-header {
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;
}
.x-spreadsheet-modal-header .x-spreadsheet-icon,
.x-spreadsheet-toast-header .x-spreadsheet-icon {
position: absolute;
right: 0.8em;
top: 0.65em;
border-radius: 18px;
}
.x-spreadsheet-modal-header .x-spreadsheet-icon:hover,
.x-spreadsheet-toast-header .x-spreadsheet-icon:hover {
opacity: 1;
background: rgba(0, 0, 0, 0.08);
}
.x-spreadsheet-toast-header {
color: #F2711C;
}
.x-spreadsheet-modal-header {
border-bottom: 1px solid #e0e2e4;
background: rgba(0, 0, 0, 0.08);
font-size: 1.0785em;
}
.x-spreadsheet-modal-header,
.x-spreadsheet-modal-content,
.x-spreadsheet-toast-header,
.x-spreadsheet-toast-content {
padding: 0.75em 1em;
}
@media screen and (min-width: 320px) and (max-width: 480px) {
.x-spreadsheet-toolbar {
display: none;
}
}
.x-spreadsheet-icon {
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;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img {
2024-02-18 07:00:01 +00:00
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="249" height="69"><g fill="none" fill-rule="evenodd"><path fill="%23000" d="M4.434 9.434 7 12H0V5l2.958 2.958A8.3 8.3 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.57 6.57 0 0 0-3.886 1.434M29.566 9.434 27 12h7V5l-2.958 2.958A8.3 8.3 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.434M46.114 11.226a4.78 4.78 0 0 1-3.166 1.208c-2.733 0-4.948-2.336-4.948-5.217S40.215 2 42.948 2s4.948 2.336 4.948 5.217c0 1.27-.43 2.433-1.145 3.338l.228.238h.71l3.59 3.794L49.94 16l-3.6-3.785v-.749zm-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.794s1.61 3.794 3.598 3.794M65 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-1M73.27 4.55l5.16 5.15L76 15h2.5l1.64-3.58L84.73 16 86 14.73 74.55 3.27zM76.82 3l2 2h1.76l-.55 1.21 1.71 1.71L83.08 5H87V3zM102 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.32M98 5c.83 0 1.5.67 1.5 1.5S98.83 8 98 8h-2V5zm-2 8v-3h2.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5zM114 3v2h2.58l-3.66 8H110v2h8v-2h-2.58l3.66-8H122V3z"/><path fill="%23000" fill-rule="nonzero" 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 5m-6 1v2h12v-2z"/><path fill="%23010101" d="M147.888 6.06q-.001-.685.296-1.252.296-.57.836-.968.538-.399 1.279-.619A5.7 5.7 0 0 1 151.926 3q.912 0 1.654.251c.495.169.919.401 1.271.705q.529.449.814 1.073.286.62.285 1.357h-2.257a1.9 1.9 0 0 0-.11-.637 1.26 1.26 0 0 0-.333-.506 1.5 1.5 0 0 0-.562-.327 2.4 2.4 0 0 0-.8-.116c-.296 0-.55.034-.772.098a1.5 1.5 0 0 0-.54.27 1.14 1.14 0 0 0-.431.9q0 .54.551.907l.065.042c.262.172.739.483 1.239.983h-3s-.786-.624-.824-.691q-.287-.534-.288-1.249M159 9h-14v2h7.219c.135.053.3.105.412.154.278.123.495.255.653.382q.235.198.319.424.083.232.082.514 0 .265-.101.491a1 1 0 0 1-.311.394 1.6 1.6 0 0 1-.533.258 2.7 2.7 0 0 1-.761.094q-.49-.001-.889-.097a1.8 1.8 0 0 1-.679-.312 1.45 1.45 0 0 1-.439-.558c-.105-.229-.19-.574-.19-.744h-2.232c0 .252.06.688.176 1.025a3.15 3.15 0 0 0 1.223 1.598q.42.294.915.487c.33.131.671.229 1.035.289.36.064.724.094 1.083.094q.902 0 1.636-.207a3.9 3.9 0 0 0 1.252-.592 2.7 2.7 0 0 0 .803-.953c.19-.378.28-.806.28-1.286q0-.676-.232-1.211a2 2 0 0 0-.127-.252L159 11z"/><path fill="%23000" d="M171 1h-2l-4.5 12h2l1.12-3h4.75l1.12 3h2zm-2.62 7L170 3.67 171.62 8z"/><path fill="%23000" fill-rule="nonzero" 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.62m-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.3s.51-.1.71-.29l4.5-4.5c.39-.39.39-1.03 0-1.42m-8.5.21 3.29-3.29L189.79 7z"/><path fill="%23000" d="M200 6h-2V2h7v2h-5zm7-2V2h7v4h-2V4zm0 10h5v-2h2v4h-7zm-9-2h2v2h5v2h-7zm0-4h4V6l3 3-3 3v-2h-4zm9 1 3-3v2h4v2h-4v2zM217 16h10v-2h-10zm10-10h-10v2h10zm-10-4v2h14V2zm0 10h14v-2h-14zM237 14v2h10v-2zm0-8v2h10V6zm-2 6h14v-2h-14zm0-10v2h14V2zM5 34h10v-2H5zm-4-4h14v-2H1zm0-10v2h14v-2zm4 6h10v-2H5zM20 20v2h12v-2zm2.5 7H25v7h2v-7h2.5L26 23.5zM47.5 21H45v-3h-2v3h-2.5l3.5 3.5zM38 26v2h12v-2zm2.5 7H43v3h2v-3h2.5L44 29.5zM65.5 27H63v-7h-2v7h-2.5l3.5 3.5zM56 32v2h12v-2zM87 21H73v2h14zM73 33h4v-2h-4zm11.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 26M91 21v1l6 6v5l2-1v-4l6-6v-1zm4 3h6l-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.1 0 0 1-2.1-2.1m12.1-4h-4v1.9h4a2.1 2.1 0 1 1 0 4.2h-4V31h4c2.21 0 4-1.79 4-4s-1.79-4-4-4m-8 5h6v-2h-6zM195 19c.55 0 1 .45 1 1v14c0 .55-.45 1-1 1h-14c-.55 0-1-.45-1-1V20c0-.55.45-1 1-1zm-13 2v12h12V21zm4 10h-2v-5h2zm3 0h-2v-8h2zm3 0h-2v-4h2z"/><path stroke="%23000" d="M198.5 21.5h15v12h-15z"/><path fill="%23000" fill-rule="nonzero" d="M203 26h1v7h-1z"/><path fill="%23D8D8D8" fill-rule="nonzero" d="M199
2023-08-23 08:05:44 +00:00
position: absolute;
width: 262px;
height: 444px;
opacity: 0.56;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.undo {
left: 0;
top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.redo {
left: -18px;
top: 0;
}
2023-12-08 09:37:15 +00:00
.x-spreadsheet-icon .x-spreadsheet-icon-img.search {
2023-08-23 08:05:44 +00:00
left: -36px;
top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.paintformat {
left: -54px;
top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.clearformat {
left: -72px;
top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.font-bold {
left: -90px;
top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.font-italic {
left: -108px;
top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.underline {
left: -126px;
top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.strike {
left: -144px;
top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.color {
left: -162px;
top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.bgcolor {
left: -180px;
top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.merge {
left: -198px;
top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.align-left {
left: -216px;
top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.align-center {
left: -234px;
top: 0;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.align-right {
left: 0;
top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.align-top {
left: -18px;
top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.align-middle {
left: -36px;
top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.align-bottom {
left: -54px;
top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.textwrap {
left: -72px;
top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.autofilter {
left: -90px;
top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.formula {
left: -108px;
top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.arrow-down {
left: -126px;
top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.arrow-right {
left: -144px;
top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.link {
left: -162px;
top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.chart {
left: -180px;
top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.freeze {
left: -198px;
top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.ellipsis {
left: -216px;
top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.add {
left: -234px;
top: -18px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-all {
left: 0;
top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-inside {
left: -18px;
top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-horizontal {
left: -36px;
top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-vertical {
left: -54px;
top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-outside {
left: -72px;
top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-left {
left: -90px;
top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-top {
left: -108px;
top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-right {
left: -126px;
top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-bottom {
left: -144px;
top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.border-none {
left: -162px;
top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.line-color {
left: -180px;
top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.line-type {
left: -198px;
top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.close {
left: -234px;
top: -36px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.chevron-down {
left: 0;
top: -54px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.chevron-up {
left: -18px;
top: -54px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.chevron-left {
left: -36px;
top: -54px;
}
.x-spreadsheet-icon .x-spreadsheet-icon-img.chevron-right {
left: -54px;
top: -54px;
}
2023-12-08 09:37:15 +00:00
.x-spreadsheet-search {
position: absolute;
right: 0px;
top: 0px;
z-index: 2000;
background-color: #fff;
border: 1px solid #e9e9e9;
padding: 10px;
}
.x-spreadsheet-search .search-input {
width: 300px;
display: flex;
justify-content: space-between;
margin-bottom: 10px;
}
.x-spreadsheet-search .search-buttons {
width: 300px;
display: flex;
justify-content: space-between;
margin-bottom: 10px;
margin-right: -10px;
align-items: center;
}
.x-spreadsheet-search .search-buttons .x-spreadsheet-button {
flex: 1;
margin-left: 5px;
margin-right: 5px;
}
.x-spreadsheet-search .search-buttons .search-result-label {
flex: 1;
}
/*# sourceMappingURL=data:application/json;base64,ewogICJ2ZXJzaW9uIjogMywKICAic291cmNlcyI6IFsibm9kZV9tb2R1bGVzL3gtZGF0YS1zcHJlYWRzaGVldC9zcmMvaW5kZXgubGVzcyJdLAogICJzb3VyY2VzQ29udGVudCI6IFsiYm9keSB7XG4gIG1hcmdpbjogMDtcbn1cbi54LXNwcmVhZHNoZWV0IHtcbiAgZm9udC1zaXplOiAxM3B4O1xuICBsaW5lLWhlaWdodDogbm9ybWFsO1xuICB1c2VyLXNlbGVjdDogbm9uZTtcbiAgLW1vei11c2VyLXNlbGVjdDogbm9uZTtcbiAgZm9udC1mYW1pbHk6ICdMYXRvJywgJ1NvdXJjZSBTYW5zIFBybycsIFJvYm90bywgSGVsdmV0aWNhLCBBcmlhbCwgc2Fucy1zZXJpZjtcbiAgYm94LXNpemluZzogY29udGVudC1ib3g7XG4gIGJhY2tncm91bmQ6ICNmZmY7XG4gIC13ZWJraXQtZm9udC1zbW9vdGhpbmc6IGFudGlhbGlhc2VkO1xufVxuLngtc3ByZWFkc2hlZXQgdGV4dGFyZWEge1xuICBmb250OiA0MDAgMTNweCBBcmlhbCwgJ0xhdG8nLCAnU291cmNlIFNhbnMgUHJvJywgUm9ib3RvLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWY7XG59XG4ueC1zcHJlYWRzaGVldC1zaGVldCB7XG4gIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgb3ZlcmZsb3c6IGhpZGRlbjtcbn1cbi54LXNwcmVhZHNoZWV0LXRhYmxlIHtcbiAgdmVydGljYWwtYWxpZ246IGJvdHRvbTtcbn1cbi54LXNwcmVhZHNoZWV0LXRvb2x0aXAge1xuICBmb250LWZhbWlseTogaW5oZXJpdDtcbiAgcG9zaXRpb246IGFic29sdXRlO1xuICBwYWRkaW5nOiA1cHggMTBweDtcbiAgY29sb3I6ICNmZmY7XG4gIGJvcmRlci1yYWRpdXM6IDFweDtcbiAgYmFja2dyb3VuZDogIzAwMDAwMDtcbiAgZm9udC1zaXplOiAxMnB4O1xuICB6LWluZGV4OiAyMDE7XG59XG4ueC1zcHJlYWRzaGVldC10b29sdGlwOmJlZm9yZSB7XG4gIHBvaW50ZXItZXZlbnRzOiBub25lO1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIGxlZnQ6IGNhbGMoNTAlIC0gNHB4KTtcbiAgdG9wOiAtNHB4O1xuICBjb250ZW50OiBcIlwiO1xuICB3aWR0aDogOHB4O1xuICBoZWlnaHQ6IDhweDtcbiAgYmFja2dyb3VuZDogaW5oZXJpdDtcbiAgLXdlYmtpdC10cmFuc2Zvcm06IHJvdGF0ZSg0NWRlZyk7XG4gIHRyYW5zZm9ybTogcm90YXRlKDQ1ZGVnKTtcbiAgei1pbmRleDogMTtcbiAgYm94LXNoYWRvdzogMXB4IDFweCAzcHggLTFweCByZ2JhKDAsIDAsIDAsIDAuMyk7XG59XG4ueC1zcHJlYWRzaGVldC1jb2xvci1wYWxldHRlIHtcbiAgcGFkZGluZzogNXB4O1xufVxuLngtc3ByZWFkc2hlZXQtY29sb3ItcGFsZXR0ZSB0YWJsZSB7XG4gIG1hcmdpbjogMDtcbiAgcGFkZGluZzogMDtcbiAgYm9yZGVyLWNvbGxhcHNlOiBzZXBhcmF0ZTtcbiAgYm9yZGVyLXNwYWNpbmc6IDI7XG4gIGJhY2tncm91bmQ6ICNmZmY7XG59XG4ueC1zcHJlYWRzaGVldC1jb2xvci1wYWxldHRlIHRhYmxlIHRkIHtcbiAgbWFyZ2luOiAwO1xuICBjdXJzb3I6IHBvaW50ZXI7XG4gIGJvcmRlcjogMXB4IHNvbGlkIHRyYW5zcGFyZW50O1xufVxuLngtc3ByZWFkc2hlZXQtY29sb3ItcGFsZXR0ZSB0YWJsZSB0ZDpob3ZlciB7XG4gIGJvcmRlci1jb2xvcjogI2RkZDtcbn1cbi54LXNwcmVhZHNoZWV0LWNvbG9yLXBhbGV0dGUgdGFibGUgdGQgLngtc3ByZWFkc2hlZXQtY29sb3ItcGFsZXR0ZS1jZWxsIHtcbiAgd2lkdGg6IDE2cHg7XG4gIGhlaWdodDogMTZweDtcbn1cbi54LXNwcmVhZHNoZWV0LWJvcmRlci1wYWxldHRlIHtcbiAgcGFkZGluZzogNnB4O1xufVxuLngtc3ByZWFkc2hlZXQtYm9yZGVyLXBhbGV0dGUgdGFibGUge1xuICBtYXJnaW46IDA7XG4gIHBhZGRpbmc6IDA7XG4gIGJvcmRlci1jb2xsYXBzZTogc2VwYXJhdGU7XG4gIGJvcmRlci1zcGFjaW5nOiAwO1xuICBiYWNrZ3JvdW5kOiAjZmZmO1xuICB0YWJsZS1sYXlvdXQ6IGZpeGVkO1xufVxuLngtc3ByZWFkc2hlZXQtYm9yZGVyLXBhbGV0dGUgdGFibGUgdGQge1xuICBtYXJnaW46IDA7XG59XG4ueC1zcHJlYWRzaGVldC1ib3JkZXItcGFsZXR0ZSAueC1zcHJlYWRzaGVldC1ib3JkZXItcGFsZXR0ZS1sZWZ0IHtcbiAgYm9yZGVyLXJpZ2h0OiAxcHggc29saWQgI2VlZTtcbiAgcGFkZGluZy1yaWdodDogNnB4O1xufVxuLngtc3ByZWFkc2hlZXQtYm9yZGVyLXBhbGV0dGUgLngtc3ByZWFkc2hlZXQtYm9yZGVyLXBhbGV0dGUtbGVmdCAueC1zcHJlYWRzaGVldC1ib3JkZXItcGFsZXR0ZS1jZWxsIHtcbiAgd2lkdGg6IDMwcHg7XG4gIGhlaWdodDogMzBweDtcbiAgY3Vyc29yOiBwb2ludGVyO1xuICB0ZXh0LWFsaWduOiBjZW50ZXI7XG59XG4ueC1zcHJlYWRzaGVldC1ib3JkZXItcGFsZXR0ZSAueC1zcHJlYWRzaGVldC1ib3JkZXItcGFsZXR0ZS1sZWZ0IC54LXNwcmVhZHNoZWV0LWJvcmRlci1wYWxldHRlLWNlbGwgLngtc3ByZWFkc2hlZXQtaWNvbi1pbWcge1xuICBvcGFjaXR5OiAwLjg7XG59XG4ueC1zcHJlYWRzaGVldC1ib3JkZXItcGFsZXR0ZSAueC1zcHJlYWRzaGVldC1ib3JkZXItcGFsZXR0ZS1sZWZ0IC54LXNwcmVhZHNoZWV0LWJvcmRlci1wYWxldHRlLWNlbGw6aG92ZXIge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjZWVlO1xufVxuLngtc3ByZWFkc2hlZXQtYm9yZGVyLXBhbGV0dGUgLngtc3ByZWFkc2hlZXQtYm9yZGVyLXBhbGV0dGUtcmlnaHQge1xuICBwYWRkaW5nLWxlZnQ6IDZweDtcbn1cbi54LXNwcmVhZHNoZWV0LWJvcmRlci1wYWxldHRlIC54LXNwcmVhZHNoZWV0LWJvcmRlci1wYWxldHRlLXJpZ2h0IC54LXNwcmVhZHNoZWV0LXRvb2xiYXItYnRuIHtcbiAgbWFyZ2luLXRvcDogMDtcbiAgbWFyZ2luLWJvdHRvbTogM3B4O1xufVxuLngtc3ByZWFkc2hlZXQtYm9yZGVyLXBhbGV0dGUgLngtc3ByZWFkc2hlZXQtYm9yZGVyLXBhbGV0dGUtcmlnaHQgLngtc3ByZWFkc2hlZXQtbGluZS10eXBlIHtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xuICBsZWZ0OiAwO1xuICB0b3A6IC0zcHg7XG59XG4ueC1zcHJlYWRzaGVldC1kcm9wZG93biB7XG4gIHBvc2l0aW9uOiByZWxhdGl2ZTtcbn1cbi54LXNwcmVhZHNoZWV0LWRyb3Bkb3duIC54LXNwcmVhZHNoZWV0LWRyb3Bkb3duLWNvbnRlb