Index: trunk/extensions/OpenStackManager/special/SpecialNovaProject.php |
— | — | @@ -212,6 +212,7 @@ |
213 | 213 | |
214 | 214 | $this->setHeaders(); |
215 | 215 | $wgOut->setPagetitle( wfMsg( 'openstackmanager-projectlist' ) ); |
| 216 | + $wgOut->addModuleStyles( 'ext.openstack' ); |
216 | 217 | |
217 | 218 | $out = ''; |
218 | 219 | $sk = $wgOut->getSkin(); |
— | — | @@ -259,7 +260,7 @@ |
260 | 261 | $rolesOut .= Html::rawElement( 'tr', array(), $roleOut ); |
261 | 262 | } |
262 | 263 | $rolesOut = Html::rawElement( 'table', array( 'class' => 'wikitable sortable collapsible' ), $rolesOut ); |
263 | | - $projectOut .= Html::rawElement( 'td', array(), $rolesOut ); |
| 264 | + $projectOut .= Html::rawElement( 'td', array( 'class' => 'Nova_cell' ), $rolesOut ); |
264 | 265 | $link = $sk->link( $this->getTitle(), wfMsgHtml( 'openstackmanager-deleteproject' ), array(), |
265 | 266 | array( 'action' => 'delete', 'projectname' => $projectName ) ); |
266 | 267 | $actions = Html::rawElement( 'li', array(), $link ); |
Index: trunk/extensions/OpenStackManager/modules/ext.openstack.css |
— | — | @@ -1,4 +1,7 @@ |
2 | 2 | .Nova_col { |
3 | 3 | max-width: 50em; |
4 | 4 | overflow: hidden; |
| 5 | +} |
| 6 | +.Nova_cell{ |
| 7 | +vertical-align: top; |
5 | 8 | } |
\ No newline at end of file |