Skip to content
This repository has been archived by the owner on Dec 2, 2022. It is now read-only.

Commit

Permalink
Fix #844 - While adding images with floating submit buttons.
Browse files Browse the repository at this point in the history
  • Loading branch information
gjb2048 committed Oct 29, 2017
1 parent 94fa372 commit 3a0f022
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 13 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ New in 3.2.1.4
- FIX: Above setting for 'coursetitleposition' does not work on 'incourse' / two column content pages.
- FIX: Issue #842: Would it be possible to change a private to a protected?
- FIX: Issue #843: Add an activity or resource popup display.
- FIX: Issue #844: While adding images with floating submit buttons.

New in 3.2.1.3
==============
Expand Down
8 changes: 3 additions & 5 deletions less/essential/form.less
Original file line number Diff line number Diff line change
Expand Up @@ -72,20 +72,18 @@ body#page-admin-setting-messageinbound_mailsettings fieldset select {
.fp-content-center form + div,
div.backup-section + form,
#fgroup_id_buttonar {
width: 30%;
text-align: center;
border-radius: @baseBorderRadius;
margin-left: auto;
margin-right: auto;
padding: 10px 10px 0 5px;
text-align: center;
z-index: 101;
padding: 10px;
border-radius: @baseBorderRadius;
.felement {
margin-left: auto;
margin-right: auto;
}
> .fgroup {
margin: 0;
padding-top: 15px;
}
input[type=submit] {
.btn-primary;
Expand Down
20 changes: 12 additions & 8 deletions style/essential.css
Original file line number Diff line number Diff line change
Expand Up @@ -3427,14 +3427,14 @@ img.iconsmall {
margin-right: 0.5rem;
}
.path-calendar .maincalendar .eventlist .event .name,
.path-calendar .maincalendar .eventlist .event .course {
.path-calendar .maincalendar .eventlist .event .action {
margin-bottom: 5px;
}
.path-calendar .maincalendar .eventlist .event .date {
float: right;
}
.path-calendar .maincalendar .eventlist .event .course,
.path-calendar .maincalendar .eventlist .event .subscription {
.path-calendar .maincalendar .eventlist .event .subscription,
.path-calendar .maincalendar .eventlist .event .action {
float: left;
clear: left;
}
Expand Down Expand Up @@ -13882,6 +13882,12 @@ form {
.singleselect label {
margin-right: .3em;
}
.custom-select {
max-width: 100%;
}
.custom-select + input[type="submit"] {
margin: 0 0 0 5px;
}
#portfolio-add-button {
display: inline;
}
Expand Down Expand Up @@ -21691,13 +21697,12 @@ body#page-admin-setting-messageinbound_mailsettings fieldset select {
#region-main form .fp-content-center form + div,
#region-main form div.backup-section + form,
#region-main form #fgroup_id_buttonar {
width: 30%;
text-align: center;
border-radius: 4px;
margin-left: auto;
margin-right: auto;
padding: 10px 10px 0 5px;
text-align: center;
z-index: 101;
padding: 10px;
border-radius: 4px;
}
#region-main form table#form td.submit .felement,
#region-main form .form-buttons .felement,
Expand All @@ -21717,7 +21722,6 @@ body#page-admin-setting-messageinbound_mailsettings fieldset select {
#region-main form div.backup-section + form > .fgroup,
#region-main form #fgroup_id_buttonar > .fgroup {
margin: 0;
padding-top: 15px;
}
#region-main form table#form td.submit input[type=submit],
#region-main form .form-buttons input[type=submit],
Expand Down

0 comments on commit 3a0f022

Please sign in to comment.