connections added arrows to links from and to

This commit is contained in:
2018-06-09 16:35:48 +02:00
parent 0884c61123
commit c345912ab8
3 changed files with 24 additions and 6 deletions
+11 -3
View File
@@ -935,18 +935,26 @@ main#content.mode-text .opened-link .close-link-btn {
bottom: 100%;
margin-top: 15px;
padding-bottom: 10px; }
.dot > nav.links.to:before {
content: "\2304";
display: flex;
align-items: flex-end; }
.dot > nav.links.from {
top: 100%;
padding-top: 10px; }
.dot > nav.links.from:before {
content: "\2303"; }
.dot > nav.links:before {
content: "";
border-left: 1px solid #e2e2e2;
position: absolute;
top: 0;
left: 65px;
height: 100%;
width: 1px;
z-index: -1; }
width: 0;
z-index: -1;
text-indent: -0.45em;
line-height: 1;
color: #4a4848; }
.dot:hover > p.summary, .dot.opened > p.summary, .dot.highlight > p.summary {
opacity: 1;
transition: opacity 0.4s ease-in-out; }
+1 -1
View File
File diff suppressed because one or more lines are too long
+12 -2
View File
@@ -494,20 +494,30 @@ main#content.mode-connections{
bottom:100%;
margin-top: 15px;
padding-bottom:10px;
&:before{
content: "\2304";
display: flex;
align-items: flex-end;
}
}
&.from{
top:100%;
padding-top:10px;
// margin-bottom: 15px;
&:before{
content: "\2303";
}
}
&:before{
content: "";
border-left: 1px solid #e2e2e2;
position: absolute;
top:0; left:$margin_left - 5px;
height: 100%; width:1px;
height: 100%; width:0;
z-index: -1;
text-indent: -0.45em;
line-height: 1;
color: #4a4848;
}
}