| Index: charted/lib/charts/themes/quantum_theme.css
|
| diff --git a/charted/lib/charts/themes/quantum_theme.css b/charted/lib/charts/themes/quantum_theme.css
|
| deleted file mode 100644
|
| index 757e0f6be234de5b61770d5e2bd2854dc7b4a9a0..0000000000000000000000000000000000000000
|
| --- a/charted/lib/charts/themes/quantum_theme.css
|
| +++ /dev/null
|
| @@ -1,282 +0,0 @@
|
| -
|
| -/*noinspection CssUnknownTarget,CssUnknownTarget*/
|
| -@import '//fonts.googleapis.com/css?family=Roboto:400,700';
|
| -
|
| -/*
|
| - * Chart components layout
|
| - */
|
| -
|
| -.chart-wrapper {
|
| - font-family: Roboto, sans-serif;
|
| - display: block;
|
| -}
|
| -
|
| -.chart-host-wrapper {
|
| - display: flex;
|
| - width: 100%;
|
| -}
|
| -
|
| -.chart-host {
|
| - display: block;
|
| - width: 70%;
|
| -}
|
| -
|
| -.chart-legend-host {
|
| - display: block;
|
| - width: 30%;
|
| -}
|
| -
|
| -/*
|
| - * Chart title
|
| - */
|
| -
|
| -.chart-title-wrapper {
|
| - margin-bottom: 26px; /* charts adds an extra 10px */
|
| -}
|
| -
|
| -.chart-title {
|
| - font-size: 16px;
|
| - color: #757575;
|
| - margin-bottom: 8px;
|
| -}
|
| -
|
| -.chart-subtitle {
|
| - font-size: 14px;
|
| - color: #BDBDBD;
|
| -}
|
| -
|
| -/*
|
| - * Styles for the SVG chart rendering
|
| - */
|
| -
|
| -.chart-canvas {
|
| - font-family: Roboto, sans-serif;
|
| - display: block;
|
| -}
|
| -
|
| -.chart-axis-label {
|
| - font-size: 12px;
|
| - color: #424242;
|
| -}
|
| -
|
| -.chart-axis-label-tooltip {
|
| - color: white;
|
| - opacity: 0;
|
| - transition: opacity .25s;
|
| - background-color: black;
|
| - position: absolute;
|
| - padding: 4px;
|
| - border-radius: 2px;
|
| - z-index: 9999;
|
| -}
|
| -
|
| -.chart-axis-text,
|
| -.dimension-axis-group text, .measure-axis-group text {
|
| - font-size: 12px;
|
| - fill: #757575;
|
| - stroke: none;
|
| -}
|
| -
|
| -/*
|
| - * Styles for the legend.
|
| - */
|
| -
|
| -.chart-legend-row,
|
| -.chart-legend-more {
|
| - width: 100%;
|
| - display: flex;
|
| - font-size: 14px;
|
| - margin-bottom: 16px;
|
| - position: relative;
|
| - cursor: default;
|
| -}
|
| -
|
| -.chart-legend-title {
|
| - color: #838383;
|
| -}
|
| -
|
| -.chart-legend-subtitle {
|
| - color: #C1C1C1;
|
| -}
|
| -
|
| -.chart-legend-selected,
|
| -.chart-legend-hover {
|
| - color: #434343;
|
| - font-weight: bold;
|
| -}
|
| -
|
| -.chart-legend-more-row {
|
| - white-space: nowrap;
|
| - display: flex;
|
| - font-size: 14px;
|
| - margin-top: 10px;
|
| -}
|
| -
|
| -.chart-legend-more-row:first-child {
|
| - margin-top: 0;
|
| -}
|
| -
|
| -.chart-legend-label {
|
| - overflow: hidden;
|
| - text-overflow: ellipsis;
|
| - max-width: 120px;
|
| - flex: 1;
|
| -}
|
| -
|
| -.chart-legend-color,
|
| -.chart-legend-more-color {
|
| - width: 12px;
|
| - height: 12px;
|
| - margin: auto 8px;
|
| - border-radius: 2px;
|
| -}
|
| -.type-line-rdr > .chart-legend-color {
|
| - height: 4px;
|
| -}
|
| -.type-pie-rdr > .chart-legend-color {
|
| - border-radius: 6px;
|
| -}
|
| -
|
| -.chart-legend-more-tooltip {
|
| - position: absolute;
|
| - left: 70px;
|
| - padding: 10px;
|
| - top: 0;
|
| - border-radius: 2px;
|
| - border: 1px solid #C1C1C1;
|
| - box-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
|
| - z-index: 9999;
|
| - background-color: white;
|
| - font-size: 14px;
|
| - pointer-events: none;
|
| - opacity: 0;
|
| - transition: opacity .4s;
|
| -}
|
| -
|
| -/*
|
| - * Axes styles
|
| - */
|
| -
|
| -.tick line, .domain {
|
| - fill: none;
|
| - stroke: #E0E0E0;
|
| - stroke-width: 1px;
|
| - shape-rendering: crispEdges;
|
| -}
|
| -
|
| -.measure-axis-group .domain {
|
| - stroke-width: 0;
|
| -}
|
| -
|
| -.dimension-axis-group .domain {
|
| - stroke: #9E9E9E;
|
| -}
|
| -
|
| -/*
|
| - * Axis markers
|
| - */
|
| -
|
| -.axis-marker {
|
| - stroke: #E0E0E0;
|
| - stroke-dasharray: 3 3;
|
| -}
|
| -
|
| -
|
| -/*
|
| - * Styles for LineChartRenderer
|
| - */
|
| -
|
| -.line-rdr-line {
|
| - stroke-width: 2px;
|
| - transition: stroke-width .2s;
|
| - stroke-linecap: round;
|
| -}
|
| -
|
| -.line-rdr-line.col-selected,
|
| -.line-rdr-line.col-previewed {
|
| - stroke-width: 4px;
|
| -}
|
| -
|
| -.line-rdr-point {
|
| - opacity: 0;
|
| - transition: opacity .2s;
|
| -}
|
| -
|
| -/*
|
| - * Styles for the tooltip.
|
| - */
|
| -
|
| -.tooltip,
|
| -.hovercard {
|
| - opacity: 0;
|
| - display: flex;
|
| - flex-direction: column;
|
| - position: absolute;
|
| - border-radius: 2px;
|
| - border: 1px solid #C1C1C1;
|
| - padding: 16px;
|
| - box-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
|
| - z-index: 9999;
|
| - background-color: white;
|
| - font-size: 14px;
|
| - transition: opacity .25s;
|
| - pointer-events: none;
|
| -}
|
| -
|
| -.tooltip-title,
|
| -.hovercard-title {
|
| - color: #434343;
|
| - font-weight: bold;
|
| - margin-bottom: 16px;
|
| -}
|
| -
|
| -.hovercard-measure {
|
| - display: flex;
|
| - color: #838383;
|
| -}
|
| -.hovercard-measure.hovercard-multi {
|
| - flex-direction: row;
|
| - margin-bottom: 16px;
|
| -}
|
| -.hovercard-measure.hovercard-single {
|
| - flex-direction: column;
|
| -}
|
| -.hovercard-measure:last-child {
|
| - margin-bottom: 0;
|
| -}
|
| -
|
| -.hovercard-single .hovercard-measure-value {
|
| - font-size: 24px;
|
| -}
|
| -.hovercard-multi .hovercard-measure-label {
|
| - padding-right: 16px;
|
| - flex: 1;
|
| -}
|
| -
|
| -.tooltip-total {
|
| - color: #636363;
|
| - font-weight: bold;
|
| - margin-bottom: 16px;
|
| -}
|
| -
|
| -.tooltip-item {
|
| - white-space: nowrap;
|
| - display: flex;
|
| - flex-direction: row;
|
| - justify-content: space-between;
|
| - color: #838383;
|
| - margin-bottom: 16px;
|
| -}
|
| -
|
| -.tooltip-item:last-child {
|
| - margin-bottom: 0;
|
| -}
|
| -
|
| -.tooltip .tooltip-item-value {
|
| - margin-left: 20px;
|
| - margin-right: 0;
|
| -}
|
| -.tooltip.rtl .tooltip-item-value {
|
| - margin-left: 0;
|
| - margin-right: 20px;
|
| -}
|
|
|