Changeset 13314 in main
- Timestamp:
- 03/05/17 12:46:24 (5 years ago)
- Location:
- trunk/ibisph-admin/src/main/webapp
- Files:
-
- 24 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ibisph-admin/src/main/webapp/WEB-INF/jsp/data_source/list.jsp
r13313 r13314 111 111 <th scope="col" class="Name" title="Internal name of the record (must be unique).">Name</th> 112 112 <th scope="col" class="Title">Title *</th> 113 <th scope="col" class="Text" title="Data source text to be displayed.">Text *</th>114 113 <th scope="col" class="SortOrder" title="Value used to determine how to order records (must be blank or numeric and can include decimal points).">Sort Order</th> 115 114 <th scope="col" class="Date" title="Date the record was last modified.">Modify Date</th> … … 135 134 <input type="text" name="title" maxlength="100" value="${dataSource.title}" ${setModified}/> 136 135 </td> 137 <td class="Text"><span>${dataSource.text}</span></td>138 136 <td class="SortOrder"> 139 137 <input type="text" name="sortOrder" maxlength="10" value="${dataSource.sortOrder}" ${setModified}/> -
trunk/ibisph-admin/src/main/webapp/WEB-INF/jsp/indicator/available_services.jsp
r13313 r13314 11 11 12 12 <%@ include file="../_head.jsp"%> 13 14 <style>15 #content textarea16 {17 min-width: 50em;18 }19 </style>20 13 21 14 <script language="Javascript"> -
trunk/ibisph-admin/src/main/webapp/WEB-INF/jsp/indicator/dataset/data_sources.jsp
r13313 r13314 125 125 </td> 126 126 127 <td class=" Title">127 <td class="Name"> 128 128 <c:if test="${userDetails.admin}"><a href="javascript:requestPage('edit/data_source/detail/${dataSource.name}.html');"></c:if> 129 129 ${dataSource.name} -
trunk/ibisph-admin/src/main/webapp/WEB-INF/jsp/indicator/dataset/dimensions.jsp
r13313 r13314 13 13 14 14 <style> 15 #content16 {17 min-height: 550px;18 }19 15 .TabbedContent 20 16 { 21 17 height: 500px; 22 }23 .TabbedContent .Tab > input:checked ~ .Container24 {25 width: 95%;26 18 } 27 19 </style> -
trunk/ibisph-admin/src/main/webapp/WEB-INF/jsp/indicator/dataset/list.jsp
r13313 r13314 11 11 12 12 <%@ include file="../../_head.jsp"%> 13 14 <style>15 #content16 {17 min-height: 675px;18 }19 </style>20 13 21 14 <script language="Javascript"> -
trunk/ibisph-admin/src/main/webapp/WEB-INF/jsp/indicator/dataset/records.jsp
r13313 r13314 14 14 <link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/css/ModalDialog.css"/> 15 15 <style> 16 #content17 {18 min-height: 625px;19 }20 21 16 #content form .ConstantDimensions select 22 17 { … … 300 295 301 296 <th scope="col" title="Measure name: ${dataset.measureName}">${measure.title}</th> 302 <th scope="col">Lower<br/> Confidence<br/> Value</th>303 <th scope="col">Upper<br/> Confidence<br/> Value</th>304 <th scope="col" >Numerator<br/>(no formatting)</th>305 <th scope="col" >Denominator<br/>(no formatting)</th>297 <th scope="col">Lower<br/> Limit<br/> Value</th> 298 <th scope="col">Upper<br/> Limit<br/> Value</th> 299 <th scope="col" title="Numerator (no formatting)">Numer- ator</th> 300 <th scope="col" title="Denominator (no formatting)">Denom- inator</th> 306 301 <th scope="col" class="ActiveFlag" title="Only active data values are published.">Active</th> 307 302 </thead></tr> … … 359 354 </td> 360 355 <td class="Number"> 361 <input size= 10type="text" name="denominator" maxlength="20" value="${datasetRecord.denominator}" ${inputControl} ${onChange}/>356 <input size=9 type="text" name="denominator" maxlength="20" value="${datasetRecord.denominator}" ${inputControl} ${onChange}/> 362 357 </td> 363 358 <td class="ActiveFlag"> -
trunk/ibisph-admin/src/main/webapp/WEB-INF/jsp/indicator/detail.jsp
r13313 r13314 18 18 { 19 19 min-height: 770px; 20 min-width: 875px; 20 21 } 21 22 .TabbedContent 22 23 { 23 24 min-height: 710px; 24 }25 .TabbedContent .Tab > input:checked ~ .Container26 {27 width: 100%;28 min-width: 1000px;29 25 } 30 26 </style> … … 220 216 <th scope="row" title="Basis for all indicator profile view chart/map titles."> 221 217 <label for="synopsis">Synopsis *</label> 218 <div id="synopsisCounter"></div> 222 219 </th> 223 220 <td class="Title" title="Core text used to generate this indicator's view chart/map titles"> … … 227 224 228 225 <tr> 229 <th scope="row" >226 <th scope="row" title="Suggested length, 25 or fewer words"> 230 227 <label for="definition">Definition *</label> 231 <div>(Suggested length, 25 or fewer words)</div> 232 <div id="definitionCounter"></div> 233 </th> 234 <td> 235 <textarea name="definition" id="definition" rows="4" maxlength="4000" ${inputControl} ${onChange}>${indicator.definition}</textarea> 228 <div id="definitionCounter">(Suggested length, 25 or fewer words)</div> 229 </th> 230 <td> 231 <textarea name="definition" id="definition" rows="3" maxlength="1000" ${inputControl} ${onChange}>${indicator.definition}</textarea> 236 232 </td> 237 233 </tr> -
trunk/ibisph-admin/src/main/webapp/WEB-INF/jsp/indicator/editors.jsp
r13313 r13314 17 17 18 18 <%@ include file="../_head.jsp"%> 19 <style>20 #content21 {22 min-height: 600px;23 }24 </style>25 19 26 20 <script language="Javascript"> -
trunk/ibisph-admin/src/main/webapp/WEB-INF/jsp/indicator/initiatives.jsp
r13313 r13314 19 19 table.Selection td.Label { text-align: right; } 20 20 table.Selection td.Label label { font-weight: bold; } 21 table.List .Description 22 { 23 max-width: 350px; 24 } 21 25 </style> 22 26 … … 104 108 <th scope="col" class="Selection" title="Controls which record is selected when editing associated detail.">Selection</th> 105 109 <th scope="col" class="Name" title="Internal name of the record (must be unique).">Title</th> 106 <th scope="col" class=" Title">Description</th>110 <th scope="col" class="Description">Description</th> 107 111 </tr> 108 112 … … 112 116 <input type="checkbox" name="initiativeTopicObjectiveName" value="${initiativeTopicObjective.name}" ${indicatorInitiativeTopicObjective[initiativeTopicObjective.name] != null ? "checked=\"checked\"" : ""} ${radioControl} ${onClick}/> 113 117 </td> 114 <td class=" Title">118 <td class="Name"> 115 119 <c:if test="${userDetails.admin}"><a href="javascript:requestPage('edit/initiative/topic/objective/detail/${initiativeTopicObjective.name}.html');"></c:if> 116 120 ${initiativeTopicObjective.title} 117 121 <c:if test="${userDetails.admin}"></a></c:if> 118 122 </td> 119 <td >${initiativeTopicObjective.description}</td>123 <td class="Description">${initiativeTopicObjective.description}</td> 120 124 </tr> 121 125 </c:forEach> -
trunk/ibisph-admin/src/main/webapp/WEB-INF/jsp/indicator/list.jsp
r13313 r13314 11 11 12 12 <%@ include file="../_head.jsp"%> 13 14 <style> 15 #page 16 { 17 min-width: 1100px; 18 } 19 </style> 13 20 14 21 <script language="Javascript"> -
trunk/ibisph-admin/src/main/webapp/WEB-INF/jsp/indicator/more_resources.jsp
r13313 r13314 11 11 12 12 <%@ include file="../_head.jsp"%> 13 14 <style>15 #content textarea16 {17 min-width: 50em;18 }19 </style>20 13 21 14 <script language="Javascript"> -
trunk/ibisph-admin/src/main/webapp/WEB-INF/jsp/indicator/topics.jsp
r13313 r13314 124 124 </td> 125 125 126 <td class=" Title">126 <td class="Name"> 127 127 <c:if test="${userDetails.admin}"><a href="javascript:requestPage('edit/topic/detail/${topic.name}.html');"></c:if> 128 128 ${topic.name} -
trunk/ibisph-admin/src/main/webapp/WEB-INF/jsp/indicator/view/datasets.jsp
r13313 r13314 11 11 12 12 <%@ include file="../../_head.jsp"%> 13 14 <style>15 #content16 {17 min-height: 675px;18 }19 </style>20 13 21 14 <script language="Javascript"> -
trunk/ibisph-admin/src/main/webapp/WEB-INF/jsp/indicator/view/detail.jsp
r13313 r13314 18 18 #content 19 19 { 20 min-height: 21 min-width: 850px;20 min-height: 630px; 21 min-width: 875px; 22 22 } 23 23 .TabbedContent 24 24 { 25 min-height: 550px; 26 } 27 .TabbedContent .Tab > input:checked ~ .Container 28 { 29 width: 95%; 25 min-height: 550px; 30 26 } 31 27 </style> -
trunk/ibisph-admin/src/main/webapp/WEB-INF/jsp/indicator/view/dimensions.jsp
r13313 r13314 20 20 { 21 21 height: 500px; 22 }23 .TabbedContent .Tab > input:checked ~ .Container24 {25 width: 95%;26 22 } 27 23 </style> -
trunk/ibisph-admin/src/main/webapp/WEB-INF/jsp/indicator/view/list.jsp
r13313 r13314 11 11 12 12 <%@ include file="../../_head.jsp"%> 13 14 <style>15 #content16 {17 min-height: 675px;18 }19 </style>20 13 21 14 <script language="Javascript"> -
trunk/ibisph-admin/src/main/webapp/WEB-INF/jsp/indicator/view/queries.jsp
r13313 r13314 13 13 14 14 <style> 15 #content16 {17 min-width: 960px;18 min-height: 525px;19 }20 15 table.List th Text 21 16 { -
trunk/ibisph-admin/src/main/webapp/WEB-INF/jsp/initiative/topic/list.jsp
r13313 r13314 84 84 <th scope="col" class="Selection" title="Controls which record is selected when editing associated detail.">Selection</th> 85 85 <th scope="col" title="Internal name of the record (must be unique).">Name</th> 86 <th scope="col" class="Title" style="width:100%">Title *</th>86 <th scope="col" class="Title">Title *</th> 87 87 <th scope="col" class="SortOrder" title="Value used to determine how to order records (must be blank or numeric and can include decimal points).">Sort Order</th> 88 88 <th scope="col" class="ActiveFlag" title="Controls if this item shows up in validation lists and if it is publishable.">Active</th> -
trunk/ibisph-admin/src/main/webapp/WEB-INF/jsp/user/authorities.jsp
r13313 r13314 68 68 <input type="checkbox" name="authorityName" value="${authority.name}" ${userAuthorityMap[authority.name] != null ? "checked=\"checked\"" : ""} onclick="setModified();"/> 69 69 </td> 70 <td class=" Title">70 <td class="Name"> 71 71 <a href="javascript:requestPage('edit/authority/detail/${authority.name}.html');">${authority.name}</a> 72 72 </td> -
trunk/ibisph-admin/src/main/webapp/WEB-INF/jsp/user/roles.jsp
r13313 r13314 78 78 <input type="checkbox" name="roleName" value="${role.name}" ${userRole[role.name] != null ? "checked=\"checked\"" : ""} onclick="setModified();"/> 79 79 </td> 80 <td class=" Title">80 <td class="Name"> 81 81 <!-- 82 82 <a href="javascript:requestPage('edit/role/detail/${role.name}.html');">${role.name}</a> -
trunk/ibisph-admin/src/main/webapp/css/TabbedContent.css
r13313 r13314 21 21 width: 100%; 22 22 height: 200px; 23 overflow: hidden; 23 /* overflow: hidden; 24 */ 24 25 } 25 26 .TabbedContent > .Tab -
trunk/ibisph-admin/src/main/webapp/css/_layout.css
r13313 r13314 33 33 { 34 34 min-width: 755px; 35 max-width: 1000px; 36 overflow: auto; 35 max-width: 1080px; 36 /* overflow: auto; 37 */ 37 38 margin: auto; /* centers block on page - whole point of this container */ 38 39 padding-top: 5px; … … 45 46 background: #003366 url('../image/header_top.gif') no-repeat top left; 46 47 height: 65px; 47 width: 100%;48 48 padding: 10px 0 0 0; 49 49 margin: 0; … … 95 95 padding: 0; 96 96 margin: 0; 97 width: 100%;97 /* width: 100%; 98 98 min-height: 400px; 99 99 overflow: hidden; 100 100 */ 101 101 -moz-border-radius: 6px 0px 6px 6px; 102 102 -webkit-border-radius: 6px 0px 6px 6px; … … 253 253 { 254 254 display: table-cell; 255 /* 255 256 max-width: calc(99% - 160px); 256 257 width: calc(99% - 160px); 258 min-width: 600px; 259 */ 257 260 padding: 2px 5px 1em 1em; 258 261 vertical-align: top; … … 268 271 #content .Sections table 269 272 { 273 /* 270 274 table-layout: fixed; 271 275 width: inherit; 276 */ 272 277 } 273 278 #content .Sections table tbody 274 279 { 280 /* 275 281 display: block; 276 282 overflow-x: auto; 277 } 278 279 280 #content .Sections table .TabbedContent 281 { 282 width: inherit; 283 } 283 */ 284 } 285 286 287 #content .Sections .TabbedContent 288 { 289 width: 100%; 290 /* 291 overflow: auto; 292 */ 293 } 294 #content .Sections .TabbedContent .Tab > input:checked ~ .Container 295 { 296 /* 297 width: 100%; 298 */ 299 max-width: 860px; 300 } 301 302 #content .Sections .TabbedContent .Tab > input:checked ~ .Container .Detail 303 { 304 width: 100%; 305 max-width: 850px; 306 } 307 308 #content .Sections .TabbedContent .Tab > input:checked ~ .Container table.Detail tbody 309 { 310 overflow: hidden; 311 } 312 #content .Sections .TabbedContent .Tab > input:checked ~ .Container table.Detail td 313 { 314 max-width: 690px; 315 } 316 317 318 319 320 321 322 284 323 285 324 -
trunk/ibisph-admin/src/main/webapp/css/_table.css
r13313 r13314 42 42 background-color: white; 43 43 width: 100%; 44 min-width: 860px; 44 45 } 45 46 … … 70 71 min-width: 150px; 71 72 } 72 table.List .Title { min-width: 200px; } 73 table.List .Title 74 { 75 width: 100%; 76 } 73 77 table.List .Text 74 78 { … … 77 81 } 78 82 table.List .Description 79 { 80 width: auto; 83 { 81 84 max-width: 200px; 82 85 } … … 138 141 background: #eeeeee; 139 142 width: 100%; 140 display: block;141 143 /* IE has a problem with this. one way is to: cellspacing="10" in the table tag. 142 144 another way is to embed another table... Oddly, NN handles as it should. … … 148 150 table.Detail th 149 151 { 150 width: 25%;151 m in-width: 125px;152 min-width: 100px; 153 max-width: 150px; 152 154 font-weight: normal; 153 155 padding: 4px 5px 3px 5px; … … 179 181 table.Detail td 180 182 { 181 padding: 3px 15px 3px 5px; 182 width: 70%; 183 min-width: 700px; 183 padding: 3px 0px 3px 5px; 184 width: 100%; 184 185 vertical-align: bottom; 185 186 } … … 194 195 table.Detail input[type="text"] 195 196 { 196 width: 99%; 197 } 197 width: calc(100% - 30px); 198 min-width: 50em; 199 } 200 198 201 table.Detail input#footnoteCode {width: 7em;} 199 202 table.Detail input#sortOrder {width: 4em;} -
trunk/ibisph-admin/src/main/webapp/css/stylesheet.css
r13313 r13314 48 48 @import url('ExpandableList.css'); 49 49 @import url('VerticalMenu-ExpandableList.css'); 50 @import url("HorizontalTabList.css");51 50 52 51
Note: See TracChangeset
for help on using the changeset viewer.