// css for tree view
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -542,8 +542,7 @@ input[type="password"].input-tiny
|
||||
float: left
|
||||
|
||||
.btn-group-action
|
||||
display: inline-block
|
||||
white-space: nowrap
|
||||
min-width: 150px
|
||||
a
|
||||
text-decoration: none
|
||||
|
||||
@@ -1149,5 +1148,79 @@ fieldset > .row
|
||||
100%
|
||||
+opacity(1)
|
||||
+scale(1)
|
||||
|
||||
|
||||
$treeBackgroundHover: lighten(blue,30%)
|
||||
$treeBackgroundSelect: blue
|
||||
|
||||
|
||||
.tree
|
||||
border: 1px solid #BBBBBB
|
||||
border-radius: 4px 4px 4px 4px
|
||||
overflow-y: auto
|
||||
overflow-x: hidden
|
||||
padding: 10px 15px 0 15px
|
||||
position: relative
|
||||
.tree-folder
|
||||
width: 100%
|
||||
min-height: 20px
|
||||
cursor: pointer
|
||||
margin-top: 1px
|
||||
.tree-folder-header
|
||||
position: relative
|
||||
height: 20px
|
||||
-webkit-border-radius: 6px
|
||||
-moz-border-radius: 6px
|
||||
border-radius: 6px
|
||||
&:hover
|
||||
background-color: $treeBackgroundHover
|
||||
|
||||
i
|
||||
position: absolute
|
||||
float: left
|
||||
top: 1px
|
||||
left: 5px
|
||||
.tree-folder-name
|
||||
padding-left: 29px
|
||||
white-space: nowrap
|
||||
overflow: hidden
|
||||
text-overflow: ellipsis
|
||||
|
||||
.tree-folder-content
|
||||
margin-left: 23px
|
||||
|
||||
.tree-item
|
||||
position: relative
|
||||
width: 100%
|
||||
height: 20px
|
||||
cursor: pointer
|
||||
margin-top: 1px
|
||||
-webkit-border-radius: 6px
|
||||
-moz-border-radius: 6px
|
||||
border-radius: 6px
|
||||
|
||||
&:hover
|
||||
background-color: $treeBackgroundHover
|
||||
|
||||
.tree-item-name
|
||||
position: absolute
|
||||
left: 29px
|
||||
.tree-dot
|
||||
position: absolute
|
||||
top: 8px
|
||||
left: 10px
|
||||
display: block
|
||||
width: 4px
|
||||
height: 4px
|
||||
background-color: #ccc
|
||||
-webkit-border-radius: 6px
|
||||
-moz-border-radius: 6px
|
||||
border-radius: 6px
|
||||
|
||||
.icon-ok
|
||||
position: absolute
|
||||
top: 1px
|
||||
left: 5px
|
||||
.tree-selected
|
||||
background-color: $treeBackgroundSelect
|
||||
&:hover
|
||||
background-color: $treeBackgroundSelect
|
||||
|
||||
Reference in New Issue
Block a user