Skip to content

Commit

Permalink
chore(release): 6.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
amcdnl committed Aug 23, 2017
1 parent cd416cc commit 9a151bc
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 31 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@swimlane/ngx-charts",
"version": "6.0.1",
"version": "6.0.2",
"description": "Declarative Charting Framework for Angular2 and beyond!",
"main": "release/index.js",
"typings": "release/index.d.ts",
Expand Down
40 changes: 20 additions & 20 deletions release/common/tooltip/tooltip.component.css
Original file line number Diff line number Diff line change
@@ -1,86 +1,86 @@
.ngx-tooltip-content {
.ngx-charts-tooltip-content {
position: fixed;
border-radius: 3px;
z-index: 5000;
display: block;
font-weight: normal;
opacity: 0;
pointer-events: none !important; }
.ngx-tooltip-content.type-popover {
.ngx-charts-tooltip-content.type-popover {
background: #fff;
color: #060709;
border: 1px solid #72809b;
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
font-size: 13px;
padding: 4px; }
.ngx-tooltip-content.type-popover .tooltip-caret {
.ngx-charts-tooltip-content.type-popover .tooltip-caret {
position: absolute;
z-index: 5001;
width: 0;
height: 0; }
.ngx-tooltip-content.type-popover .tooltip-caret.position-left {
.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-left {
border-top: 7px solid transparent;
border-bottom: 7px solid transparent;
border-left: 7px solid #fff; }
.ngx-tooltip-content.type-popover .tooltip-caret.position-top {
.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-top {
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-top: 7px solid #fff; }
.ngx-tooltip-content.type-popover .tooltip-caret.position-right {
.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-right {
border-top: 7px solid transparent;
border-bottom: 7px solid transparent;
border-right: 7px solid #fff; }
.ngx-tooltip-content.type-popover .tooltip-caret.position-bottom {
.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-bottom {
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-bottom: 7px solid #fff; }
.ngx-tooltip-content.type-tooltip {
.ngx-charts-tooltip-content.type-tooltip {
color: #fff;
background: rgba(0, 0, 0, 0.75);
font-size: 12px;
padding: 0 10px;
text-align: center;
pointer-events: auto; }
.ngx-tooltip-content.type-tooltip .tooltip-caret.position-left {
.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-left {
border-top: 7px solid transparent;
border-bottom: 7px solid transparent;
border-left: 7px solid rgba(0, 0, 0, 0.75); }
.ngx-tooltip-content.type-tooltip .tooltip-caret.position-top {
.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-top {
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-top: 7px solid rgba(0, 0, 0, 0.75); }
.ngx-tooltip-content.type-tooltip .tooltip-caret.position-right {
.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-right {
border-top: 7px solid transparent;
border-bottom: 7px solid transparent;
border-right: 7px solid rgba(0, 0, 0, 0.75); }
.ngx-tooltip-content.type-tooltip .tooltip-caret.position-bottom {
.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-bottom {
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-bottom: 7px solid rgba(0, 0, 0, 0.75); }
.ngx-tooltip-content .tooltip-label {
.ngx-charts-tooltip-content .tooltip-label {
display: block;
line-height: 1em;
padding: 8px 5px 5px 5px;
font-size: 1em; }
.ngx-tooltip-content .tooltip-val {
.ngx-charts-tooltip-content .tooltip-val {
display: block;
font-size: 1.3em;
line-height: 1em;
padding: 0 5px 8px 5px; }
.ngx-tooltip-content .tooltip-caret {
.ngx-charts-tooltip-content .tooltip-caret {
position: absolute;
z-index: 5001;
width: 0;
height: 0; }
.ngx-tooltip-content.position-right {
.ngx-charts-tooltip-content.position-right {
transform: translate3d(10px, 0, 0); }
.ngx-tooltip-content.position-left {
.ngx-charts-tooltip-content.position-left {
transform: translate3d(-10px, 0, 0); }
.ngx-tooltip-content.position-top {
.ngx-charts-tooltip-content.position-top {
transform: translate3d(0, -10px, 0); }
.ngx-tooltip-content.position-bottom {
.ngx-charts-tooltip-content.position-bottom {
transform: translate3d(0, 10px, 0); }
.ngx-tooltip-content.animate {
.ngx-charts-tooltip-content.animate {
opacity: 1;
transition: opacity 0.3s, transform 0.3s;
transform: translate3d(0, 0, 0);
Expand Down
2 changes: 1 addition & 1 deletion release/common/tooltip/tooltip.component.js

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

2 changes: 1 addition & 1 deletion release/common/tooltip/tooltip.component.js.map

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

2 changes: 1 addition & 1 deletion release/index.css

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

Loading

0 comments on commit 9a151bc

Please sign in to comment.