mirror of
https://github.com/moodle/moodle.git
synced 2025-01-31 20:53:53 +01: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
@ -328,6 +328,39 @@ a.skip:active {position: static;display: block;}
|
||||
input#id_externalurl {direction:ltr;}
|
||||
#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
|
||||
*/
|
||||
|
@ -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…
x
Reference in New Issue
Block a user