-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e409efa
commit 042f23d
Showing
9 changed files
with
851 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
.DS_Store* | ||
build/ | ||
node_modules | ||
.idea | ||
*.swp | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
Oops, something went wrong.