mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
44 lines
608 B
CSS
44 lines
608 B
CSS
/**
|
|
* Styles for elements of the editing form.
|
|
*/
|
|
|
|
/* General layout */
|
|
#wpTextbox1 {
|
|
margin: 0;
|
|
display: block;
|
|
}
|
|
|
|
.editOptions {
|
|
background-color: #F0F0F0;
|
|
border: 1px solid silver;
|
|
border-top: none;
|
|
padding: 1em 1em 1.5em 1em;
|
|
margin-bottom: 2em;
|
|
}
|
|
|
|
/* Adjustments to edit form elements */
|
|
.editCheckboxes {
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.editCheckboxes input:first-child {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.cancelLink {
|
|
margin-left: 0.5em;
|
|
}
|
|
|
|
#editpage-copywarn {
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
#wpSummary {
|
|
display: block;
|
|
margin-top: 0;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
|
|
.editButtons input:first-child {
|
|
margin-left: .1em;
|
|
}
|