Changeset 2073
- Timestamp:
- Oct 27, 2011, 4:30:19 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/visualize/index.gsp
r2072 r2073 51 51 <div class="topmenu_item_info">no study selected</div> 52 52 <img src="${fam.icon( name: 'bullet_arrow_down' )}" style="vertical-align: text-bottom; display: inline-block;"/> 53 <div class="formulier" style="display: block">53 <div class="formulier"> 54 54 <div class="menu_item_label_count">1</div><div class="menu_item_label">Study</div> 55 55 <p class="info">Select a study from the list below.</p> -
trunk/web-app/css/visualization.css
r2072 r2073 95 95 margin-bottom: 5px; 96 96 padding: 2%; 97 border: #006dba solid 1px;97 border: 1px solid #006dba; 98 98 background-color: white; 99 99 min-height: 60px; … … 177 177 width: 100%; 178 178 background-color: #D0DEF0; 179 border-bottom: #006dba solid 1px;179 border-bottom: 1px solid #006dba; 180 180 margin-top: 5px; 181 181 padding-top: 5px; … … 195 195 background-color: white; 196 196 cursor: pointer; 197 } 198 199 .topmenu_item_selected { 200 background-color: white; 201 border: 1px solid #006dba; 197 202 } 198 203 … … 217 222 font-size: 11px; 218 223 position: absolute; 219 top: 2 1px;220 left: 0px;224 top: 20px; 225 left: -1px; 221 226 display: none; 222 227 padding: 10px; 223 228 margin: 0px; 224 229 background-color: white; 225 border: #006dba double 1px;230 border: 1px solid #006dba; 226 231 z-index: 10; 227 232 } -
trunk/web-app/js/visualization.js
r2072 r2073 12 12 $(document).ready(function() { 13 13 14 openForm = $("#menu_study");14 toggleForm($("#menu_study"), "open"); 15 15 16 16 $(".topmenu_item").click( … … 62 62 $( "#menu_row, #menu_column" ).find("img.spinner").show(); 63 63 $( "#menu_study" ).find(".topmenu_item_info").html($( '#study').find( 'option:selected' ).text()); 64 clearSearch("menu_column, #menu_row"); 64 65 65 66 executeAjaxCall( "getFields", { … … 483 484 $(openForm).children('.formulier').hide(); 484 485 $(openForm).removeClass("topmenu_item_selected"); 486 if($(openForm).attr('id')=='menu_study') { 487 clearSearch('menu_study'); 488 } 485 489 openForm = null; 486 490 }
Note: See TracChangeset
for help on using the changeset viewer.