tree-view.css -> tree-view.less

This commit is contained in:
Justin Palmer
2013-03-04 12:05:40 -08:00
committed by Corey Johnson
parent 7ad67e50a6
commit 6fd0118d2c
2 changed files with 57 additions and 57 deletions

View File

@@ -1,57 +0,0 @@
.tree-view-wrapper {
position: relative;
height: 100%;
cursor: default;
-webkit-user-select: none;
min-width: 50px;
z-index: 2;
}
.tree-view {
position: relative;
cursor: default;
-webkit-user-select: none;
overflow: auto;
height: 100%;
}
.tree-view-wrapper .tree-view-resizer {
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 10px;
cursor: col-resize;
z-index: 3;
}
.tree-view .entry {
text-wrap: none;
white-space: nowrap;
}
.tree-view .entry > .header,
.tree-view .entry > .name {
z-index: 1;
position: relative;
display: inline-block;
}
.tree-view .selected > .highlight {
position: absolute;
left: 0;
right: 0;
height: 24px;
}
.tree-view .disclosure-arrow {
display: inline-block;
}
.tree-view-dialog {
position: absolute;
bottom: 0;
left: 0;
right: 0;
z-index: 99;
}

View File

@@ -0,0 +1,57 @@
.tree-view-wrapper {
position: relative;
height: 100%;
cursor: default;
-webkit-user-select: none;
min-width: 50px;
z-index: 2;
.tree-view-resizer {
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 10px;
cursor: col-resize;
z-index: 3;
}
}
.tree-view {
position: relative;
cursor: default;
-webkit-user-select: none;
overflow: auto;
height: 100%;
.entry {
text-wrap: none;
white-space: nowrap;
& > .header,
> .name {
z-index: 1;
position: relative;
display: inline-block;
}
}
.selected > .highlight {
position: absolute;
left: 0;
right: 0;
height: 24px;
}
.disclosure-arrow {
display: inline-block;
}
}
.tree-view-dialog {
position: absolute;
bottom: 0;
left: 0;
right: 0;
z-index: 99;
}