Subversion Repositories Applications.papyrus

Compare Revisions

Ignore whitespace Rev 2149 → Rev 2150

/trunk/api/js/dojo1.0/dojox/widget/SortList/SortList.html
New file
0,0 → 1,9
<div class="sortList" id="${id}">
<div class="sortListTitle" dojoAttachPoint="titleNode">
<div class="sortListIcon"></div>
<span dojoAttachPoint="focusNode">${title}</span>
</div>
<div class="sortListBodyWrapper" dojoAttachEvent="onmouseover: _set, onmouseout: _unset, onclick:_handleClick" dojoAttachPoint="bodyWrapper">
<ul dojoAttachPoint="containerNode" class="sortListBody"></ul>
</div>
</div>
/trunk/api/js/dojo1.0/dojox/widget/SortList/SortList.css
New file
0,0 → 1,64
.sortListBody { margin:0; padding:0; background:#fff; }
 
.soria .sortListBody li,
.tundra .sortListBody li {
border-bottom:1px solid #b7b7b7;
padding:2px 2px 2px 5px;
}
.sortListTitle {
cursor:pointer;
padding:4px 4px 3px 4px;
}
.sortList { height:100%; width:100%; }
.sortListBodyWrapper {
border:1px solid #b7b7b7;
overflow:auto;
height:100%;
cursor:pointer;
}
 
.soria .sortListBodyWrapper {
border:1px solid #333;
}
 
.soria .sortListItemOdd,
.tundra .sortListItemOdd { background:#f2f5f9; }
.tundra .sortListTitle {
background:#fafafa url('../../../dijit/themes/tundra/images/titleBarBg.gif') repeat-x top left;
border:1px solid #bfbfbf;
border-bottom:0;
}
.soria .sortListTitle {
background:#4f8ce5 url('../../../dijit/themes/soria/images/gradientTopBg.png') repeat-x top left;
background-position:0px -1px;
border:1px solid #333;
border-bottom:0;
font-weight:bold;
color:#fff;
}
 
.sortListItemSelected { background:#b7cdee !important; }
.sortListItemHover { background:#ff6 !important; }
 
.soria .sortListIcon,
.tundra .sortListIcon {
float:right;
height:16px;
width:16px;
}
.tundra .sortListDesc .sortListIcon {
background:url('../../../dijit/themes/tundra/images/arrowDown.png') no-repeat center center;
}
.tundra .sortListAsc .sortListIcon {
background:url('../../../dijit/themes/tundra/images/arrowUp.png') no-repeat center center;
}
 
.soria .sortListDesc .sortListIcon,
.soria .sortListAsc .sortListIcon {
background:url('../../../dijit/themes/soria/images/arrows.png') no-repeat center center;
background-position:0px 0px;
}
 
.soria .sortListDesc .sortListIcon {
background-position:-32px 0px;
}