mirror of
https://github.com/moodle/moodle.git
synced 2025-08-07 18:06:51 +02:00
MDL-42684 Forms: Display text editors and file pickers with the label above the field.
This includes the front page description admin field.
This commit is contained in:
parent
1d2a7ef54f
commit
db7092b076
3 changed files with 67 additions and 1 deletions
|
@ -382,3 +382,36 @@ div#dateselector-calendar-panel {
|
|||
fieldset.coursesearchbox label {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the labels above text editors and file managers.
|
||||
*/
|
||||
#adminsettings #admin-summary .form-label,
|
||||
.mform .fitem_ffilemanager div.fitemtitle,
|
||||
.mform .fitem_feditor div.fitemtitle {
|
||||
display: block;
|
||||
margin-top: 4px;
|
||||
margin-bottom: 4px;
|
||||
text-align: left;
|
||||
width: 100%;
|
||||
}
|
||||
.dir-rtl #adminsettings #admin-summary .form-label,
|
||||
.dir-rtl .mform .fitem_ffilemanager div.fitemtitle,
|
||||
.dir-rtl .mform .fitem_feditor div.fitemtitle {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
#adminsettings #admin-summary .form-setting,
|
||||
#adminsettings #admin-summary .form-description,
|
||||
.mform .fitem_ffilemanager .ffilemanager,
|
||||
.mform .fitem_feditor .feditor {
|
||||
margin-left: 0%;
|
||||
width: 100%;
|
||||
}
|
||||
.dir-rtl #adminsettings #admin-summary .form-setting,
|
||||
.dir-rtl #adminsettings #admin-summary .form-description,
|
||||
.dir-rtl .mform .fitem_ffilemanager .ffilemanager,
|
||||
.dir-rtl .mform .fitem_feditor .feditor {
|
||||
margin-right: 0%;
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue