-
Notifications
You must be signed in to change notification settings - Fork 449
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
make connection style.fill
more aesthetic
#2030
Comments
i want
ex.1) a->b:foobar{
#for connection
style{
stroke-dash: 5;
stroke: orange;
}
#for connection label
label.style{
fill:orange
width: 100; #for padding
near:center-center; #for padding
double-border: true;
border-radius: 20;
stroke-dash: 2;
stroke-width: 5;
stroke: red;
}
} ex.2) c->d:|
foobar
|{ style.fill:orange } ex.3)different outputs, why? (dupe: #1633) a -> b
memo: |md
<div class="container">
foobar
</div>
<style type="text/css">
.container{
background-color:orange;
text-align: center;
width: 100px;
border-radius: 9999px;
}
</style>
|
y -> z: |md
<div class="container">
foobar
</div>
<style type="text/css">
.container{
background-color:orange;
text-align: center;
width: 100px;
border-radius: 9999px;
}
</style>
|
|
No padding around connection labels often makes the text connect with the arrows when fill is the same as the background colour. I'd very much appreciate more padding and rounded corners! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
what we want
what it is currently
The text was updated successfully, but these errors were encountered: