Changeset 1548 for trunk/web-app
- Timestamp:
- Feb 22, 2011, 3:45:25 PM (10 years ago)
- Location:
- trunk/web-app
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/web-app/css/advancedQuery.css
r1526 r1548 35 35 -khtml-opacity: 0.3; 36 36 } 37 38 /** Options buttons **/39 .options { margin-top: 8px; }40 .options.multiple { float: left; width: 300px; }41 42 .options a {43 font-size: 10px;44 font-weight: bold;45 margin-right: 10px;46 padding-top: 2px;47 padding-bottom: 2px;48 line-height: 20px;49 padding-left: 28px;50 }51 52 #content .options a.disabled { color: #aaa; cursor: default; }53 54 .options a.performAction {55 background: transparent url(../plugins/famfamfam-1.0.1/images/icons/brick_go.png) 5px 50% no-repeat;56 }57 .options a.excel {58 background-image: url(../plugins/famfamfam-1.0.1/images/icons/page_excel.png);59 }60 .options a.searchIn {61 background: transparent url(../plugins/famfamfam-1.0.1/images/icons/arrow_branch.png) 5px 50% no-repeat;62 }63 .options a.search {64 background: transparent url(../plugins/famfamfam-1.0.1/images/icons/arrow_undo.png) 5px 50% no-repeat;65 }66 .options a.discard {67 background: transparent url(../plugins/famfamfam-1.0.1/images/icons/basket_remove.png) 5px 50% no-repeat;68 }69 .options a.listPrevious {70 background: transparent url(../plugins/famfamfam-1.0.1/images/icons/basket.png) 5px 50% no-repeat;71 }72 .options a.combine {73 background: transparent url(../plugins/famfamfam-1.0.1/images/icons/arrow_join.png) 5px 50% no-repeat;74 } -
trunk/web-app/css/default_style.css
r1494 r1548 75 75 font-size: 1.2em; 76 76 background: url(../images/default_style/topnav/topnav_bg.gif) repeat-x; 77 z-index: 1005; /** Important: keeps submenu's on top of other elements in IE7. See http://www.shawnpreisz.com/css/z-index-internet-explorer-7-ie7#comment-547 */77 z-index: 995; /** Important: keeps submenu's on top of other elements in IE7. See http://www.shawnpreisz.com/css/z-index-internet-explorer-7-ie7#comment-547 */ 78 78 } 79 79 … … 83 83 padding: 0 15px 0 0; 84 84 position: relative; /*--Declare X and Y axis base--*/ 85 z-index: 1004; /** Important: keeps submenu's on top of other elements in IE7. See http://www.shawnpreisz.com/css/z-index-internet-explorer-7-ie7#comment-547 */85 z-index: 994; /** Important: keeps submenu's on top of other elements in IE7. See http://www.shawnpreisz.com/css/z-index-internet-explorer-7-ie7#comment-547 */ 86 86 } 87 87 … … 132 132 -webkit-border-bottom-right-radius: 5px; 133 133 border: 1px solid #111; 134 z-index: 1001; /** Important: keeps submenu's on top of other elements in IE7. See http://www.shawnpreisz.com/css/z-index-internet-explorer-7-ie7#comment-547 */134 z-index: 991; /** Important: keeps submenu's on top of other elements in IE7. See http://www.shawnpreisz.com/css/z-index-internet-explorer-7-ie7#comment-547 */ 135 135 } 136 136 … … 143 143 width: 170px; 144 144 position:relative; 145 z-index: 1000; /** Important: keeps submenu's on top of other elements in IE7. See http://www.shawnpreisz.com/css/z-index-internet-explorer-7-ie7#comment-547 */145 z-index: 990; /** Important: keeps submenu's on top of other elements in IE7. See http://www.shawnpreisz.com/css/z-index-internet-explorer-7-ie7#comment-547 */ 146 146 } 147 147 -
trunk/web-app/js/advancedQueryResults.js
r1524 r1548 5 5 6 6 var oTable = paginatedTable.dataTable(); 7 var inputs = $('input ', oTable.fnGetNodes())7 var inputs = $('input[type=checkbox]', oTable.fnGetNodes()) 8 8 9 9 // If any of the inputs is checked, uncheck all. Otherwise, check all … … 31 31 32 32 var oTable = paginatedTable.dataTable(); 33 var inputs = $('input ', oTable.fnGetNodes())33 var inputs = $('input[type=checkbox]', oTable.fnGetNodes()) 34 34 35 35 // Is none checked, are all checked or are some checked … … 43 43 checkAll.attr( 'checked', numChecked > 0 ); 44 44 45 if( numChecked > 0 && numChecked < inputs.length - 1) {45 if( numChecked > 0 && numChecked < inputs.length ) { 46 46 checkAll.addClass( 'transparent' ); 47 47 } else {
Note: See TracChangeset
for help on using the changeset viewer.