Details
-
Type:
Sub-task
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 2.5, 2.6
-
Fix Version/s: 2.5.1
-
Component/s: Themes
-
Testing Instructions:
- Select 'Clean' theme.
- Create / go to any course where you have editing capability.
- Observe that the 'Turn editing on' button is aligned as close to the vertical centre of the navigation bar as possible.
-
Affected Branches:MOODLE_25_STABLE, MOODLE_26_STABLE
-
Fixed Branches:MOODLE_25_STABLE
-
Pull from Repository:
-
Pull Master Branch:wip-
MDL-40087_master -
Pull Master Diff URL:
Description
The 'Turn editing on' button is misaligned on the navigation bar.
In 'moodle/modules.less':
.breadcrumb-button {
|
float: right;
|
margin-top: 3px;
|
}
|
needs to be:
.breadcrumb-button {
|
float: right;
|
margin-top: 4px;
|
}
|