Link area filled in black
See original GitHub issueSame as issue #568 except using:
import 'jointjs/dist/joint.css';
- Makes the whole area go blank.<link rel="stylesheet" href="%PUBLIC_URL%/joint.css" />
- Inindex.html
makes the whole area go blankimport 'jointjs/css/themes/default.css';
- only fixes the arrow head colour. But the nodes still show
Is there something I’m missing here about using jointjs with jsx?
Issue Analytics
- State:
- Created 5 years ago
- Comments:12 (4 by maintainers)
Top Results From Across the Web
Fill the region with Black color - html
I want to fill the entire red box region with black background color. Html code: ` <body background="black"> <div id ...
Read more >The Many Ways to Link Up Shapes and Images with HTML ...
The Many Ways to Link Up Shapes and Images with HTML and CSS ... However, you can also control the shape of that...
Read more >Photoshop opens PDF with transparent area filled in Black?
It's just Photoshop is showing the transparent pixels as black since the preference wasn't set properly. Photoshop by default shows transparency as the...
Read more >Link block
Select the Link block; Go to the Style Panel; Change text decoration to none; Change the font color to black. The typography section...
Read more >Black Holes | Science Mission Directorate
This chart shows the relative masses of super-dense cosmic objects. Read the full article. Historically, astronomers have long believed that no mid-sized black...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The external CSS is not exported when you serialize a DOM node with XMLSerializer. That’s why no. 1 added
fill: none
as an SVG DOM attribute to every link and no 2. inserted<style>
tag inside the exported SVG.You are missing CSS rules (https://github.com/clientIO/joint/blob/master/css/layout.css#L101-L104) in the exported SVG.
fill: none
to.connection-wrap
to the shape definition.