Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions ext/riverlea/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
1.4.1-6.2alpha
- FIXED - start/end date appears inline (https://lab.civicrm.org/extensions/riverlea/-/issues/120)
- FIXED - float of prev/next on contact dashboard on WordPress in some contexts (https://lab.civicrm.org/extensions/riverlea/-/issues/118).
- ADDED - new multi-buttons wrapper `.crm-buttons` to provide uniform gap and wrap around multiple buttons, as no other class provides this - and instead it's handled on a case-by-case basis which is a waste of css. Not used anywhere currently, but referenced in discussion: https://github.com/civicrm/civicrm-core/pull/32344 & https://lab.civicrm.org/extensions/riverlea/-/issues/101.

1.4.0-6.2alpha
- FIXED - right-align of event participant contact details removed (https://lab.civicrm.org/extensions/riverlea/-/issues/119).
- FIXED - FormBuilder left tabs squash and become illegible when too many items (https://lab.civicrm.org/extensions/riverlea/-/issues/116)
- CHANGED - only bottom align delete button when there are a limited number of custom activities (default list plus up to three more custom activities), otherwise keep inline (https://lab.civicrm.org/extensions/riverlea/-/issues/117)

1.3.8-6.0alpha
- FIXED - solves various issues around the naming of crm-text-light and crm-text-dark (https://github.com/civicrm/civicrm-core/pull/31994);
- FIXED - Bootstrap Time input fields limit width, not 100%.
Expand Down
1 change: 1 addition & 0 deletions ext/riverlea/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Overwriting CSS variables for the front is straightforward (they can be nested w

## [Changelog](CHANGELOG.md)

- 1.4.x-6.2.alpha - ongoing fixes/changes against 6.2
- 1.3.x-6.0.alpha - Contrast ratios, responsive and Front-end changes, including new variables, plus fixes (see changelog)
- 1.2.x-5.81 - Regression fixes against 5.81 RC
- 1.1 (5.80) - Release for packaging with CiviCRM core, v5.80
Expand Down
2 changes: 1 addition & 1 deletion ext/riverlea/core/css/_cms.css
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ body.wp-admin .crm-container input:not([type=checkbox]):not([type=radio]):not(.c
}
body.wp-admin .crm-container p,
body.wp-admin .crm-container li {
margin: 0; /* resets WP li bottom margin */
margin-bottom: 0; /* resets WP li bottom margin */
list-style: none;
white-space: inherit;
}
Expand Down
2 changes: 1 addition & 1 deletion ext/riverlea/core/css/_core.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
can be merged later. */

@import url(components/_accordion.css); @import url(components/_alerts.css); @import url(components/_buttons.css); @import url(components/_form.css); @import url(components/_icons.css); @import url(components/_nav.css); @import url(components/_tabs.css); @import url(components/_dropdowns.css); @import url(components/_tables.css); @import url(components/_dialogs.css); @import url(components/_page.css); @import url(components/_components.css); @import url(components/_front.css); :root {
--crm-release: '1.3.8-6.0alpha';
--crm-release: '1.4.1-6.2alpha';
}
3 changes: 0 additions & 3 deletions ext/riverlea/core/css/_fixes.css
Original file line number Diff line number Diff line change
Expand Up @@ -567,9 +567,6 @@ body[class*="page-civicrm-report-"] #report-tab-order-by-elements #optionFieldLi
background: transparent;
padding: 0;
}
.crm-case-activity-form-block-followup_activity_type_id .crm-form-date-wrapper {
display: inline-block;
}
.crm-case-activity-form-block table.form-layout-compressed {
width: 100%;
}
Expand Down
4 changes: 3 additions & 1 deletion ext/riverlea/core/css/components/_buttons.css
Original file line number Diff line number Diff line change
Expand Up @@ -297,9 +297,11 @@

/* BS3 Button groups and dropdowns */

#bootstrap-theme td.text-right:has(.btn + .btn) {
#bootstrap-theme td.text-right:has(.btn + .btn),
.crm-container .crm-buttons {
display: flex;
gap: var(--crm-s);
flex-wrap: wrap;
}
#bootstrap-theme td.text-right:has(.btn + .btn) {
justify-content: end;
Expand Down
2 changes: 1 addition & 1 deletion ext/riverlea/core/css/components/_form.css
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ input.crm-form-checkbox) + label {
gap: var(--crm-xs);
}
.crm-form-date-wrapper {
display: flex;
display: inline-flex;
align-items: center;
flex-flow: wrap;
gap: var(--crm-flex-gap);
Expand Down
2 changes: 1 addition & 1 deletion ext/riverlea/core/css/components/_tables.css
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ table.dataTable.order-column.stripe tbody tr.extension-installed.even > .sorting
border-right: var(--crm-table-column-border);
}
.crm-container table td:has(.btn-slide),
.crm-container table td:not(.crm-case-date):has(.action-item) {
.crm-container table:not(.crm-info-panel) td:not(.crm-case-date):has(.action-item) {
text-align: right;
}
.crm-container table.crm-mailing-ab-table td:has(.action-item) {
Expand Down
2 changes: 1 addition & 1 deletion ext/riverlea/core/css/contactSummary.css
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ div.crm-inline-edit-form div.crm-clear {
#crm-contact-actions-list ul a {
display: block;
}
.crm-contact-crm-contact-delete {
.crm-contact-actions-list-inner:not(:has(.crm-activity-type_6)) .crm-contact-crm-contact-delete {
margin-top: auto;
}
#crm-contact-actions-list .crm-contact_activities-list select {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
#afGuiEditor .panel-heading ul.nav-tabs li.fluid-width-tab {
white-space: nowrap;
overflow: hidden;
max-width: unset !important; /* vs inline max-width set by Form Builder UI */
}
#afGuiEditor .panel-heading .form-inline.pull-right button {
max-height: 32px;
Expand Down
2 changes: 1 addition & 1 deletion ext/riverlea/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
</urls>
<releaseDate>[civicrm.releaseDate]</releaseDate>
<version>1.3.8-[civicrm.version]</version>
<version>1.4.1-[civicrm.version]</version>
<develStage>stable</develStage>
<compatibility>
<ver>[civicrm.majorVersion]</ver>
Expand Down