Skip to content

Commit

Permalink
Include v.0.1.0 build
Browse files Browse the repository at this point in the history
  • Loading branch information
fabric-io-rodrigues committed Sep 3, 2017
1 parent e409efa commit 042f23d
Show file tree
Hide file tree
Showing 9 changed files with 851 additions and 2 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
.DS_Store*
build/
node_modules
.idea
*.swp
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ SKD3 requires [d3.js](http://d3js.org/) version **[4.9.0](https://github.com/d3/

## Installing

If you use NPM, `npm install skd3`. Otherwise, download the [latest release](https://github.com/fabriciorhs/skd3/releases/latest). You can also load directly from [unpkg.com](https://cdn.rawgit.com/):
If you use NPM, `npm install skd3`. Otherwise, download the [latest release](https://github.com/fabriciorhs/skd3/releases/latest). You can also load directly from [rawgit.com](https://cdn.rawgit.com/):

```html
<script src="https://cdn.rawgit.com/fabriciorhs/skd3/master/build/sk.d3.min.js"></script>
Expand Down
100 changes: 100 additions & 0 deletions build/sk.d3.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
/* skd3 version 0.1.0 (https://github.com/fabriciorhs/skd3) 2017-09-03 */

.sk-svg {
font-family: sans-serif;
}

/* disable text selection in sankey */
.sk-svg text {
cursor: default;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.sk-svg text::-moz-selection {
background: none;
}
.sk-svg text::selection {
background: none;
}
.sk-node rect {
cursor: move;
fill-opacity: .9;
shape-rendering: crispEdges;
}
.sk-node text {
pointer-events: none;
font-size: 13px;
}
.sk-link {
fill: none;
stroke: #000;
stroke-opacity: .16;
transition-property: stroke-opacity;
transition-duration: 0.5s;
}
.sk-link:hover {
stroke-opacity: .5;
}

/* tooltip styles */
.d3-tip h1 {
line-height: 12px !important;
font-weight: bold !important;
font-size: 14px;
padding: 0;
margin-top: 5px !important;
margin-bottom: 5px;
width: 100%;
}
.d3-tip h2 {
line-height: 12px !important;
font-weight: bold;
font-size: 12px;
padding-right: inherit;
padding-left: inherit;
padding-top: 2px;
padding-bottom: 2px;
margin: 0px;
}
.d3-tip h3 {
line-height: 12px !important;
font-weight: normal;
font-size: 8px;
margin: 0;
padding: 0;
}
.d3-tip table {
font-weight: normal;
font-size: 12px;
padding: none;
margin: 0;
width: 100%;
border: none;
border-collapse: collapse;
}
.d3-tip td {
padding-top: 2px;
padding-bottom: 2px;
}
.d3-tip .col-left {
padding-right: 8px;
}
.d3-tip .table-wrapper {
margin: 0;
padding: inherit;
border: none;
}
.d3-tip {
line-height: 12px !important;
font-family: sans-serif;
font-weight: normal;
padding: 4px;
background: white;
color: black;
border-radius: 2px;
pointer-events: none;
background: white;
box-shadow: 1px 1px 4px grey;
}
Loading

0 comments on commit 042f23d

Please sign in to comment.