Tree.css (PHProjekt-6.2.0) | : | Tree.css (PHProjekt-6.2.1) | ||
---|---|---|---|---|
/* Tree */ | /* Tree */ | |||
.phprojekt .dijitTreeNode { | .phprojekt .dijitTreeNode { | |||
background : none; | background : none; | |||
background-position : top left; | background-position : top left; | |||
background-repeat : repeat-y; | background-repeat : repeat-y; | |||
zoom: 1; /* MOW: what the heck is this doing in here? */ | ||||
} | } | |||
.phprojekt .dijitTreeNodeHover { | .phprojekt .dijitTreeNodeHover { | |||
/* using a transparent png so that we can still see grid lines, which are (u | ||||
nfortunately) behind the dijitRowNode that we are hovering over */ | ||||
/*background-image: url('images/treeHover.png');*/ | ||||
background-repeat: repeat; | background-repeat: repeat; | |||
background-color: none !important; | background-color: none !important; | |||
} | } | |||
/* left vertical line (grid) for all nodes */ | ||||
.phprojekt .dijitTreeIsLast { | ||||
background: url('images/treeI_half.gif') no-repeat; | ||||
} | ||||
.phprojekt .dijitTreeLabel { | .phprojekt .dijitTreeLabel { | |||
font-weight: normal; | font-weight: normal; | |||
margin-left: 3px; | margin-left: 3px; | |||
} | } | |||
.phprojekt .dijitTreeIsRoot { | .phprojekt .dijitTreeIsRoot { | |||
margin-left: 0; | margin-left: 0; | |||
background-image: none; | background-image: none; | |||
} | } | |||
skipping to change at line 50 | skipping to change at line 42 | |||
color: white; | color: white; | |||
} | } | |||
.phprojekt .dijitTreeRowSelected, | .phprojekt .dijitTreeRowSelected, | |||
.phprojekt .dijitTreeRowHover { | .phprojekt .dijitTreeRowHover { | |||
border-color: #103446; | border-color: #103446; | |||
background: rgba(250,250,250, 0.2); | background: rgba(250,250,250, 0.2); | |||
color: white; | color: white; | |||
} | } | |||
.phprojekt .dijitTreeRowHover .dijitTreeExpandoOpened { | ||||
background-position: 0 0; | ||||
} | ||||
.phprojekt .dijitTreeRowHover .dijitTreeExpandoClosed { | ||||
background-position: -18px 0; | ||||
} | ||||
.phprojekt .dijitTreeContent { | .phprojekt .dijitTreeContent { | |||
min-height: 18px; | min-height: 18px; | |||
min-width: 18px; | min-width: 18px; | |||
padding-left:1px; | padding-left:1px; | |||
} | } | |||
.phprojekt .dijitTreeExpand { | .phprojekt .dijitTreeExpand { | |||
width: 18px; | width: 18px; | |||
height: 18px; | height: 18px; | |||
background-repeat : no-repeat; | background-repeat : no-repeat; | |||
skipping to change at line 89 | skipping to change at line 73 | |||
} | } | |||
.phprojekt .treeBox .selected { | .phprojekt .treeBox .selected { | |||
background: #294064; | background: #294064; | |||
} | } | |||
.phprojekt .treeBox .selected .dijitTreeLabel { | .phprojekt .treeBox .selected .dijitTreeLabel { | |||
font-weight: 600; | font-weight: 600; | |||
color: #fff; | color: #fff; | |||
} | } | |||
.phprojekt .dijitTreeExpandoOpened { | ||||
background: url('images/spriteTree.gif') no-repeat -18px top; | ||||
} | ||||
.phprojekt .dijitTreeExpandoClosed { | ||||
background-image: url('images/spriteTree.gif'); | ||||
background-position: 0 0; | ||||
} | ||||
.phprojekt .dijitTreeExpandoLeaf { | ||||
background: url('images/spriteTree.gif') no-repeat -36px top; | ||||
} | ||||
.phprojekt .dijitTreeExpandoLoading { | ||||
background-image: url('images/treeExpand_loading.gif'); | ||||
} | ||||
.phprojekt .dijitTreeIcon { | ||||
/* | ||||
width: 16px; | ||||
height: 16px; | ||||
*/ | ||||
} | ||||
.phprojekt .dijitFolderOpened { | ||||
/* background: url('images/spriteDivIcons.gif') no-repeat -16px top; */ | ||||
} | ||||
.phprojekt .dijitFolderClosed { | ||||
/* background: url('images/spriteDivIcons.gif') no-repeat top left; */ | ||||
} | ||||
.phprojekt .dijitLeaf { | ||||
/* background: url('images/spriteDivIcons.gif') no-repeat -32px top; */ | ||||
} | ||||
/* Drag and Drop on TreeNodes | ||||
* Put insert line on dijitTreeContent node so it's aligned w/ | ||||
* (ie, indented equally with) target element, even | ||||
* though dijitTreeRowNode is the actual "drag object" | ||||
*/ | ||||
.phprojekt .dijitTreeNode .dojoDndItemBefore, | ||||
.phprojekt .dijitTreeNode .dojoDndItemAfter { | ||||
border-bottom: none; | ||||
border-top: none; | ||||
} | ||||
.phprojekt .dijitTreeNode .dojoDndItemBefore .dijitTreeContent { | ||||
/* copied from Common.css */ | ||||
border-top: 2px solid #369; | ||||
} | ||||
.phprojekt .dijitTreeNode .dojoDndItemAfter .dijitTreeContent { | ||||
/* copied from Common.css */ | ||||
border-bottom: 2px solid #369; | ||||
} | ||||
End of changes. 5 change blocks. | ||||
17 lines changed or deleted | 0 lines changed or added |