connections added arrows to links from and to
This commit is contained in:
Vendored
+11
-3
@@ -935,18 +935,26 @@ main#content.mode-text .opened-link .close-link-btn {
|
|||||||
bottom: 100%;
|
bottom: 100%;
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
padding-bottom: 10px; }
|
padding-bottom: 10px; }
|
||||||
|
.dot > nav.links.to:before {
|
||||||
|
content: "\2304";
|
||||||
|
display: flex;
|
||||||
|
align-items: flex-end; }
|
||||||
.dot > nav.links.from {
|
.dot > nav.links.from {
|
||||||
top: 100%;
|
top: 100%;
|
||||||
padding-top: 10px; }
|
padding-top: 10px; }
|
||||||
|
.dot > nav.links.from:before {
|
||||||
|
content: "\2303"; }
|
||||||
.dot > nav.links:before {
|
.dot > nav.links:before {
|
||||||
content: "";
|
|
||||||
border-left: 1px solid #e2e2e2;
|
border-left: 1px solid #e2e2e2;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 65px;
|
left: 65px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 1px;
|
width: 0;
|
||||||
z-index: -1; }
|
z-index: -1;
|
||||||
|
text-indent: -0.45em;
|
||||||
|
line-height: 1;
|
||||||
|
color: #4a4848; }
|
||||||
.dot:hover > p.summary, .dot.opened > p.summary, .dot.highlight > p.summary {
|
.dot:hover > p.summary, .dot.opened > p.summary, .dot.highlight > p.summary {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
transition: opacity 0.4s ease-in-out; }
|
transition: opacity 0.4s ease-in-out; }
|
||||||
|
|||||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
+12
-2
@@ -494,20 +494,30 @@ main#content.mode-connections{
|
|||||||
bottom:100%;
|
bottom:100%;
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
padding-bottom:10px;
|
padding-bottom:10px;
|
||||||
|
&:before{
|
||||||
|
content: "\2304";
|
||||||
|
display: flex;
|
||||||
|
align-items: flex-end;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
&.from{
|
&.from{
|
||||||
top:100%;
|
top:100%;
|
||||||
padding-top:10px;
|
padding-top:10px;
|
||||||
// margin-bottom: 15px;
|
// margin-bottom: 15px;
|
||||||
|
&:before{
|
||||||
|
content: "\2303";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&:before{
|
&:before{
|
||||||
content: "";
|
|
||||||
border-left: 1px solid #e2e2e2;
|
border-left: 1px solid #e2e2e2;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top:0; left:$margin_left - 5px;
|
top:0; left:$margin_left - 5px;
|
||||||
height: 100%; width:1px;
|
height: 100%; width:0;
|
||||||
z-index: -1;
|
z-index: -1;
|
||||||
|
text-indent: -0.45em;
|
||||||
|
line-height: 1;
|
||||||
|
color: #4a4848;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user