diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-03-27 09:24:55 +0200 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-03-27 09:24:55 +0200 |
commit | c384e3ba4f01718af35a47e8470a7458424be954 (patch) | |
tree | 778e70557867fe89a21c0a356857c1af736bc281 /apps/calendar/templates | |
parent | a867bcab465c1924c5baed60499ebd2c3eb7b014 (diff) | |
download | nextcloud-server-c384e3ba4f01718af35a47e8470a7458424be954.tar.gz nextcloud-server-c384e3ba4f01718af35a47e8470a7458424be954.zip |
fix width of dropdown to select monthdays - bugfix oc-354
Diffstat (limited to 'apps/calendar/templates')
-rw-r--r-- | apps/calendar/templates/part.eventform.php | 2 | ||||
-rw-r--r-- | apps/calendar/templates/part.showevent.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/calendar/templates/part.eventform.php b/apps/calendar/templates/part.eventform.php index c87e1ec9de7..c4c3ae1c1e2 100644 --- a/apps/calendar/templates/part.eventform.php +++ b/apps/calendar/templates/part.eventform.php @@ -144,7 +144,7 @@ <tr id="advanced_weekday" style="display:none;"> <th width="75px"></th> <td id="weeklycheckbox"> - <select id="weeklyoptions" name="weeklyoptions[]" multiple="multiple" title="<?php echo $l->t("Select weekdays") ?>"> + <select id="weeklyoptions" name="weeklyoptions[]" multiple="multiple" style="width: 150px;" title="<?php echo $l->t("Select weekdays") ?>"> <?php if (!isset($_['weekdays'])) {$_['weekdays'] = array();} echo html_select_options($_['repeat_weekly_options'], $_['repeat_weekdays'], array('combine'=>true)); diff --git a/apps/calendar/templates/part.showevent.php b/apps/calendar/templates/part.showevent.php index d8443bd06e2..ae3d55e074a 100644 --- a/apps/calendar/templates/part.showevent.php +++ b/apps/calendar/templates/part.showevent.php @@ -147,7 +147,7 @@ <tr id="advanced_weekday" style="display:none;"> <th width="75px"></th> <td id="weeklycheckbox"> - <select id="weeklyoptions" name="weeklyoptions[]" multiple="multiple" title="<?php echo $l->t("Select weekdays") ?>"> + <select id="weeklyoptions" name="weeklyoptions[]" multiple="multiple" style="width: 150px;" title="<?php echo $l->t("Select weekdays") ?>"> <?php if (!isset($_['weekdays'])) {$_['weekdays'] = array();} echo html_select_options(array($_['repeat_weekly_options'][$_['repeat_weekdays']]), $_['repeat_weekdays'], array('combine'=>true)); |