Author: david Date: Tue Sep 15 10:26:19 2009 New Revision: 3306 Log: Revert to 'radio_list' class selector for radio button lists, as this is the hard-coded class selector returned from the symfony radio widget.
Modified: trunk/lib/vendor/symfony/lib/widget/sfWidgetFormSelectRadio.class.php trunk/plugins/qbAclPlugin/modules/aclGroup/templates/editSuccess.php trunk/web/css/form.css Modified: trunk/lib/vendor/symfony/lib/widget/sfWidgetFormSelectRadio.class.php ============================================================================== --- trunk/lib/vendor/symfony/lib/widget/sfWidgetFormSelectRadio.class.php Tue Sep 15 10:18:57 2009 (r3305) +++ trunk/lib/vendor/symfony/lib/widget/sfWidgetFormSelectRadio.class.php Tue Sep 15 10:26:19 2009 (r3306) @@ -3,7 +3,7 @@ /* * This file is part of the symfony package. * (c) Fabien Potencier <[email protected]> - * + * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ @@ -33,7 +33,7 @@ * * @param array $options An array of options * @param array $attributes An array of default HTML attributes - * + * * @see sfWidgetForm */ protected function configure($options = array(), $attributes = array()) Modified: trunk/plugins/qbAclPlugin/modules/aclGroup/templates/editSuccess.php ============================================================================== --- trunk/plugins/qbAclPlugin/modules/aclGroup/templates/editSuccess.php Tue Sep 15 10:18:57 2009 (r3305) +++ trunk/plugins/qbAclPlugin/modules/aclGroup/templates/editSuccess.php Tue Sep 15 10:26:19 2009 (r3306) @@ -53,7 +53,7 @@ <tr> <td><?php echo $permission->getAction()->getName(array('cultureFallback' => true)) ?></td> <td> - <ul class="radio"> + <ul class="radio_list"> <li><?php echo radiobutton_tag('permission['.$permission->id.'][grantDeny]', '1', ('1' == $permission->grantDeny)) ?> <label><?php echo __('grant')?></label></li> <li><?php echo radiobutton_tag('permission['.$permission->id.'][grantDeny]', '0', ('1' != $permission->grantDeny)) ?> <label><?php echo __('deny')?></label></li> </ul> @@ -88,7 +88,7 @@ <tr> <td><?php echo object_select_tag('', '', array('name' => 'actionId', 'related_class' => 'QubitAclAction')) ?></td> <td> - <ul class="radio"> + <ul class="radio_list"> <li><?php echo radiobutton_tag('permission[new][grantDeny]', '1', true) ?> <label><?php echo __('grant')?></label></li> <li><?php echo radiobutton_tag('permission[new][grantDeny]', '0', false) ?> <label><?php echo __('deny')?></label></li> </ul> @@ -103,7 +103,7 @@ </tr> </tbody> </table> - + </fieldset> <!-- include empty div at bottom of form to bump the fixed button-block and allow user to scroll past it --> Modified: trunk/web/css/form.css ============================================================================== --- trunk/web/css/form.css Tue Sep 15 10:18:57 2009 (r3305) +++ trunk/web/css/form.css Tue Sep 15 10:26:19 2009 (r3306) @@ -50,21 +50,21 @@ } -form ul.radio +form ul.radio_list { padding: 0; margin: 0; list-style-image: none; } -form ul.radio li +form ul.radio_list li { background: none; padding: 0; list-style-type: none; } -form ul.radio li label +form ul.radio_list li label { display: inline; font-weight: normal; @@ -493,4 +493,4 @@ #list-search .textbox:focus { background: #CCCCCC; -} +} \ No newline at end of file --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Qubit Toolkit Commits" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.ca/group/qubit-commits?hl=en -~----------~----~----~----~------~----~------~--~---
