mirror of
https://github.com/wassname/HackFlowy.git
synced 2026-07-04 17:10:05 +08:00
36 lines
490 B
CSS
36 lines
490 B
CSS
|
|
|
|
|
|
|
|
.root ul {
|
|
position: relative;
|
|
right: 9px; /*controls positioning of border*/
|
|
/*border-left: 1px solid grey;*/
|
|
|
|
|
|
padding-left: 25px;
|
|
padding-top: 1px;
|
|
padding-bottom: 1px;
|
|
|
|
list-style-type: square;
|
|
}
|
|
|
|
|
|
.root li {
|
|
position: relative;
|
|
/*box-shadow: 0px 1px 0px blue;*/
|
|
|
|
padding: 0;
|
|
padding-top: 0px;
|
|
|
|
margin: 0;
|
|
margin-left: 10px;
|
|
margin-bottom: 3px;
|
|
|
|
background-repeat: no-repeat;
|
|
list-style: none;
|
|
}
|
|
|
|
.root li.editing {
|
|
outline: 1px dotted black;
|
|
} |