chore: remove dist
This commit is contained in:
parent
0257bc370e
commit
4f4dd4d36f
2
dist/frappe-charts.cjs.js
vendored
2
dist/frappe-charts.cjs.js
vendored
File diff suppressed because one or more lines are too long
1
dist/frappe-charts.cjs.js.map
vendored
1
dist/frappe-charts.cjs.js.map
vendored
File diff suppressed because one or more lines are too long
4467
dist/frappe-charts.esm.js
vendored
4467
dist/frappe-charts.esm.js
vendored
File diff suppressed because it is too large
Load Diff
1
dist/frappe-charts.esm.js.map
vendored
1
dist/frappe-charts.esm.js.map
vendored
File diff suppressed because one or more lines are too long
116
dist/frappe-charts.min.css
vendored
116
dist/frappe-charts.min.css
vendored
@ -1,116 +0,0 @@
|
||||
:root {
|
||||
--fr-label-color: #313b44;
|
||||
--fr-axis-line-color: #F4F5F6;
|
||||
--fr-stroke-width: 2px;
|
||||
--fr-dataset-circle-stroke: #FFFFFF;
|
||||
--fr-dataset-circle-stroke-width: var(--fr-stroke-width);
|
||||
--fr-tooltip-title: var(--fr-label-color);
|
||||
--fr-tooltip-label: var(--fr-label-color);
|
||||
--fr-tooltip-value: #192734;
|
||||
--fr-tooltip-bg: #FFFFFF; }
|
||||
|
||||
.chart-container {
|
||||
position: relative;
|
||||
/* for absolutely positioned tooltip */
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; }
|
||||
.chart-container .axis, .chart-container .chart-label {
|
||||
fill: var(--fr-label-color); }
|
||||
.chart-container .axis line, .chart-container .chart-label line {
|
||||
stroke: var(--fr-axis-line-color); }
|
||||
.chart-container .dataset-units circle {
|
||||
stroke: var(--fr-dataset-circle-stroke);
|
||||
stroke-width: var(--fr-dataset-circle-stroke-width); }
|
||||
.chart-container .dataset-units path {
|
||||
fill: none;
|
||||
stroke-opacity: 1;
|
||||
stroke-width: var(--fr-stroke-width); }
|
||||
.chart-container .dataset-path {
|
||||
stroke-width: var(--fr-stroke-width); }
|
||||
.chart-container .path-group path {
|
||||
fill: none;
|
||||
stroke-opacity: 1;
|
||||
stroke-width: var(--fr-stroke-width); }
|
||||
.chart-container line.dashed {
|
||||
stroke-dasharray: 5, 3; }
|
||||
.chart-container .axis-line .specific-value {
|
||||
text-anchor: start; }
|
||||
.chart-container .axis-line .y-line {
|
||||
text-anchor: end; }
|
||||
.chart-container .axis-line .x-line {
|
||||
text-anchor: middle; }
|
||||
.chart-container .legend-dataset-label {
|
||||
fill: var(--fr-tooltip-label);
|
||||
font-weight: 600; }
|
||||
.chart-container .legend-dataset-value {
|
||||
fill: var(--fr-tooltip-value); }
|
||||
|
||||
.graph-svg-tip {
|
||||
position: absolute;
|
||||
z-index: 99999;
|
||||
padding: 10px;
|
||||
font-size: 12px;
|
||||
text-align: center;
|
||||
background: var(--fr-tooltip-bg);
|
||||
box-shadow: 0px 1px 4px rgba(17, 43, 66, 0.1), 0px 2px 6px rgba(17, 43, 66, 0.08), 0px 40px 30px -30px rgba(17, 43, 66, 0.1);
|
||||
border-radius: 6px; }
|
||||
.graph-svg-tip ul {
|
||||
padding-left: 0;
|
||||
display: flex; }
|
||||
.graph-svg-tip ol {
|
||||
padding-left: 0;
|
||||
display: flex; }
|
||||
.graph-svg-tip ul.data-point-list li {
|
||||
min-width: 90px;
|
||||
font-weight: 600; }
|
||||
.graph-svg-tip .svg-pointer {
|
||||
position: absolute;
|
||||
height: 12px;
|
||||
width: 12px;
|
||||
border-radius: 2px;
|
||||
background: var(--fr-tooltip-bg);
|
||||
transform: rotate(45deg);
|
||||
margin-top: -7px;
|
||||
margin-left: -6px; }
|
||||
.graph-svg-tip.comparison {
|
||||
text-align: left;
|
||||
padding: 0px;
|
||||
pointer-events: none; }
|
||||
.graph-svg-tip.comparison .title {
|
||||
display: block;
|
||||
padding: 16px;
|
||||
margin: 0;
|
||||
color: var(--fr-tooltip-title);
|
||||
font-weight: 600;
|
||||
line-height: 1;
|
||||
pointer-events: none;
|
||||
text-transform: uppercase; }
|
||||
.graph-svg-tip.comparison ul {
|
||||
margin: 0;
|
||||
white-space: nowrap;
|
||||
list-style: none; }
|
||||
.graph-svg-tip.comparison ul.tooltip-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||
gap: 5px; }
|
||||
.graph-svg-tip.comparison li {
|
||||
display: inline-block;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
font-weight: 600;
|
||||
line-height: 1;
|
||||
padding: 5px 15px 15px 15px; }
|
||||
.graph-svg-tip.comparison li .tooltip-legend {
|
||||
height: 12px;
|
||||
width: 12px;
|
||||
margin-right: 8px;
|
||||
border-radius: 2px; }
|
||||
.graph-svg-tip.comparison li .tooltip-label {
|
||||
margin-top: 4px;
|
||||
font-size: 11px;
|
||||
max-width: 100px;
|
||||
color: var(--fr-tooltip-label);
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap; }
|
||||
.graph-svg-tip.comparison li .tooltip-value {
|
||||
color: var(--fr-tooltip-value); }
|
||||
2
dist/frappe-charts.umd.js
vendored
2
dist/frappe-charts.umd.js
vendored
File diff suppressed because one or more lines are too long
1
dist/frappe-charts.umd.js.map
vendored
1
dist/frappe-charts.umd.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user