- Timestamp:
- 11 Jan 2012, 22:51:42 (13 years ago)
- Location:
- main/waeup.sirp/branches/henrik-bootstrap/src/waeup/sirp/browser
- Files:
-
- 1 added
- 1 deleted
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/branches/henrik-bootstrap/src/waeup/sirp/browser/layout.py
r7448 r7450 52 52 default_primary_nav_template.__grok_name__ = 'default_primary_nav' 53 53 54 55 54 class action(grok.action): 56 55 -
main/waeup.sirp/branches/henrik-bootstrap/src/waeup/sirp/browser/resources.py
r7443 r7450 252 252 waeup_sirp, 'bootstrap.min.css') 253 253 254 dropdown = ResourceInclusion( 255 waeup_sirp, 'bootstrap-dropdown.js', 256 depends=[jquery]) 257 254 258 #: Register basic SIRP CSS (which is based on ``bootstrap.min.css`` and ``base`` 255 259 #: as a resource. 256 260 waeup_base_css = ResourceInclusion( 257 261 waeup_sirp, 'waeup-base.css', 258 depends=[ bootstrap_min, base])262 depends=[dropdown,bootstrap_min, base]) 259 263 260 264 #: The red SIRP theme registered as a resource. -
main/waeup.sirp/branches/henrik-bootstrap/src/waeup/sirp/browser/static/bootstrap.min.css
r7442 r7450 1335 1335 height: 0; 1336 1336 display: inline-block; 1337 content: "↓ 1338 "; 1337 content: "↓"; 1339 1338 text-indent: -99999px; 1340 1339 vertical-align: top; -
main/waeup.sirp/branches/henrik-bootstrap/src/waeup/sirp/browser/static/mobile.css
r7449 r7450 1 1 .container { 2 width: 4 20px;2 width: 480px; 3 3 } 4 4 5 5 body { 6 padding-top: 120px;6 padding-top: 60px; 7 7 } 8 9 select { 10 width: 60px; 11 } 12 13 .dataTables_length { 14 float: left; 15 width: 40%; 16 } 17 18 .dataTables_filter { 19 float: right; 20 text-align: right; 21 width: 60%; 22 } -
main/waeup.sirp/branches/henrik-bootstrap/src/waeup/sirp/browser/static/waeup-base.css
r7449 r7450 9 9 body { 10 10 padding-top: 60px; 11 background-color: #EEEEEE; 12 } 13 14 .content { 15 background-color: #FFFFFF; 16 margin-left: -20px; 17 margin-right: -20px; 18 padding-bottom: 20px; 19 padding-left: 20px; 20 padding-right: 20px; 21 padding-top: 20px; 22 border-top-left-radius: 4px; 23 border-top-right-radius: 4px; 24 } 25 26 .well { 27 background-color: #FFFFFF; 28 } 29 30 .breadcrumb { 31 background-color: #FFFFFF; 32 background-image: None; 33 border: 0px; 11 34 } 12 35 … … 40 63 } 41 64 42 table.display{43 margin-top: 25px;65 .dataTables_filter { 66 margin-bottom: 20px; 44 67 } 45 68 46 69 /* SIRP stuff */ 70 71 .container { 72 width: 700px; 73 } 74 75 .actionbar { 76 margin-bottom: 20px; 77 } 47 78 48 79 .error { -
main/waeup.sirp/branches/henrik-bootstrap/src/waeup/sirp/browser/templates/actionbutton.pt
r7442 r7450 1 <a class="btn " tal:condition="viewlet/target_url"1 <a class="btn actionbar" tal:condition="viewlet/target_url" 2 2 tal:attributes="href viewlet/target_url"> 3 3 <img src="" alt="edit" -
main/waeup.sirp/branches/henrik-bootstrap/src/waeup/sirp/browser/templates/certificatepage.pt
r7446 r7450 31 31 </thead> 32 32 <tbody> 33 <tr tal:repeat="cc context/values" >33 <tr tal:repeat="cc context/values" class="gradeC"> 34 34 <td> 35 35 <span tal:content="cc/level"> -
main/waeup.sirp/branches/henrik-bootstrap/src/waeup/sirp/browser/templates/staffsitelayout.pt
r7449 r7450 71 71 </div> 72 72 </div> 73 <div class="span12" tal:condition="provider:actionbar"> 74 <span tal:replace="structure provider:actionbar" /> 75 <br /><br /> 76 </div> 73 <span tal:replace="structure provider:actionbar" /> 77 74 <div tal:content="structure view/content"> THE CONTENT 78 75 </div> -
main/waeup.sirp/branches/henrik-bootstrap/src/waeup/sirp/browser/templates/studentsitelayout.pt
r7449 r7450 10 10 <meta name="viewport" content="width=320, initial-scale=1, maximum-scale=1"/> 11 11 <link rel="stylesheet" media="only screen and (max-device-width: 480px)" 12 tal:attributes="href python: view.url(layout.site, '@@/waeup.sirp.browser/mobile.css')" type="text/css" /> 12 tal:attributes="href python: view.url(layout.site, '@@/waeup.sirp.browser/mobile.css')" 13 type="text/css" /> 13 14 <link rel="shortcut icon" tal:attributes="href static/favicon.ico" type="image/x-icon" /> 14 15 <link rel="alternate" type="application/rss+xml" title="RSS" … … 52 53 </div> 53 54 </div> 54 <div tal:condition="provider:actionbar"> 55 <span tal:replace="structure provider:actionbar" /> 56 <br /><br /> 57 </div> 55 <span tal:replace="structure provider:actionbar" /> 58 56 <div tal:content="structure view/content"> THE CONTENT 59 57 </div>
Note: See TracChangeset for help on using the changeset viewer.