Changeset 6610
- Timestamp:
- Nov 20, 2014, 12:48:06 PM (8 years ago)
- Location:
- trunk/www
- Files:
-
- 5 added
- 5 deleted
- 36 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/admin/clients/help/edit_help.jsp
r6295 r6610 266 266 <th>Help text</th> 267 267 <td colspan="2" style="padding: 0px;"> 268 <tbl:toolbar subclass="bottomborder topborder ">268 <tbl:toolbar subclass="bottomborder topborder bg-filled-50"> 269 269 <tbl:button 270 270 subclass="auto-init" … … 357 357 <th class="subprompt"></th> 358 358 <td> 359 <textarea class="text" rows=" 14" name="description" id="description"359 <textarea class="text" rows="8" name="description" id="description" 360 360 ><%=HTML.encodeTags(help == null ? cc.getPropertyValue("description") : help.getDescription())%></textarea> 361 361 </td> -
trunk/www/admin/users/edit_default_membership.jsp
r6387 r6610 125 125 <input type="hidden" name="cmd" value="UpdateDefaultMembership"> 126 126 127 <div class="content filled"> 128 <div> 127 <div class="content"> 129 128 <table class="fullform input100 smaller bottomborder"> 130 129 <tr class="dynamic"> … … 179 178 /> 180 179 </base:buttongroup> 180 <div class="messagecontainer note"> 181 The selected roles and groups will automatically be assigned to new users. 182 </div> 181 183 </td> 182 184 </tr> … … 186 188 </tr> 187 189 </table> 188 </div>189 190 <div class="padded">191 The selected roles and groups will automatically be assigned to new users.192 </div>193 190 </div> 194 191 </form> -
trunk/www/common/annotations/annotate.js
r6389 r6610 441 441 if (annotation.values.length == 0) 442 442 { 443 icon = annotation.required ? 'required_novalues. gif' : 'notrequired_novalues.gif';443 icon = annotation.required ? 'required_novalues.png' : 'notrequired_novalues.png'; 444 444 } 445 445 else 446 446 { 447 icon = annotation.required ? 'required_values. gif' : 'notrequired_values.gif';447 icon = annotation.required ? 'required_values.png' : 'notrequired_values.png'; 448 448 } 449 449 var img = Doc.element('icon.'+annotation.id); -
trunk/www/common/annotations/annotate.jsp
r6607 r6610 372 372 if (protocolParameters.contains(at)) icon += "<img src=\"../../images/parameter.png\" alt=\"\">"; 373 373 %> 374 <div class="param " id="prompt.<%=at.getId()%>" title="<%=label%>" data-annotation-type-id="<%=at.getId()%>">375 <span class="icon"><img id="icon.<%=at.getId()%>" src="../../images/notrequired_novalues. gif" alt=""></span>374 <div class="param interactable" id="prompt.<%=at.getId()%>" title="<%=label%>" data-annotation-type-id="<%=at.getId()%>"> 375 <span class="icon"><img id="icon.<%=at.getId()%>" src="../../images/notrequired_novalues.png" alt=""></span> 376 376 <span class="label"><%=icon%><%=label%></span> 377 377 </div> … … 383 383 <div class="absolutefull topborder" style="top: auto; bottom: 0px; height: 3em;"> 384 384 <table style="height: 100%; margin:auto;"><tr><td> 385 <base:icon image="hasvalues. gif" /> = has value(s)<br>385 <base:icon image="hasvalues.png" /> = has value(s)<br> 386 386 <base:icon image="parameter.png" /> = protocol parameter 387 387 </td></tr></table> -
trunk/www/common/expression_builder.jsp
r6607 r6610 376 376 <tr style="height: 100%;"> 377 377 <td> 378 <textarea class="autoh ight" name="expression" rows="16"></textarea>378 <textarea class="autoheight" name="expression" rows="16"></textarea> 379 379 </td> 380 380 </tr> -
trunk/www/common/plugin/configure.js
r6608 r6610 76 76 if (pp.values.length > 0) 77 77 { 78 icon = pp.nullable ? 'notrequired_values. gif' : 'required_values.gif';78 icon = pp.nullable ? 'notrequired_values.png' : 'required_values.png'; 79 79 } 80 80 else 81 81 { 82 icon = pp.nullable ? 'notrequired_novalues. gif' : 'required_novalues.gif';82 icon = pp.nullable ? 'notrequired_novalues.png' : 'required_novalues.png'; 83 83 } 84 84 … … 286 286 if (parameter.values.length == 0) 287 287 { 288 img += parameter.nullable ? 'notrequired_novalues. gif' : 'required_novalues.gif';289 } 290 else 291 { 292 img += parameter.nullable ? 'notrequired_values. gif' : 'required_values.gif';288 img += parameter.nullable ? 'notrequired_novalues.png' : 'required_novalues.png'; 289 } 290 else 291 { 292 img += parameter.nullable ? 'notrequired_values.png' : 'required_values.png'; 293 293 } 294 294 icon.src = img; -
trunk/www/common/plugin/configure.jsp
r6607 r6610 308 308 <div class="absolutefull topborder" style="top: auto; bottom: 0px; height: 2em;"> 309 309 <table style="height: 100%; margin:auto;"><tr><td> 310 <base:icon image="hasvalues. gif" />= has value(s), <base:icon image="required.png" />= required310 <base:icon image="hasvalues.png" />= has value(s), <base:icon image="required.png" />= required 311 311 </td></tr></table> 312 312 </div> -
trunk/www/common/zoom.jsp
r6607 r6610 54 54 <form name="zoom"> 55 55 56 <div class="content ">56 <div class="content bg-filled-50"> 57 57 <% 58 58 if (useToolbar) 59 59 { 60 60 %> 61 <div class="absolutefull filled" style="height: 2em;">61 <div class="absolutefull" style="height: 2em;"> 62 62 <m:menu 63 63 id="listtype" … … 197 197 /> 198 198 </m:menu> 199 <tbl:toolbar subclass="bottomborder bg-filled-50">199 <tbl:toolbar subclass="bottomborder"> 200 200 <tbl:button 201 201 subclass="auto-init" … … 288 288 %> 289 289 <div class="absolutefull" style="<%=useToolbar ? "top: 2em;" : ""%>"> 290 <table class="fullcc input100 b g-filled-50 bottomborder"><tr><td style="padding: 5px;">291 <textarea class="autoh ight" id="zoom" name="zoom" rows="30"290 <table class="fullcc input100 bottomborder"><tr><td style="padding: 5px;"> 291 <textarea class="autoheight" id="zoom" name="zoom" rows="20" 292 292 <%=disabled ? "disabled" : ""%>></textarea> 293 293 </td></tr></table> -
trunk/www/exception/duplicate_wizard.jsp
r6309 r6610 53 53 <h1>Another plug-in configuration wizard is open</h1> 54 54 55 <div class="content filledbottomborder">55 <div class="content bg-filled-50 bottomborder"> 56 56 57 57 <div class="messagecontainer error"> -
trunk/www/exception/invalid_data.jsp
r6309 r6610 63 63 <h1><%=exceptionClassName + " on page "+request.getAttribute("javax.servlet.error.request_uri")%></h1> 64 64 65 <div class="content filled bottomborder"> 66 <div class="messagecontainer error"> 65 <div class="content bg-filled-50 bottomborder"> 66 <table style="margin: auto; height: 100%;"> 67 <tr><td> 68 <div class="messagecontainer error"> 67 69 <%=ex.getMessage()%> 68 </div> 70 </div> 71 </td></tr> 72 </table> 69 73 </div> 70 74 -
trunk/www/exception/not_logged_in.jsp
r6426 r6610 114 114 } 115 115 %> 116 <table style="width: 100%; ">116 <table style="width: 100%; margin-top: 1em;"> 117 117 <tr> 118 <td style="background-color: #000000; border-radius: 4px 0px 0px 4px; width: 125px;"><img src="<%=root%>images/baselogo.png" alt="BASElogo"></td>118 <td class="base-logo"></td> 119 119 <td style="width: 515px;"> 120 120 <div id="loginform"> 121 121 <table style="width: 100%;"> 122 122 <tr <%=valueIfNotNull("class=\"", loginField.getClazz(), "\"")%> id="login-row"> 123 <th ><%=loginField.getPrompt() %></th>123 <th class="bg-filled-100"><%=loginField.getPrompt() %></th> 124 124 <td colspan="2"><input class="text" name="login" id="login" 125 125 type="<%=loginField.hasHiddenCharacters() ? "password" : "text"%>" … … 134 134 </tr> 135 135 <tr <%=valueIfNotNull("class=\"", passwordField.getClazz(), "\"")%> id="password-row"> 136 <th ><%=passwordField.getPrompt() %></th>136 <th class="bg-filled-100"><%=passwordField.getPrompt() %></th> 137 137 <td><input class="text" name="password" id="password" 138 138 type="<%=passwordField.hasHiddenCharacters() ? "password" : "text"%>" … … 151 151 </tr> 152 152 <tr> 153 <th ></th>153 <th class="bg-filled-100"></th> 154 154 <td colspan="2"> 155 155 <% … … 179 179 </table> 180 180 181 <div class="messagecontainer error" id="timeout" style="display: none; ">181 <div class="messagecontainer error" id="timeout" style="display: none; margin-top: 1em;"> 182 182 <b>Not logged in</b><br> 183 183 You have been automatically logged out due to inactivity or because the -
trunk/www/exception/permission_denied.jsp
r6309 r6610 64 64 <h1><%=exceptionClassName + " on page "+request.getAttribute("javax.servlet.error.request_uri")%></h1> 65 65 66 <div class="content filled bottomborder"> 67 <div class="messagecontainer error"> 66 <div class="content bg-filled-50 bottomborder"> 67 <table style="margin: auto; height: 100%;"> 68 <tr><td> 69 <div class="messagecontainer error"> 68 70 <%=ex.getMessage()%> 69 </div> 71 </div> 72 </td></tr> 73 </table> 70 74 </div> 71 75 -
trunk/www/exception/web.jsp
r6309 r6610 56 56 <h1><%=ex.getTitle()%></h1> 57 57 58 <div class="content filledbottomborder">58 <div class="content bg-filled-50 bottomborder"> 59 59 <table style="margin: auto; height: 100%;"> 60 60 <tr><td> -
trunk/www/filemanager/files/list_files.jsp
r6605 r6610 284 284 285 285 </m:menu> 286 <div id="main" class="absolutefull auto-init" data-auto-init="drag-support">286 <div id="main" class="absolutefull topborder auto-init" data-auto-init="drag-support"> 287 287 <div id="page-data" class="datacontainer" 288 288 data-is-search="<%=isSearch ? 1 : 0 %>" … … 301 301 item="<%=itemType%>" 302 302 subcontext="<%=subcontext%>" 303 subclass="fulltable topborder"303 subclass="fulltable" 304 304 > 305 305 <tbl:hidden … … 535 535 /> 536 536 <div class="panelgroup bg-filled-50 bottomborder"> 537 <tbl:toolbar subclass="bottomborder bg-filled-50">537 <tbl:toolbar subclass="bottomborder"> 538 538 <tbl:button 539 539 id="btnNewDirectory" … … 641 641 <tbl:panel visible="<%=!isSearch%>"> 642 642 <tbl:presetselector /> 643 < %=currentPath%>643 <div style="padding-top: 4px;"><%=currentPath%></div> 644 644 </tbl:panel> 645 645 <tbl:panel visible="<%=isSearch%>"> … … 1037 1037 { 1038 1038 %> 1039 <tbl:panel clazz="messagepanel" visible="<%=!isSearch || hasFilter%>">1039 <tbl:panel subclass="bg-filled-50" visible="<%=!isSearch || hasFilter%>"> 1040 1040 <div class="messagecontainer note"> 1041 1041 No files or directories were found 1042 1042 </div> 1043 1043 </tbl:panel> 1044 <tbl:panel clazz="messagepanel" visible="<%=isSearch && !hasFilter%>">1044 <tbl:panel subclass="bg-filled-50" visible="<%=isSearch && !hasFilter%>"> 1045 1045 <div class="messagecontainer note"> 1046 1046 Please specify a search condition! -
trunk/www/filemanager/frameset.jsp
r6606 r6610 66 66 <base:head scripts="dragdrop.js,~frameset.js" /> 67 67 <base:body> 68 <div class="absolutefull auto-init topborder" data-auto-init="drag-support">69 <div id="f1" class="absolutefull " style="width: 245px;"><iframe name="directories"68 <div class="absolutefull auto-init" data-auto-init="drag-support"> 69 <div id="f1" class="absolutefull topborder" style="width: 245px;"><iframe name="directories" 70 70 class="absolutefull" 71 71 src="directories/list_directories.jsp?ID=<%=ID%>&mode=<%=mode%>&sync=<%=syncWithDirectory%>" … … 73 73 ></iframe></div> 74 74 75 <div id="d1" class="absolutefull bg-filled-100 leftborder rightborder "75 <div id="d1" class="absolutefull bg-filled-100 leftborder rightborder topborder" 76 76 style="left: 245px; width: 5px; cursor: col-resize; z-index: 99;" 77 77 ></div> -
trunk/www/filemanager/wait.jsp
r6607 r6610 29 29 <base:head /> 30 30 <base:body> 31 <div class="bg-filled-50 absolutefull ">31 <div class="bg-filled-50 absolutefull topborder"> 32 32 <table style="margin: auto; height: 100%;"><tr><td> 33 33 <b>Please wait. The files are loading...</b> -
trunk/www/footnote.js
r6576 r6610 98 98 footnote.showBroadcastMessage = function() 99 99 { 100 Dialogs.openPopup(App.getRoot()+'info/broadcast.jsp', 'BroadcastMessage', 450, 300);100 Dialogs.openPopup(App.getRoot()+'info/broadcast.jsp', 'BroadcastMessage', 510, 340); 101 101 } 102 102 -
trunk/www/footnote.jsp
r6576 r6610 62 62 <base:head scripts="~footnote.js" styles="login.css" /> 63 63 <base:body> 64 <div class="footer ">64 <div class="footer bg-filled-100"> 65 65 <table style="width: 100%; height: 100%;"><tr><td> 66 66 -
trunk/www/include/scripts/main-2.js
r6608 r6610 4428 4428 if (overflow.getOverflowMethod() == 'click') 4429 4429 { 4430 overflow.checkAndFixAll();4430 setTimeout(overflow.checkAndFixAll, 200); 4431 4431 } 4432 4432 }; -
trunk/www/include/scripts/menu.js
r6415 r6610 126 126 var pos = Doc.getElementPosition(menuItem); 127 127 var vertical = Data.int(menuDiv, 'vertical'); 128 var dx = vertical ? pos.width : 0; // place submenu to the right of the parent menu128 var dx = vertical ? pos.width : -1; // place submenu to the right of the parent menu 129 129 var dy = vertical ? 0 : pos.height; // place submenu below the parent menu 130 130 subMenu.style.left = (pos.left+dx)+'px'; -
trunk/www/include/styles/headertabcontrol.css
r6603 r6610 97 97 } 98 98 99 /* Revert to default for the active tab */ 100 .tabsattop .tab.active:hover, .tabsattop .tab.active:focus 101 { 102 cursor: auto; 103 border-width: 2px 1px 1px 1px; 104 padding: 1px 6px 2px 4px; 105 } 99 106 100 107 /* Add bottom border on tabspace */ -
trunk/www/include/styles/help.css
r6178 r6610 37 37 { 38 38 font-weight: bold; 39 border: 1px solid #A 8A8A8;39 border: 1px solid #A0A0A0; 40 40 border-radius: 4px; 41 41 padding: 2px; 42 background : #E8E8E8;42 background-color: #E8E8E8; 43 43 line-height: 1.75em; 44 44 white-space: nowrap; … … 104 104 background-color: #F8F8E0; 105 105 border-radius: 8px; 106 box-shadow: 2px 2px 4px #A0A0A0;107 106 } 108 107 .helptext .title -
trunk/www/include/styles/login.css
r6603 r6610 45 45 #loginform 46 46 { 47 border : 1px solid #A0A0A0;47 border-width: 1px 1px 1px 0; 48 48 width: 100%; 49 49 border-radius: 0px 4px 4px 0px; … … 57 57 #loginform > table > tbody > tr > th 58 58 { 59 background: #E8E8E8;60 59 font-weight: bold; 61 60 white-space: nowrap; 62 border-top: 1px dotted #A0A0A0; 63 border-right: 1px solid #A0A0A0; 61 border-top-width: 1px; 62 border-top-style: dotted; 63 border-right-width: 1px; 64 64 width: 10em; 65 65 text-align: right; … … 68 68 #loginform > table > tbody > tr:first-child > th, #loginform > table > tbody > tr > th.subprompt 69 69 { 70 border-top : 0px;70 border-top-width: 0; 71 71 } 72 72 … … 74 74 { 75 75 width: 15em; 76 } 77 78 .base-logo 79 { 80 border-radius: 4px 0px 0px 4px; 81 background-color: #000000; 82 background-image: url('../../images/baselogo.png'); 83 background-repeat: no-repeat; 84 background-position: 50%; 76 85 } 77 86 … … 88 97 { 89 98 margin-top: 2px; 90 border-bottom: 1px dotted #A0A0A0; 99 border-bottom-width: 1px; 100 border-bottom-style: dotted; 91 101 padding-bottom: 2px; 92 102 } … … 116 126 left: 0; 117 127 right: 0; 118 border-top: 1px solid #A0A0A0; 119 background: #E8E8E8; 128 border-top-width: 1px; 120 129 padding: 4px 8px 4px 8px;; 121 130 } -
trunk/www/include/styles/long_texts.css
r5977 r6610 37 37 div.constrained.unchecked 38 38 { 39 border-right: 2px dotted #666666; 39 border-right-width: 3px; 40 border-right-style: dotted; 40 41 } 41 42 42 43 div.constrained.overflowed 43 44 { 44 border-right: 2px solid #666666; 45 border-right-width: 3px; 46 border-right-style: solid; 45 47 } 46 48 -
trunk/www/include/styles/main.css
r6608 r6610 531 531 532 532 /* Dynamically resize textarea, should be "close to" 100% but must be lower due to padding */ 533 textarea.autoh ight533 textarea.autoheight 534 534 { 535 535 height: 97%; 536 height: calc(100% - 6px); 536 537 } 537 538 -
trunk/www/include/styles/popup.css
r6607 r6610 92 92 text-align: center; 93 93 /* needed for scrollbars to appear if content is overflowing */ 94 min-height: 100px; 95 xbackground: #E8E8E8; 96 xborder-bottom: 1px solid #A0A0A0; 94 min-height: 100px; 97 95 } 98 96 -
trunk/www/include/styles/table.css
r6608 r6610 45 45 } 46 46 47 .itemlist div.messagepanel 48 { 49 padding: 1px 4px 2px 6px; 50 xbackground: #E8E8E8; 51 } 52 53 /* Container <div> for multiple panels */ 54 .itemlist div.panelgroup 55 { 56 xbackground: #E8E8E8; 57 xborder-bottom-width: 1px; 58 } 47 .itemlist div.messagecontainer 48 { 49 padding: 0.5em 1em 0.5em 1em; 50 } 51 59 52 60 53 /* Float <div>:s to left */ … … 64 57 border-right-width: 1px; 65 58 padding: 2px 4px 2px 4px; 59 } 60 61 .itemlist div.panelgroup div.panel > div:last-child 62 { 63 border-right-width: 0; 66 64 } 67 65 … … 275 273 border-top-width: 0; 276 274 border-bottom-width: 1px; 277 xbackground: #E8E8E8;278 275 } 279 276 … … 281 278 { 282 279 border-top: 0; 283 }284 285 .fulltable div.data286 {287 xborder: 0px !important;288 280 } 289 281 -
trunk/www/info/about.jsp
r6520 r6610 73 73 active="<%=activePage%>" id="about" position="bottom" remember="<%=activePage == null %>"> 74 74 <t:tab id="about" title="About"> 75 <div class="padded ">75 <div class="padded bg-filled-50 absolutefull"> 76 76 <%=Values.getString(aboutServer, "")%> 77 77 <p> … … 149 149 150 150 <t:tab id="license" title="License"> 151 <div style="background: #FFFFFF; padding: 5px;">151 <div style="background: #FFFFFF; color: #000000; padding: 5px;"> 152 152 <h3 style="text-align: center;">GNU GENERAL PUBLIC LICENSE</h3> 153 153 … … 826 826 </t:tab> 827 827 <t:tab id="3rdparty" title="3rd-party software"> 828 <div class="padded ">828 <div class="padded bg-filled-100 absolutefull" style="height: 2.5em;"> 829 829 BASE is using other software/material developed by: 830 830 </div> 831 <div style="position: absolute; top: 2em; bottom: 0em; left: 0em; right: 0em;">832 <table class="fullform " style="border-top: 1px solid #A0A0A0;">831 <div class="absolutefull" style="top: 2.5em;"> 832 <table class="fullform topborder"> 833 833 <tr> 834 834 <th>The Hibernate team</th> -
trunk/www/info/broadcast.jsp
r6520 r6610 40 40 %> 41 41 <base:page type="popup" title="<%=title%>"> 42 <base:head scripts="~info.js 42 <base:head scripts="~info.js"/> 43 43 <base:body data-read-only="1"> 44 44 <h1><%=HTML.encodeTags(title)%></h1> 45 45 46 <div class="content filled">46 <div class="content bg-filled-50 bottomborder"> 47 47 <div class="absolutefull" style="top: 8px; bottom: 3em; left: 8px; right: 8px;"> 48 48 <%=HTML.niceFormat(message)%> -
trunk/www/info/forgot_password.jsp
r6520 r6610 47 47 <h1>Forgot your password?</h1> 48 48 49 <div class="content filled">49 <div class="content bg-filled-50 bottomborder"> 50 50 <div class="absolutefull" style="top: 8px; bottom: 3em; left: 8px; right: 8px;"> 51 51 <%=forgotPassword%> -
trunk/www/info/get_account.jsp
r6520 r6610 47 47 <h1>Get an account</h1> 48 48 49 <div class="content filled">49 <div class="content bg-filled-50 bottomborder"> 50 50 <div class="absolutefull" style="top: 8px; bottom: 3em; left: 8px; right: 8px;"> 51 51 <%=getAccount%> -
trunk/www/lims/arraydesigns/view_design.jsp
r6605 r6610 504 504 505 505 <t:tab id="features" title="Features" visible="<%=design.getNumDbFeatures() > 0%>"> 506 <div class=" filledabsolutefull">506 <div class="bg-filled-50 absolutefull"> 507 507 <table style="margin: auto; height: 100%;"><tr><td> 508 508 <b>Please wait. The features information is loading...</b> -
trunk/www/lims/arrayslides/paste_multiple.jsp
r6607 r6610 74 74 <div class="absolutefull" style="top: 3.5em;"> 75 75 <table class="fullcc input100"><tr><td style="padding: 4px;"> 76 <textarea class="autoh ight" rows="20" name="text"></textarea>76 <textarea class="autoheight" rows="20" name="text"></textarea> 77 77 </td></tr></table> 78 78 </div> -
trunk/www/main.jsp
r6426 r6610 128 128 { 129 129 %> 130 <div class="messagecontainer error" ><%=error%></div>131 <% 132 } 133 %> 134 <table style="width: 100%; ">130 <div class="messagecontainer error" style="margin-top: 1em;"><%=error%></div> 131 <% 132 } 133 %> 134 <table style="width: 100%; margin-top: 1em;"> 135 135 <tr> 136 <td style="background-color: #000000; border-radius: 4px 0px 0px 4px; width: 125px;"><img src="images/baselogo.png" alt="BASElogo"></td>136 <td class="base-logo"></td> 137 137 <td style="width: 515px;"> 138 138 <div id="loginform"> 139 139 <table style="width: 100%;"> 140 140 <tr <%=valueIfNotNull("class=\"", loginField.getClazz(), "\"")%> id="login-row"> 141 <th ><%=loginField.getPrompt() %></th>141 <th class="bg-filled-100"><%=loginField.getPrompt() %></th> 142 142 <td colspan="2"><input class="text" name="login" id="login" 143 143 type="<%=loginField.hasHiddenCharacters() ? "password" : "text"%>" … … 153 153 </tr> 154 154 <tr <%=valueIfNotNull("class=\"", passwordField.getClazz(), "\"")%> id="password-row"> 155 <th ><%=passwordField.getPrompt() %></th>155 <th class="bg-filled-100"><%=passwordField.getPrompt() %></th> 156 156 <td><input class="text" name="password" id="password" 157 157 type="<%=passwordField.hasHiddenCharacters() ? "password" : "text"%>" … … 170 170 </tr> 171 171 <tr> 172 <th class=" subprompt"></th>172 <th class="bg-filled-100 subprompt"></th> 173 173 <td colspan="2"> 174 174 <% -
trunk/www/my_base/projects/edit_project.jsp
r6320 r6610 321 321 322 322 <t:tab id="members" title="Members" helpid="project.edit.members"> 323 324 <table style="width: 100%; " class="filled">323 324 <table style="width: 100%; height: 100%;" class="bg-filled-50"> 325 325 <tr> 326 326 <td class="padded" style="width: 50%;"><b>Members</b></td> 327 <td class="padded" style="width: 20%;"><b>Permissions</b></td>327 <td class="padded" style="width: 30%;"><b>Permissions</b></td> 328 328 <td></td> 329 329 </tr> … … 334 334 data-auto-init="link-container" 335 335 data-initial-items="<%=HTML.encodeTags(jsonMembers.toJSONString()) %>" 336 size= 16 multiple style="width: 100%;">336 size="13" multiple style="width: calc(100% - 10px);"> 337 337 </select> 338 338 </td> … … 403 403 data-auto-init="link-container" 404 404 data-initial-items="<%=HTML.encodeTags(jsonDefaultItems.toJSONString()) %>" 405 size="1 6" multiple style="width: 100%;">405 size="13" multiple style="width: calc(100% - 10px);"> 406 406 </select> 407 407 </td> 408 <td style="width: 1 3em;">408 <td style="width: 14em;"> 409 409 <base:buttongroup vertical="true" style="width: 12em;"> 410 410 <base:button -
trunk/www/views/rawbioassays/edit_spotimages.jsp
r6314 r6610 117 117 <input type="hidden" name="cmd" value="CreateSpotImages"> 118 118 119 <div class="content filledbottomborder">119 <div class="content bottomborder"> 120 120 <table class="fullform input100"> 121 121 <tbody class="sectionheader">
Note: See TracChangeset
for help on using the changeset viewer.