Issue Details (XML | Word | Printable)

Key: MDL-13463
Type: Bug Bug
Status: Open Open
Priority: Minor Minor
Assignee: Urs Hunkler
Reporter: Ralf Hilgenstock
Votes: 0
Watchers: 1
Operations

Add/Edit UI Mockup to this issue
If you were logged in you would be able to see more operations.
Moodle

small problem in custom corner

Created: 14/Feb/08 10:07 PM   Updated: 12/Sep/08 01:07 AM
Component/s: Themes
Affects Version/s: 1.9
Fix Version/s: None

File Attachments: None
Image Attachments:

1. admin_user_php.jpg
(36 kB)

Participants: Flávio Oliveira Escobar, Mauno Korpelainen, Ralf Hilgenstock and Urs Hunkler
Security Level: None
Affected Branches: MOODLE_19_STABLE


 Description  « Hide
Field lay out problem with longer translations in admin/user.php see attachment

 All   Comments   Change History   Version Control      Sort Order: Ascending order - Click to sort in descending order
Urs Hunkler added a comment - 21/Feb/08 06:01 AM
I can't reproduce the issue. Please add information about browser, system Moodle version etc.

Ralf Hilgenstock added a comment - 29/Feb/08 12:37 AM
Hi Urs,

only IE 7 and german language in moodle.

ralf


Mauno Korpelainen added a comment - 29/Feb/08 04:11 AM
It's not only visible in Custom corners - the problem comes from Standard theme and theme/standard/styles_ie7.css from tags

form.mform input[type=text],
form.mform input[type=file],
form.mform input[type=password] {
margin-left: -10px;
}

where margin-left: -10px; moves right input field 10px left and over left selection box.


Mauno Korpelainen added a comment - 29/Feb/08 04:23 AM
All moodle 1.9 themes that have in theme config.php standardmetainclude = true; show the same behaviour in ie7

Flávio Oliveira Escobar added a comment - 12/Sep/08 01:07 AM
Hi,

I got a solution to this problem, by writing the following lines on "styles_ie7.css":
form.mform input, form.mform select {
margin-right: 10px;
}

Doesn't it solve the issue?