mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 17:36:38 +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
|
@ -328,6 +328,39 @@ a.skip:active {position: static;display: block;}
|
||||||
input#id_externalurl {direction:ltr;}
|
input#id_externalurl {direction:ltr;}
|
||||||
#portfolio-add-button {display:inline;}
|
#portfolio-add-button {display:inline;}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show the labels above text editors and file managers.
|
||||||
|
*/
|
||||||
|
#adminsettings #admin-summary .form-label,
|
||||||
|
.mform .fcontainer .fitem_ffilemanager .fitemtitle,
|
||||||
|
.mform .fcontainer .fitem_feditor .fitemtitle {
|
||||||
|
display: block;
|
||||||
|
margin-top: 4px;
|
||||||
|
margin-bottom: 4px;
|
||||||
|
text-align: left;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.dir-rtl #adminsettings #admin-summary .form-label,
|
||||||
|
.dir-rtl .mform .fcontainer .fitem_ffilemanager .fitemtitle,
|
||||||
|
.dir-rtl .mform .fcontainer .fitem_feditor .fitemtitle {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminsettings #admin-summary .form-setting,
|
||||||
|
#adminsettings #admin-summary .form-description,
|
||||||
|
.mform .fcontainer .fitem_ffilemanager .ffilemanager,
|
||||||
|
.mform .fcontainer .fitem_feditor .feditor {
|
||||||
|
margin-left: 0%;
|
||||||
|
width: 100%;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
.dir-rtl #adminsettings #admin-summary .form-setting,
|
||||||
|
.dir-rtl #adminsettings #admin-summary .form-description,
|
||||||
|
.dir-rtl .mform .fcontainer .fitem_ffilemanager .ffilemanager,
|
||||||
|
.dir-rtl .mform .fcontainer .fitem_feditor .feditor {
|
||||||
|
margin-right: 0%;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* phpinfo styles
|
* phpinfo styles
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -382,3 +382,36 @@ div#dateselector-calendar-panel {
|
||||||
fieldset.coursesearchbox label {
|
fieldset.coursesearchbox label {
|
||||||
display: inline;
|
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