Skip to content
This repository has been archived by the owner on Apr 12, 2019. It is now read-only.

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnCoene committed Feb 23, 2017
1 parent c451a4a commit 1e2861b
Show file tree
Hide file tree
Showing 5 changed files with 110 additions and 0 deletions.
2 changes: 2 additions & 0 deletions inst/htmlwidgets/chartist.yaml
Expand Up @@ -11,4 +11,6 @@ dependencies:
- plugins/chartist-plugin-accessibility.min.js
stylesheet:
- chartist.min.css
- threshold.css
- tooltip.css
- style.css
34 changes: 34 additions & 0 deletions inst/htmlwidgets/lib/chartist-0.10.0/chartist-plugin-tooltip.css
@@ -0,0 +1,34 @@
.chartist-tooltip {
position: absolute;
display: inline-block;
opacity: 0;
min-width: 5em;
padding: .5em;
background: #F4C63D;
color: #453D3F;
font-family: Oxygen,Helvetica,Arial,sans-serif;
font-weight: 700;
text-align: center;
pointer-events: none;
z-index: 1;
-webkit-transition: opacity .2s linear;
-moz-transition: opacity .2s linear;
-o-transition: opacity .2s linear;
transition: opacity .2s linear; }
.chartist-tooltip:before {
content: "";
position: absolute;
top: 100%;
left: 50%;
width: 0;
height: 0;
margin-left: -15px;
border: 15px solid transparent;
border-top-color: #F4C63D; }
.chartist-tooltip.tooltip-show {
opacity: 1; }

.ct-area, .ct-line {
pointer-events: none; }

/*# sourceMappingURL=chartist-plugin-tooltip.css.map */
17 changes: 17 additions & 0 deletions inst/htmlwidgets/lib/chartist-0.10.0/style.css
@@ -0,0 +1,17 @@


.ct-line.ct-threshold-above, .ct-point.ct-threshold-above, .ct-bar.ct-threshold-above {
stroke: #f05b4f;
}

.ct-line.ct-threshold-below, .ct-point.ct-threshold-below, .ct-bar.ct-threshold-below {
stroke: #59922b;
}

.ct-area.ct-threshold-above {
fill: #f05b4f;
}

.ct-area.ct-threshold-below {
fill: #59922b;
}
23 changes: 23 additions & 0 deletions inst/htmlwidgets/lib/chartist-0.10.0/threshold.css
@@ -0,0 +1,23 @@
.ct-line.ct-threshold-above, .ct-point.ct-threshold-above, .ct-bar.ct-threshold-above {
stroke: #f05b4f;
}

.ct-line.ct-threshold-below, .ct-point.ct-threshold-below, .ct-bar.ct-threshold-below {
stroke: #59922b;
}

.ct-area.ct-threshold-above {
fill: #f05b4f;
}

.ct-area.ct-threshold-below {
fill: #59922b;
}

.ct-series-a .ct-bar.ct-threshold-above {
stroke: #f05b4f;
}

.ct-series-a .ct-bar.ct-threshold-below {
stroke: #59922b;
}
34 changes: 34 additions & 0 deletions inst/htmlwidgets/lib/chartist-0.10.0/tooltip.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1e2861b

Please sign in to comment.