Changeset 48
- Timestamp:
- Feb 2, 2009, 9:06:43 PM (16 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/grails-app/views/layouts/main.gsp
r44 r48 26 26 <g:render template="/adminmenubar" /> 27 27 </div> 28 <g:layoutBody /> 28 <!-- Body wrapper div for IE --> 29 <div style="text-align: center; width: 980px"> 30 <g:layoutBody /> 31 </div> 29 32 </div> 30 33 <div id="bottom"> -
trunk/src/grails-app/views/person/admin.gsp
r40 r48 1 1 <html> 2 <head>3 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>4 <meta name="layout" content="main" />5 <title>Admin</title>6 </head>2 <head> 3 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> 4 <meta name="layout" content="main" /> 5 <title>Admin</title> 6 </head> 7 7 <body> 8 8 <div class="nav"> 9 <span class="menuButton"> 10 <a class="home" href="${createLinkTo(dir:'')}">Home</a> 11 </span> 9 <span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span> 10 <span class="menuButton"><g:link class="create" action="create">New Person</g:link></span> 12 11 </div> 13 12 <div class="body"> 14 <h1 style="margin-left:20px;">Welcome to Admin</h1> 15 <p style="margin-left:20px;width:80%"> 16 Home 17 </p> 18 <div class="dialog" style="margin-left:20px;width:60%;"> 13 <h1>Welcome to Admin</h1> 14 <br/> 15 <div class="dialog"> 19 16 <ul> 20 17 <g:each var="c" in="${grailsApplication.controllerClasses}"> -
trunk/src/grails-app/views/person/list.gsp
r40 r48 1 2 3 1 <html> 4 2 <head> -
trunk/src/web-app/css/public.css
r46 r48 14 14 15 15 body { 16 text-align: center; 17 width: 980px 16 18 background: #fff; 17 19 color: #333; … … 102 104 103 105 .nav { 106 text-align: centre; 104 107 background: url("../images/linkPanel_long.png") top no-repeat; 105 108 /*border: 1px solid #ccc; 106 109 border-style: solid none solid none;*/ 107 padding: 15px 20px 15px 20px;108 width: 650px;110 padding: 15px 0px 0px 0px; 111 width: 980px; 109 112 height: 40px; 110 113 }
Note: See TracChangeset
for help on using the changeset viewer.