Changeset 340
- Timestamp:
- 06/06/12 15:23:21 (13 years ago)
- Location:
- Dev/branches/rest-dojo-ui/client
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/branches/rest-dojo-ui/client/mockup.html
r339 r340 80 80 </div> 81 81 <div data-dojo-type="dijit.layout.TabContainer" class="blue" data-dojo-props="tabPosition:'left-h',region:'center'"> 82 <div data-dojo-type="dijit.layout.ContentPane" title="Category One ">83 <div data-dojo-type="rft.ui.SelectorThijs" data-dojo-props="Title:'Subcat one' "></div>84 <div data-dojo-type="rft.ui.SelectorThijs" data-dojo-props="Title:'Subcat two' "></div>82 <div data-dojo-type="dijit.layout.ContentPane" title="Category One, this is a very long title to see how overflow works. This part is cut off because it passes two lines at 200px wide."> 83 <div data-dojo-type="rft.ui.SelectorThijs" data-dojo-props="Title:'Subcat one', modifiers:'green'"></div> 84 <div data-dojo-type="rft.ui.SelectorThijs" data-dojo-props="Title:'Subcat two', modifiers: 'purple'"></div> 85 85 </div> 86 86 <div data-dojo-type="dijit.layout.ContentPane" title="Category Two"> -
Dev/branches/rest-dojo-ui/client/rft/content.js
r311 r340 17 17 * The event onLeave is called before navigating to another page. If false is 18 18 * returned from this function, the navigation will be cancelled. You can use 19 * this e.g. to ask confirmation of changed values are not saved.19 * this e.g. to ask confirmation if changed values are not saved. 20 20 */ 21 21 define(['dojo/_base/declare','dojo/_base/connect','dojo/_base/xhr','dojo/_base/json', -
Dev/branches/rest-dojo-ui/client/rft/css/layout.css
r339 r340 62 62 63 63 /* Breadcrumbs */ 64 . breadcrumbs {64 .claro .breadcrumbs { 65 65 float: left; 66 66 clear: left; … … 70 70 line-height: 16px; 71 71 } 72 . breadcrumb {72 .claro .breadcrumbs .breadcrumb { 73 73 color: #999999; 74 74 font-size: 13px; 75 75 } 76 . breadcrumbCurrent {76 .claro .breadcrumbs .breadcrumb.breadcrumbCurrent { 77 77 color: #ffffff; 78 78 font-size: 14px; 79 79 } 80 .claro .breadcrumbs .breadcrumb.breadcrumbHover { 81 color: #0072bc; 82 } 80 83 81 84 /* Content */ 82 . dijitContentPane.page {83 padding: 0; 84 } 85 .c ontent.dijitContentPane {85 .claro .dijitContentPane.page { 86 padding: 0; 87 } 88 .claro .content.dijitContentPane { 86 89 display: block; 87 90 clear: both; … … 102 105 ); 103 106 } 104 .c ontent.dijitContentPane .dijitBorderContainer {107 .claro .content.dijitContentPane .dijitBorderContainer { 105 108 padding: 2px; 106 109 } … … 138 141 } 139 142 140 141 143 /* Tabs */ 142 144 .claro .dijitTabContainerLeft-tabs { 143 145 border: none; 146 padding: 4px 16px 4px 4px; 144 147 } 145 148 .claro .dijitTabContainerLeft-tabs .dijitTab { 146 149 margin: 4px 0; 147 150 width: 200px; 148 height: 30px;151 min-height: 30px; 149 152 } 150 153 .claro .dijitTab { 154 padding: 2px 8px; 151 155 color: #999999; 152 156 border: 1px solid #999999; 157 white-space: normal; 158 overflow: hidden; 153 159 transition: all 0.3s; 154 160 -moz-transition: all 0.3s; … … 156 162 -o-transition: all 0.3s; 157 163 } 164 .claro .dijitTabContainerLeft-tabs .dijitTab .dijitTabContent { 165 height: 48px; 166 line-height: 24px; 167 width: 190px; 168 } 169 158 170 .claro .dijitTab.dijitTabHover { 159 171 color: #ffffff;
Note: See TracChangeset
for help on using the changeset viewer.