Skip to content

Conversation

andersonjeccel
Copy link
Contributor

@andersonjeccel andersonjeccel commented May 20, 2024

Q A
Bug fix? (use the a.b branch) 🔴
New feature/enhancement? (use the a.x branch) 🟢
Deprecations? 🔴
BC breaks? (use the c.x branch) 🔴
Automated tests included? 🔴
Related user documentation PR URL mautic/user-documentation#...
Related developer documentation PR URL mautic/developer-documentation-new#...
Issue(s) addressed Fixes #...

Description

Here new interface themes.

image


📋 Steps to test this PR:

  1. Open this PR on Gitpod or pull down for testing locally (see docs on testing PRs here)
  2. Open Account
  3. Click Appearance
  4. Play with the options

@andersonjeccel andersonjeccel force-pushed the ui-toggle-dark-theme branch from 4e6e39d to 4246f07 Compare May 20, 2024 19:17
@andersonjeccel andersonjeccel self-assigned this May 20, 2024
@andersonjeccel andersonjeccel requested review from LordRembo, a team and Mike-Dropsolid May 20, 2024 19:18
@andersonjeccel andersonjeccel added T1 Low difficulty to fix (issue) or test (PR) feature A new feature for inclusion in minor or major releases user-interface Anything related to appearance, layout, and interactivity ready-to-test PR's that are ready to test code-review-needed PR's that require a code review before merging javascript Pull requests that update Javascript code labels May 20, 2024
@shinde-rahul
Copy link
Contributor

@andersonjeccel, is the dark theme only available on the account details page? When I toggle, the only page that gets the dark theme is the accounts page, not any other pages.

@andersonjeccel
Copy link
Contributor Author

@shinde-rahul In this one, yeah

I’m working by component in each pull request, only using the tokens PR as a base to provide me the necessary variables

So to see everything in the dark theme, we would have to wait for the others to be merged first (or merge all the pending branches in this one, but it might be difficult to review the code later)

@andersonjeccel andersonjeccel marked this pull request as draft May 21, 2024 11:01
Copy link
Contributor

@LordRembo LordRembo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@andersonjeccel Okay, so first off, same remark as I had on some other PR's: this one is dependent on changes you are trying to do in the Tokens PR. So you need to mark that as a dependency, eg. in the description. Similarly as the others, I'd ask to put this PR on draft or somehow make clear to users that part of the code is to be reviewed in that main Tokens PR.

@LordRembo
Copy link
Contributor

@andersonjeccel As for the code, I would suggest that the dark theme is actually loaded via both PHP and JS. Assuming you want to keep this working by setting a property on the html-tag of the site (or any other wrapper).

  • For PHP: using the toggle would store a setting in Mautic, which can be read in the template of the html and print the theme color setting right there. That guarantees that any page refresh still loads the right theme and it's gonna be 'instant' as happens during rendering instead of after the DOM is ready. You could ask @mallezie what a course of action or example would be.
  • For JS: the toggle would simultaneously still change the property in the HTML when clicked, so the theme is switched. Just won't write anything to localStorage.

@LordRembo
Copy link
Contributor

LordRembo commented May 23, 2024

3rd remark:
The JS code is having some problems that it does not always work when the button is loaded. You should build on top of Mautic.userOnLoad instead of make a new DOMContentLoaded + use some kind of 'live' check to keep a look on the DOM.
Here's a suggestion on how to rewrite the listener using mQuery (whatever version of jQuery or mini-jQuery is in use in Mautic). Untested but it should show the concept.

Mautic.userOnLoad = function (container) {
  <code that already exists>
  
  // I'm rewriting using mQuery instead of using documentSelector because I can use 'on', which keeps the element alive when the DOM changes, so it will work even if the code loads before the button is rendered
  mQuery('.dark-toggle').on('click', function() {
    let buttonToggle = mQuery(this);
    let themeCurrent = document.documentElement.getAttribute('color-theme');
    let themeNew = themeCurrent === 'dark' ? 'light' : 'dark';
    document.documentElement.setAttribute('color-theme', themeNew);    
  });  
}

@andersonjeccel andersonjeccel added the blocked Something blocks this PR/issue (e.g. waiting for another PR to be merged) label Jun 17, 2024
@andersonjeccel andersonjeccel added this to the 5.2 milestone Jun 17, 2024
@andersonjeccel andersonjeccel added pending-feedback PR's and issues that are awaiting feedback from the author and removed ready-to-test PR's that are ready to test code-review-needed PR's that require a code review before merging labels Jun 17, 2024
@andersonjeccel
Copy link
Contributor Author

@LordRembo Your solution solved the first issue, but now I’m having a problem to keep these attributes when leaving the account page
It seems like there’s another js code rewriting the entire html tag
But we also have another js code rewriting the body when the GrapeJS builder is opened

What would you suggest to keep only JS (no PHP)?

@LordRembo
Copy link
Contributor

@andersonjeccel I'm not seeing any issues in the current version of your PR, so can you share some things to help me debug?

  • the code you tried out, that makes changes to the html tag
  • what changes happen to the html tag when leaving the account page?
  • what changes do you see when GrapesJS is opened?

@LordRembo
Copy link
Contributor

@andersonjeccel I just tried copy pasting my bit of code and commenting out your JS changes. Just hade 1 typo I had to fix (use mQuery instead of $) but otherwise, I'm not finding any problems with the html tag on other pages.

This is what the userOnload looks like then:

 Mautic.userOnLoad = function (container) {
    if (mQuery(container + ' form[name="user"]').length) {
        if (mQuery('#user_position').length) {
            Mautic.activateTypeahead('#user_position', {displayKey: 'position'});
        }
    } else {
        if (mQuery(container + ' #list-search').length) {
            Mautic.activateSearchAutocomplete('list-search', 'user.user');
        }
    }

    mQuery('.dark-toggle').on('click', function() {
        let buttonToggle = mQuery(this);
        let themeCurrent = document.documentElement.getAttribute('color-theme');
        let themeNew = themeCurrent === 'dark' ? 'light' : 'dark';
        document.documentElement.setAttribute('color-theme', themeNew);    
    }); 
};

@LordRembo
Copy link
Contributor

@andersonjeccel If there is indeed some logic that completely replace the html tag, you can still integrated the logic to set & read the theme from localStorage using JS (in addition to using PHP).
You would just need to find out what JS file is doing this and WHEN this change is triggered so you can find a way to execute your changes AFTER it or in a callback.
But as said, I'm not seeing that problem so I'm gonna need your input to help.

@andersonjeccel
Copy link
Contributor Author

@LordRembo

I tested specifically this code:

// Dark theme toggle
Mautic.userOnLoad = function (container) {
    let theme = localStorage.getItem('theme');
    if (theme) {
        document.documentElement.setAttribute('color-theme', theme);
    } else {
        document.documentElement.setAttribute('color-theme', 'light');
    }

    mQuery('.dark-toggle').on('click', function() {
        let themeCurrent = document.documentElement.getAttribute('color-theme');
        let themeNew = themeCurrent === 'dark' ? 'light' : 'dark';
        document.documentElement.setAttribute('color-theme', themeNew);
        localStorage.setItem('theme', themeNew);
    });
};

Steps:

  1. Go to Account
  2. Click the button to toggle

It appends the attribute

image

And things go dark

image

I reload the page. Everything keeps working just fine.


Then I click on Dashboard. The html tag still have the attribute.
I reload the Dashboard page. Now we don't have the dark attribute, it disappears.

It comes from this:

<html class=" supports csstransforms3d touchevents responsejs " color-theme="dark">

To this:

<html class=" supports csstransforms3d touchevents responsejs ">


Considered an alternative: apply the attribute in the body tag instead of html.
Then I tested if things are rewritten opening other pages and finally the builder.

Steps:

  1. Go to Channels > Emails > New > Builder.

The body tag goes from:

<body class="header-fixed">

To:

<body class="header-fixed" style="overflow-y: hidden;">

So the same problem.


Tried the last code you suggested and added localStorage:

Mautic.userOnLoad = function (container) {
    if (mQuery(container + ' form[name="user"]').length) {
        if (mQuery('#user_position').length) {
            Mautic.activateTypeahead('#user_position', {displayKey: 'position'});
        }
    } else {
        if (mQuery(container + ' #list-search').length) {
            Mautic.activateSearchAutocomplete('list-search', 'user.user');
        }
    }

    let theme = localStorage.getItem('theme');
    if (theme) {
        document.documentElement.setAttribute('color-theme', theme);
    } else {
        document.documentElement.setAttribute('color-theme', 'light');
    }

    mQuery('.dark-toggle').on('click', function() {
        let themeCurrent = document.documentElement.getAttribute('color-theme');
        let themeNew = themeCurrent === 'dark' ? 'light' : 'dark';
        document.documentElement.setAttribute('color-theme', themeNew);
        localStorage.setItem('theme', themeNew);
    });
};

The dark mode still disappears when I reload another page, out of the user profile.

The debugger says it's coming from node_modules/jquery/dist/jquery.js
Line 8218

But it doesn't seem relevant...

@LordRembo
Copy link
Contributor

The code looks good with the latest changes I think. There will hopefully be some feedback on that code when the PR is public. Also, since the toggle stuff is now more generic, it would be useful to document the use.

Copy link

@imaabasiee imaabasiee left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Interface Theme: I played around with the themes and noticed that when you select a theme and cancels it, it does not revert to the previous one. Here is a video: https://www.loom.com/share/d0b695fe6a3843cab7abe6e08ad6d3d8

Copy link

@imaabasiee imaabasiee left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#13767 Interface Theme: I played around with the themes and noticed that when you select a theme and cancels it, it does not revert to the previous one. Here is a video:
https://www.loom.com/share/d0b695fe6a3843cab7abe6e08ad6d3d8

@andersonjeccel
Copy link
Contributor Author

@imaabasiee @MojisolaaaO Found a workaround to attach the themes and accessibility settings to the Save button, now it'll work as you expected before

@MojisolaaaO
Copy link

@andersonjeccel
The first issue about the text overlapping has been fixed.
However, the issue about the selected theme still being applied when the "Cancel" button is clicked persists.


@andersonjeccel
Copy link
Contributor Author

@MojisolaaaO Hm, we have an issue here

This is the current behavior after my last commit:

  1. You click on each option and it's applied to preview
  2. If you save, they become permanent (they won't disappear by themselves)
  3. If you cancel, it reverts back to what you were using before

But still there's 1 specific use case where you'll find a bug: when not clicking Save nor Cancel, just clicking something on the sidebar, for example

The preview would be "carried" to the other pages until you reload (because Mautic commonly loads a page without reloading it)

To cover this specific scenario:

  1. we can remove the preview feature, so you'll have to save each time to see how a theme looks
  2. we leave it this way

What do you think?
I'll also ask colleagues here

@MojisolaaaO
Copy link

@andersonjeccel Thank you for the clarification. I believe we should leave it this way. Being able to see the preview of the selected theme before deciding whether to maintain it gives a better user experience.

Copy link
Contributor

@shinde-rahul shinde-rahul left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code changes look good to me.
I have one question: will this enable me to add custom themes?

@shinde-rahul shinde-rahul added code-review-passed PRs which have passed code review and removed code-review-needed PR's that require a code review before merging labels Oct 9, 2024
@escopecz
Copy link
Member

escopecz commented Oct 9, 2024

I was clicking through the UI and notice these issues:
The value in the input is not readable on email and asset detail pages:
Screenshot 2024-10-09 at 09 39 14
Screenshot 2024-10-09 at 09 34 22

Where did the landing page builder button go? I can see that it's missing in the 5.x branch as well. So it's not a blocker for this PR. Anyone knows?
Screenshot 2024-10-09 at 09 33 30

@andersonjeccel
Copy link
Contributor Author

@shinde-rahul I’ll need some guidance to make it possible

there’s a twig function that allows devs to extend some specific places by appending new content, maybe that’s an initial solution to make it selectable, + adding a custom CSS file to set the styles

the JS code itself is really flexible and will adapt automatically to whatever you add since you follow the same structure seen on the others (radio input with attributes)

Copy link

@imaabasiee imaabasiee left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Interface Theme: I played around with the themes and noticed that when you select a theme and cancels it, it does not revert to the previous one. Here is a video: https://www.loom.com/share/d0b695fe6a3843cab7abe6e08ad6d3d8?sid=6ce6f2c7-d1ed-4b4a-94e6-ccef15edf17e

Mojisola opened the issue here #14171

@andersonjeccel
Copy link
Contributor Author

@imaabasiee Weird thing is that the functionality is there and here it works

Screencast.from.2024-10-10.09-52-14.mp4

@andersonjeccel
Copy link
Contributor Author

@escopecz Did you fix something?

the button is there for me

image

@andersonjeccel andersonjeccel added the ready-to-commit PR's with 2 successful tests, 1 approval, automated tests and docs and is ready to be merged label Oct 10, 2024
@escopecz escopecz merged commit 93b59ba into mautic:5.x Oct 10, 2024
17 checks passed
@andersonjeccel andersonjeccel deleted the ui-toggle-dark-theme branch October 10, 2024 17:01
This was referenced Oct 11, 2024
andersonjeccel added a commit to andersonjeccel/mautic that referenced this pull request Oct 15, 2024
commit d2b63ff9e5af3eccf27edca9b3de54a83ae2831f
Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
Date:   Fri Oct 11 12:24:38 2024 -0300

    making default unsubscribe page reusable

commit 8d3445fda5eb6ffc4275d4460a347c914a1e4189
Merge: ed4f08dff4 93b59ba7f0
Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
Date:   Thu Oct 10 14:03:47 2024 -0300

    Merge branch '5.x' into ux-basic-themes

commit 93b59ba7f04d12a0c77cf30b48369e7f3819a309
Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
Date:   Thu Oct 10 11:02:41 2024 -0300

    [UI] Interface themes (#13767)

    * Squashed commit of the following:

    commit 0a3b75c21cfa59cc64aec516cefd098e0ef6b4b8
    Merge: bda420418c daad1994ff
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Sep 16 12:17:54 2024 -0300

        Merge branch '5.x' into ui-accessibility-features-in-account-settings

    commit bda420418c2ce6113c33d40e42ba719ffb829ffd
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Sep 16 09:08:30 2024 -0300

        fix cs

    commit e6bf5390e3e64e25b069c06c3dfd269fa898b664
    Merge: 48e422dda7 f7e929ca85
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Sep 13 13:34:23 2024 -0300

        Merge branch '5.x' into ui-accessibility-features-in-account-settings

    commit 48e422dda74e2f64a9ed516a8b68b9d1c0f7492b
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Sep 13 09:56:12 2024 -0300

        fix for keyboard shortcuts

    commit 919d389bc3cff4cb9ecb913f487514230e13d975
    Merge: c5ccd4677e 713b5a2c13
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Sep 13 09:37:40 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-accessibility-features-in-account-settings

    commit c5ccd4677ecaf94eac78a7b49b724e9021807994
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Sep 13 09:27:56 2024 -0300

        improve reliability for underlined links

    commit f36b96ddc6d592039bf86779f535844c6faa7b53
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Thu Sep 12 16:56:28 2024 -0300

        i wasn't happy re. descriptions

    commit b286e2b35781f3a6519d3d7f7cbba279fa74465f
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 16:27:26 2024 -0300

        improve reduced transparency reliability

    commit 335ca22ba11201ddcb19bbb1612ade2cfcb28677
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 16:02:56 2024 -0300

        polishing the underline solution

    commit 1ef99ca611dee20797544159eccbdc262fb9330e
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 16:00:56 2024 -0300

        letting it ready to merge

    commit 659369ba2c499df1e03f4aece9199c83bcd8d84e
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 15:54:15 2024 -0300

        splitting into right files

    commit 5a87fda8379fa1d7694ffa967b7accb342121bec
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 15:51:43 2024 -0300

        main JS code

    commit 2f9e0dcb4b265d2edc0a5e35aa41a92fc289a44f
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 15:51:22 2024 -0300

        improving layout and adding features

    commit 476c6085bbf2ae4241fe865a4c8d6ce51e8f072d
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 15:51:02 2024 -0300

        separating radio styles

    commit fc536f5794e768e95ead0a61c1ab2163dfafa5cd
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 15:50:52 2024 -0300

        making mixin accessible

    commit 9877dcb8cf8ca3ff990c8f7a83952b0f89120ffe
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 15:50:23 2024 -0300

        text-help class

    commit 75d75c64e52571e86dd6b74e6335b0f02022d61c
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 15:50:17 2024 -0300

        grid fix

    commit 4a4ff6f19a6dfbdb3d07cdba0f78f4db599b8bc8
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 15:50:05 2024 -0300

        radio input style

    commit b4949bc2380c899671db405310e2b7ebb906453f
    Merge: 35fa882ae1 8ce397e2bb
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 12:18:18 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-accessibility-features-in-account-settings

    commit 35fa882ae1f53ddb1c246e21bfabb9674dd4f535
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jun 25 13:12:18 2024 -0300

        fix missing translation

    commit 888d55d4f43350d52787666c6accd57e1933ff05
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jun 25 11:54:33 2024 -0300

        js for button toggles that append attributes to the html tag

    commit e8e693c480f84dd0d2bbdf7deec9e8479ac06532
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jun 25 11:52:14 2024 -0300

        features toggle

    commit f885de2b16b7a95a4f6ae56bc88af4e139315073
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 21 18:03:17 2024 -0300

        wip

    commit 3ad8223dd518356ad9fb30cc481b873280efe974
    Merge: f79216dee4 b228705712
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 21 10:35:56 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit f79216dee492b657dd1fd625a59554d2a22c82b2
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 21 10:35:19 2024 -0300

        semantic fixes

    commit 8361fc475d8613b19f59e7f51898cb1c9ade74fd
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 14 09:40:56 2024 -0300

        fix css to less

    commit 13031fc90b373bffe1ebfe84f6ac3f85e4dbad98
    Merge: 736860e03d c14523b74f
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 14 09:39:16 2024 -0300

        Merge branch 'ui-token-based-approach-for-interface-elements-and-colors' of https://github.com/andersonjeccel/mautic into ui-token-based-approach-for-interface-elements-and-colors

    commit 736860e03dd1b4238ade0365207681a690c5d232
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 14 09:39:06 2024 -0300

        revert to 0 based on community feedback

    commit c14523b74fb4686694aa5b9ac639c647c6642774
    Merge: 17f0b803fd b30170e771
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 14 08:24:07 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit 17f0b803fd6a22b76db2341e6aedef62ab0602fe
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jun 11 18:24:36 2024 -0300

        4px rounded standard

    commit 6c995524fede85960455b7419ac57a9317359317
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jun 11 18:09:21 2024 -0300

        another pallete generation method + accessibility improvement

    commit 94c5d31ffde8c492ab1d0ea60b7f4bd1c3e57add
    Merge: 08f44983c5 a5fd77fd24
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jun 11 09:57:11 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit 08f44983c58d6e2e9b334cc79ec8c91e9a374983
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 7 09:22:59 2024 -0300

        brand center enabled by default

    commit 9e36070b68021635564ef7d4fd27c0c91e8f7e48
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 7 09:17:41 2024 -0300

        separate file for tokens to avoid duplication on .css files

    commit c4889d04e24c4da65989ae8c8017833fc718f310
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 7 09:16:44 2024 -0300

        high contrast improvement

    commit 129cd68fd1ff0aa3b40948c6a86c12469aa5e29d
    Merge: f515944f43 e8d5b6c425
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 7 08:57:54 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit f515944f4384ae6dab7e68487c3fad8b0c7fa370
    Merge: 179c3128f0 aa4ac3ce31
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri May 31 11:03:44 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit 179c3128f0e42bb5382cbe60963706045d2a9325
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 22 15:16:59 2024 -0300

        removing duplicates

    commit e6f2b75b2407c18cc1083792749ba1d8e72b1dcf
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 14:00:26 2024 -0300

        enhanced border calc

    commit 6cdf1955f566edb4ca8328dc033983dea8bb885f
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 13:46:39 2024 -0300

        reduced max bdr value

    commit 3c8a34047a946962794b173ed933d2d700d1a407
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 11:58:54 2024 -0300

        sat improv

    commit f2cab43448902279a6f261ea43b2b1382705c8a7
    Merge: d32df8c2a2 a66c8d0c37
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 11:41:27 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit d32df8c2a2e12d08f46d71bacf8d21ad07a6f58a
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 11:40:50 2024 -0300

        Revert "transparency for borders when on brand bg"

        This reverts commit a8c4748bd3bcebf79907de76cbce8e15ff6f1f59.

    commit a8c4748bd3bcebf79907de76cbce8e15ff6f1f59
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 11:38:23 2024 -0300

        transparency for borders when on brand bg

    commit 65ee89b4b54efb7498dfdb54639a49fca7a56b31
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 10:48:48 2024 -0300

        fixes for secondary brand color support

    commit 40a23032c922db440c03724cc2e8deeb81b573b4
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 09:40:13 2024 -0300

        style fixes

    commit 74f49e00c0d40c696efe01b3bc3f068c64e0f3d6
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 09:31:23 2024 -0300

        secondary brand color support

    commit d0e7feccf4ed127bc045a5591da624ed3f193604
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 09:17:39 2024 -0300

        Responsive typography

    commit b3d2af4732ce1952b8b7b378c9415d30e09b8941
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 15 12:11:49 2024 -0300

        darker brand bg on dark theme

    commit c848335adbe2a9b343768ad24376b03a7043ce20
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 14 13:59:35 2024 -0300

        fix missing transparency bg colors

    commit 1675884bee30b3c4222e9c22be4ca9a60f9d1a02
    Merge: db55686120 4883fa0d24
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 14 09:13:00 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit db5568612049f60d04c71575b08f4b9ec2528b45
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 14 08:50:00 2024 -0300

        set implementation mode for high contrast + run grunt-compile-less

    commit d91ba0bc2b2a90a3dd7eb1594a48e5b60e60fd55
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri May 10 17:29:33 2024 -0300

        setting the dark theme implementation method

    commit f80989c428c922508b34624de8eb7b92aac49f21
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri May 10 15:31:04 2024 -0300

        tag to label token names

    commit 5e3bee9aec248718586995db4b21a717c0951cca
    Merge: ff5a8ed2ed e88cf968a3
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Thu May 9 13:44:30 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit ff5a8ed2edd248cc2438ac1bb281d3d56a10c508
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 17:21:07 2024 -0300

        improve radius calc

    commit 42d1c5d50373fc53a86f9ca1a7e7f4d407af76e4
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 17:16:57 2024 -0300

        utilities syntax fix

    commit c7d151b8392aa4f2aa6b6b85aa0899360aed2208
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 16:58:34 2024 -0300

        dark color scheme disabled by default to avoid conflicts

    commit af024668af7b635447bc85bcc3d5de1bcadbcbbd
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 15:46:57 2024 -0300

        remove duplicated imports

    commit 7f261c47b2520e970483f1f2e2b391eb5ded6daf
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 13:29:33 2024 -0300

        aligning previous tokens

    commit 4aaa9d98e1e7c45af52f8fee1968e7a13f8e7adb
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 13:27:24 2024 -0300

        grunt compile-less

    commit e7dbe89e16c2aa22158336a2d424edfea698c012
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 13:18:51 2024 -0300

        revert removing 5x duplicated import rules

        revert
        Revert "fixing broken darken/lighten"
        This reverts commit bcf4ac98e07c0c17162a74794a8161d5398c3d7c.

    commit af355d629f731b4eb52bcb0877b4be0b2d2cdd35
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 13:13:59 2024 -0300

        variables

    commit 5a97e52e340697a661125c3b15fe753a7034165f
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 7 17:17:45 2024 -0300

        fixing broken darken/lighten

    commit f4baec1edf8a2ae99ca4973b2aeae45c16de09e6
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 7 16:03:53 2024 -0300

        migrating mautic variables into bootstrap

    commit 23e3b6ffe9c0c6ffa96a44f1c39bc1e84467d880
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 7 15:45:35 2024 -0300

        incorporating all bootstrap variables

    commit 6a16fdf2cbe683bd9767331c2b0012bd537995fb
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 7 15:27:32 2024 -0300

        tokens

    * Squashed commit of the following:

    commit 6d4bd1bccac03b9175221675ad80d0ae0ca9a91b
    Merge: 4bef8fe044 8ce397e2bb
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 10:13:52 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-ux-buttons

    commit 4bef8fe044fc925543181b006b320c46839161b7
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Jun 17 12:37:16 2024 -0300

        modal footer

    commit f2060efa43f3d0a627c2de9ef3a4fc829279cb5e
    Merge: df4211423f a5e4d349cf
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 4 15:12:55 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-ux-buttons

    commit df4211423f2a12b7c2fe40b3f918f6a72e496d33
    Merge: 33a38f4e93 3959038712
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 4 07:47:23 2024 -0300

        Merge branch '5.x' into ui-ux-buttons

    commit 33a38f4e93e650ee45dba218fa5da84146b77381
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Sep 3 16:22:27 2024 -0300

        fix test

    commit f02492506644aa7dbb2da5ea19a5d54df84c9f58
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Sep 3 13:28:05 2024 -0300

        reset dropdown-toggle

    commit 9a3172b84ada7f0a0ad93e554ba8948a3f2ae8dc
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Aug 30 12:00:07 2024 -0300

        improvement to styles

    commit 52ee5d0e0eb08877c07104a2aee66bb421e0ac0a
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Aug 30 11:17:59 2024 -0300

        stability improvement

    commit 13ad743eebc120f7fd6cf937e452e0f6e2681084
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Aug 30 10:23:37 2024 -0300

        Squashed commit of the following:

        commit 62c7d49dc7938f4c63a2071d47aa56929cb3aa1f
        Merge: a33f0aa9f8 f455fc03f3
        Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Fri Aug 30 10:22:40 2024 -0300

            Merge remote-tracking branch 'upstream/5.x' into ux-replace-default-buttons-with-ghost

        commit a33f0aa9f867e26e803e23570e536e4b427faf89
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Thu Jul 18 11:38:52 2024 -0300

            fix send icon

        commit b408cd412305468d89f17edf4af18e0f34f4a9ff
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Thu Jul 18 11:37:49 2024 -0300

            fix: page actions buttons

        commit c1d664db2a3fe157a053044de4c0438d13ed14a5
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jul 17 14:15:50 2024 -0300

            fix: dashboard daterange button

        commit de0816956f4f6a9a6d40c764e9bf124306ee9fd9
        Merge: 21c84f2138 cf59090e7d
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jul 17 14:09:27 2024 -0300

            Merge branch 'ui-ux-buttons' into ux-replace-default-buttons-with-ghost

        commit 21c84f2138d1ae3373360ab55b7ff8ea9959436c
        Merge: 20eb96183a a1a6aace54
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jul 17 13:38:43 2024 -0300

            Merge branch 'ui-ux-buttons' into ux-replace-default-buttons-with-ghost

        commit 20eb96183a0e2180b31bddb079eddd7af0501f6d
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jul 17 12:51:55 2024 -0300

            Revert ".btn-default in themes?"

            This reverts commit 19c24f29450ef870ae05910bae0b1d4b0d1439bf.

        commit 19c24f29450ef870ae05910bae0b1d4b0d1439bf
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jul 17 12:48:42 2024 -0300

            .btn-default in themes?

        commit 2b57c56f39daf49408e37e9300949e64d90714a3
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jul 17 12:47:51 2024 -0300

            [UI] Assigning hierarchycal buttons to buttons

    commit 2a119693929195282746f3db7cc7eaefdac7b9c5
    Merge: f535d4c482 f455fc03f3
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Aug 30 10:16:56 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-ux-buttons

    commit f535d4c482d7c47577aa10332fee88bf893dd977
    Merge: 5eb8f290f0 f66e8c9a78
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Aug 28 14:42:50 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-ux-buttons

    commit 5eb8f290f0976cd67516807452c3348f8623709d
    Merge: 8ca54b15bb 33cd7b67ac
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Aug 27 13:00:24 2024 -0300

        Merge branch '5.x' into ui-ux-buttons

    commit 8ca54b15bb18b49fd3651c2abf933e8e02184ce4
    Merge: 8ae17306b4 1a18ca2232
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Aug 27 09:45:20 2024 -0300

        Merge branch '5.x' into ui-ux-buttons

    commit 8ae17306b4b6663566265a6535ace24c3c190528
    Merge: e74cb7e99b 25f97a6d39
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Aug 23 08:53:36 2024 -0300

        Merge branch '5.x' into ui-ux-buttons

    commit e74cb7e99b257564ec21bafdd327aed027815f0c
    Merge: 42dad267f9 905be2ce7f
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Aug 21 12:34:42 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-ux-buttons

    commit 42dad267f90eed62dc9929882b9e70875f9a8431
    Merge: 1adcd90380 e2fcd1007e
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Aug 20 10:50:23 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-ux-buttons

    commit 1adcd903808c4625ff1925968dec0c482c7587e7
    Merge: 03a0e421e4 8ed38987c5
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Aug 14 15:01:37 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-ux-buttons

    commit 03a0e421e40e3f1c9c5d43353cbd705db40fbe8c
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Thu Aug 1 12:44:52 2024 -0300

        sidebar fix

    commit 3ed632948790ea4e820f6073aaaedacb2d123e83
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Thu Aug 1 12:22:50 2024 -0300

        comment

    commit 6196db475b507c202d7af474a05aae7f38ec03bd
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Thu Aug 1 11:53:12 2024 -0300

        fixing @LordRembo

    commit e49cb44d18e2edf44702624d0d79cb36c0376122
    Merge: 66cee95b8e da21cfd455
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Thu Aug 1 10:11:39 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-ux-buttons

    commit 66cee95b8e58741f1864b47137e9dedb8abb28d2
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 31 11:28:50 2024 -0300

        fix outline

    commit 4a8457dace96208f5b4292bbd4d0608da51339a3
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 31 10:56:47 2024 -0300

        Squashed commit of the following:

        commit 9a035090a111584d9e677b2c9d5582310ea05bd3
        Merge: 5f73439b0f c95fcd7a32
        Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jul 31 10:54:22 2024 -0300

            Merge remote-tracking branch 'upstream/5.x' into ux-More-intuitive-links-in-small-grey-typeface-that-you-dont-know-are-links-is-one-example

        commit c95fcd7a327c3d23dd068e46676e5f9892d3e839
        Author: Patrick Jenkner <139468697+PatrickJenkner@users.noreply.github.com>
        Date:   Wed Jul 31 14:49:08 2024 +0200

            Re-enable rendering of html in form field labels (#14026)

            * add "raw" to form field labels to enable html rendering

            * replace "raw" filter with "purify" filter

        commit a703a3411baaec09b6dc6e6c7c723eda422c2ded
        Author: Mattias Michaux <mattias.michaux@dropsolid.com>
        Date:   Wed Jul 31 10:54:58 2024 +0200

            Ensure asset and page titles are correctly shown in ckeditor (#13678)

            * Ensure asset and page titles are correctly shown in ckeditor

            * deprecate methods that no longer should be used

            ---------

            Co-authored-by: Ruth Cheesley <ruth@ruthcheesley.co.uk>
            Co-authored-by: John Linhart <admin@escope.cz>

        commit f46d79fafbb0a3fda4e8bc0d48c9f6546e8f77b5
        Author: Abhisek Mazumdar <abhisekmazumdar@users.noreply.github.com>
        Date:   Wed Jul 31 13:55:49 2024 +0530

            Fix generatePageTitle to retrieve the correct page header tag. (#13921)

        commit 0098ccf45c28dacb124759a1fadb9b10e50d7c04
        Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jul 31 04:44:59 2024 -0300

            [UI] Replace FA icons (part 3) (#13957)

            * [UI] Stable - replace FA icons

            * fa-fw / ri-fw

            * fa-lg / ri-lg

            * class="fa / class="

            * potentially unstable

            * potentially unstable

            * fix: duplicated search icon

        commit a69b55c9c60840bc91b10f7b5d414d8ab7f938f4
        Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jul 31 04:43:53 2024 -0300

            [UX] Copy code blocks on click (#13897)

            * [UX] Copy code blocks on click

            * fix AJAX calls

        commit 5f73439b0f7a10d2e41c7f3957056dedf8fe5ce8
        Merge: dbce124229 32aeb2a25b
        Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jul 24 14:24:31 2024 -0300

            Merge branch '5.x' into ux-More-intuitive-links-in-small-grey-typeface-that-you-dont-know-are-links-is-one-example

        commit dbce1242296673f14b53d47df74ce521b21e3421
        Merge: d7095cf42e 6463f65be1
        Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Tue Jul 16 14:32:32 2024 -0300

            Merge branch '5.x' into ux-More-intuitive-links-in-small-grey-typeface-that-you-dont-know-are-links-is-one-example

        commit d7095cf42efcb1194f2cf5d57c13cfa7fefd0870
        Merge: ea1a97facf bf3794331b
        Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Mon Jul 15 11:12:28 2024 -0300

            Merge branch '5.x' into ux-More-intuitive-links-in-small-grey-typeface-that-you-dont-know-are-links-is-one-example

        commit ea1a97facfd9b0911f86b016f935c7673140a6b6
        Merge: c3d62a5ab5 eee187925c
        Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Mon Jul 15 07:47:53 2024 -0300

            Merge branch '5.x' into ux-More-intuitive-links-in-small-grey-typeface-that-you-dont-know-are-links-is-one-example

        commit c3d62a5ab5481540bd3aaaf43bdd052beda45ae1
        Merge: 5b91ca49b3 77e642dce3
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Tue Jul 9 13:30:36 2024 -0300

            Merge remote-tracking branch 'upstream/5.x' into ux-More-intuitive-links-in-small-grey-typeface-that-you-dont-know-are-links-is-one-example

        commit 5b91ca49b32e115211316484b04941828f432d60
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Mon Jul 1 17:54:41 2024 -0300

            outline

        commit 7d3ee435eb89e63f4e486927a2d113ff70dab067
        Merge: a7fbf15cc9 760bf0c54c
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Mon Jul 1 17:37:38 2024 -0300

            Merge remote-tracking branch 'upstream/5.x' into ux-More-intuitive-links-in-small-grey-typeface-that-you-dont-know-are-links-is-one-example

        commit a7fbf15cc956c1cf75b911e1d42532739aa37930
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jun 26 16:06:22 2024 -0300

            Assign links and body text color to tokens

        commit 26f781db9bb87630a700d3eefa7b4f7564aa7361
        Merge: dd992b1f25 4fb0c5c441
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jun 26 16:01:19 2024 -0300

            Merge remote-tracking branch 'upstream/5.x' into ux-More-intuitive-links-in-small-grey-typeface-that-you-dont-know-are-links-is-one-example

        commit dd992b1f25eb9a6f65c3085e37317ed93d9473ea
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jun 26 15:57:44 2024 -0300

            Revert "underline when high contrast theme is enabled"

            This reverts commit d2121724746fabfbc30fc4a28d10d3bdb12ca4f7.

        commit d2121724746fabfbc30fc4a28d10d3bdb12ca4f7
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Mon Jun 17 14:45:40 2024 -0300

            underline when high contrast theme is enabled

    commit 8f0a6cb9ab3b467f3d48fc5bdf4e353f8935538a
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 31 10:52:32 2024 -0300

        fix for alignment of btn-default

    commit 50ac936ae87362f06b4c935dab27d143eeea3c77
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jul 26 11:45:20 2024 -0300

        fix for outline

    commit 022a762e771652e3ddd146d7cded25645dadbaaa
    Merge: 32768e6cd0 d0c1c4f0a2
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jul 26 10:56:25 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-ux-buttons

    commit 32768e6cd016d681c5445ecfbdb935212a140650
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 17 14:34:00 2024 -0300

        workaround: global search button background

    commit 4ea43a97c1ae38fb2b72e64f1ac80efd6769ca6e
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 17 14:28:25 2024 -0300

        workaround: dropdown links spacing

    commit cf59090e7d9cced4ad0c811713f038c369150ca5
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 17 14:03:40 2024 -0300

        workaround: non standard buttons

    commit 5b2805a05be4befcbd42cc23341bb78f55c52279
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 17 13:59:37 2024 -0300

        cs fix again

    commit a1a6aace54cf79352c324796e54d91fb4ec5f3d9
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 17 13:37:13 2024 -0300

        cs fix

    commit bb12063ae7ed9d4d03effc87d6e1285c33523cfd
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 17 13:33:39 2024 -0300

        fix: ghost buttons horizontal alignment

    commit ec22105a0556acec4717bf0b59808506b1b4daad
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 17 11:58:57 2024 -0300

        cs fix

    commit e95a625dbe7755d2d3651cab1f57cb85a3de88a3
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 17 11:56:43 2024 -0300

        fix: tertiary borders and toggle icon color

    commit 6b60a13107936d17b8c8a8233a6d8462c19129b2
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 17 11:46:06 2024 -0300

        [UI] Buttons

    commit b9960b69a460d768259961ba638b7e7feed0766b
    Merge: a7362377d3 6463f65be1
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 17 09:44:25 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-ux-buttons

    commit a7362377d38f53182e9d29cefe7b9d504880c9d4
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 10 15:32:58 2024 -0300

        wip

    commit d4bd95a7aeff8a9c9368b0b0742e5d8028a44361
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Sun Jun 16 15:53:07 2024 -0300

        wip

    commit a00d7c529805d10b7ada76564f1610c6e1d377ff
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Sun Jun 16 15:10:26 2024 -0300

        fix dropdown spacing

    commit ef88fd7be1f2a74854be904dfca3d29729fb5aaf
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 17:17:52 2024 -0300

        types of form/email/sms

    commit 3f540b85c7706e58471366c88a34ff1b0be47d85
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 17:07:27 2024 -0300

        campaign builder buttons + add icons

    commit e8433027a86eb406b289c2adefa0f3413586f87c
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 16:55:17 2024 -0300

        twig

    commit 47af9f1e1b183b2d8762d53ab4978af6651d8fb4
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 16:54:58 2024 -0300

        fix for icons

    commit 71d6ddd00b0ac86a2f0a3254f30711a77819af71
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 15:53:31 2024 -0300

        email settings

    commit 786206a9fc56354e953e6216a88450b8f2ac982a
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 15:47:48 2024 -0300

        change the way sizes are handled

    commit 7622ba7b09d67e387be885b3db9fdd5a4665ff25
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 15:18:21 2024 -0300

        Fetch IP Lookup Data Store button

    commit 45d8c141bb21bc6c221f9a56e3581299ef13e993
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 14:29:45 2024 -0300

        fix for icon-only

    commit 28bd9d4663dee4c81f36992470d5f9b7971d167d
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 13:39:25 2024 -0300

        modal buttons

    commit e734cc63783116dfc30fd5460fd29657086664b6
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 14 14:38:05 2024 -0300

        changes to twig/classes

    commit ac571e4f14241b3a84ebafa3f7f09dfdf71e4c05
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 14 14:37:19 2024 -0300

        style

    commit ed148c59536dae0e6995206399f1cfaeae26a910
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 14 13:14:14 2024 -0300

        new as primary

    commit ad4b34d5cf5fbab5aad34aa654d4870e6c6c122e
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Apr 17 14:16:58 2024 -0300

        same as last but for buttons

    commit 8361fc475d8613b19f59e7f51898cb1c9ade74fd
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 14 09:40:56 2024 -0300

        fix css to less

    commit 13031fc90b373bffe1ebfe84f6ac3f85e4dbad98
    Merge: 736860e03d c14523b74f
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 14 09:39:16 2024 -0300

        Merge branch 'ui-token-based-approach-for-interface-elements-and-colors' of https://github.com/andersonjeccel/mautic into ui-token-based-approach-for-interface-elements-and-colors

    commit 736860e03dd1b4238ade0365207681a690c5d232
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 14 09:39:06 2024 -0300

        revert to 0 based on community feedback

    commit c14523b74fb4686694aa5b9ac639c647c6642774
    Merge: 17f0b803fd b30170e771
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 14 08:24:07 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit 17f0b803fd6a22b76db2341e6aedef62ab0602fe
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jun 11 18:24:36 2024 -0300

        4px rounded standard

    commit 6c995524fede85960455b7419ac57a9317359317
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jun 11 18:09:21 2024 -0300

        another pallete generation method + accessibility improvement

    commit 94c5d31ffde8c492ab1d0ea60b7f4bd1c3e57add
    Merge: 08f44983c5 a5fd77fd24
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jun 11 09:57:11 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit 08f44983c58d6e2e9b334cc79ec8c91e9a374983
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 7 09:22:59 2024 -0300

        brand center enabled by default

    commit 9e36070b68021635564ef7d4fd27c0c91e8f7e48
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 7 09:17:41 2024 -0300

        separate file for tokens to avoid duplication on .css files

    commit c4889d04e24c4da65989ae8c8017833fc718f310
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 7 09:16:44 2024 -0300

        high contrast improvement

    commit 129cd68fd1ff0aa3b40948c6a86c12469aa5e29d
    Merge: f515944f43 e8d5b6c425
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 7 08:57:54 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit f515944f4384ae6dab7e68487c3fad8b0c7fa370
    Merge: 179c3128f0 aa4ac3ce31
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri May 31 11:03:44 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit 179c3128f0e42bb5382cbe60963706045d2a9325
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 22 15:16:59 2024 -0300

        removing duplicates

    commit e6f2b75b2407c18cc1083792749ba1d8e72b1dcf
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 14:00:26 2024 -0300

        enhanced border calc

    commit 6cdf1955f566edb4ca8328dc033983dea8bb885f
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 13:46:39 2024 -0300

        reduced max bdr value

    commit 3c8a34047a946962794b173ed933d2d700d1a407
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 11:58:54 2024 -0300

        sat improv

    commit f2cab43448902279a6f261ea43b2b1382705c8a7
    Merge: d32df8c2a2 a66c8d0c37
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 11:41:27 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit d32df8c2a2e12d08f46d71bacf8d21ad07a6f58a
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 11:40:50 2024 -0300

        Revert "transparency for borders when on brand bg"

        This reverts commit a8c4748bd3bcebf79907de76cbce8e15ff6f1f59.

    commit a8c4748bd3bcebf79907de76cbce8e15ff6f1f59
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 11:38:23 2024 -0300

        transparency for borders when on brand bg

    commit 65ee89b4b54efb7498dfdb54639a49fca7a56b31
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 10:48:48 2024 -0300

        fixes for secondary brand color support

    commit 40a23032c922db440c03724cc2e8deeb81b573b4
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 09:40:13 2024 -0300

        style fixes

    commit 74f49e00c0d40c696efe01b3bc3f068c64e0f3d6
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 09:31:23 2024 -0300

        secondary brand color support

    commit d0e7feccf4ed127bc045a5591da624ed3f193604
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 09:17:39 2024 -0300

        Responsive typography

    commit b3d2af4732ce1952b8b7b378c9415d30e09b8941
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 15 12:11:49 2024 -0300

        darker brand bg on dark theme

    commit c848335adbe2a9b343768ad24376b03a7043ce20
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 14 13:59:35 2024 -0300

        fix missing transparency bg colors

    commit 1675884bee30b3c4222e9c22be4ca9a60f9d1a02
    Merge: db55686120 4883fa0d24
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 14 09:13:00 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit db5568612049f60d04c71575b08f4b9ec2528b45
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 14 08:50:00 2024 -0300

        set implementation mode for high contrast + run grunt-compile-less

    commit d91ba0bc2b2a90a3dd7eb1594a48e5b60e60fd55
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri May 10 17:29:33 2024 -0300

        setting the dark theme implementation method

    commit f80989c428c922508b34624de8eb7b92aac49f21
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri May 10 15:31:04 2024 -0300

        tag to label token names

    commit 5e3bee9aec248718586995db4b21a717c0951cca
    Merge: ff5a8ed2ed e88cf968a3
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Thu May 9 13:44:30 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit ff5a8ed2edd248cc2438ac1bb281d3d56a10c508
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 17:21:07 2024 -0300

        improve radius calc

    commit 42d1c5d50373fc53a86f9ca1a7e7f4d407af76e4
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 17:16:57 2024 -0300

        utilities syntax fix

    commit c7d151b8392aa4f2aa6b6b85aa0899360aed2208
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 16:58:34 2024 -0300

        dark color scheme disabled by default to avoid conflicts

    commit af024668af7b635447bc85bcc3d5de1bcadbcbbd
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 15:46:57 2024 -0300

        remove duplicated imports

    commit 7f261c47b2520e970483f1f2e2b391eb5ded6daf
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 13:29:33 2024 -0300

        aligning previous tokens

    commit 4aaa9d98e1e7c45af52f8fee1968e7a13f8e7adb
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 13:27:24 2024 -0300

        grunt compile-less

    commit e7dbe89e16c2aa22158336a2d424edfea698c012
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 13:18:51 2024 -0300

        revert removing 5x duplicated import rules

        revert
        Revert "fixing broken darken/lighten"
        This reverts commit bcf4ac98e07c0c17162a74794a8161d5398c3d7c.

    commit af355d629f731b4eb52bcb0877b4be0b2d2cdd35
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 13:13:59 2024 -0300

        variables

    commit 5a97e52e340697a661125c3b15fe753a7034165f
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 7 17:17:45 2024 -0300

        fixing broken darken/lighten

    commit f4baec1edf8a2ae99ca4973b2aeae45c16de09e6
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 7 16:03:53 2024 -0300

        migrating mautic variables into bootstrap

    commit 23e3b6ffe9c0c6ffa96a44f1c39bc1e84467d880
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 7 15:45:35 2024 -0300

        incorporating all bootstrap variables

    commit 6a16fdf2cbe683bd9767331c2b0012bd537995fb
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 7 15:27:32 2024 -0300

        tokens

    * [UI] Themes

    * radio

    * text

    * borders

    * improving links visibility

    * tables

    * checkbox

    * pagination

    * header dropdown triangle

    * location maps

    * removing bg-transparent classes

    * buttons

    * small fix for table hover

    * fix for buttons

    * chosen fields

    * ckeditor

    * more fixes

    * better solarized light

    * freire theme

    * removing bg-white classes

    * improving compatibility

    * adding previews + general improv

    * cleaning tokens

    * minor enhancements

    * Squashed commit of the following:

    commit b33280c1e562820fdd550d4f1ce468c498286a2b
    Merge: 3733ab6d2b f455fc03f3
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Aug 30 13:48:53 2024 -0300

        Merge branch '5.x' into ui-dashboard-cards

    commit 3733ab6d2b02f574ae95fd1bfa2966a873a10a7e
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Thu Aug 29 14:41:18 2024 -0300

        add class based on page location

    commit b52a50a8358f391f5ae3ec8d3fcf12253ca89020
    Merge: 4f2cb78ae0 905be2ce7f
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Aug 21 10:05:05 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-dashboard-cards

    commit 4f2cb78ae0357704084df8454b90486dc4d56572
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Thu Aug 1 13:38:52 2024 -0300

        minor improvement

    commit a9174eb47609819f0602598bf7830ee126aca9bc
    Merge: f42b5de35d da21cfd455
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Thu Aug 1 13:09:16 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-dashboard-cards

    commit f42b5de35d6bfffef500c889b1fc522f7efd40fd
    Merge: b7790f4ced d0c1c4f0a2
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jul 30 09:22:32 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-dashboard-cards

    commit b7790f4ced19b4236c680131009784d759edab8e
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jul 19 16:53:02 2024 -0300

        minor change

    commit 6edba4317017abb5a332439281b79be205645267
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jul 19 14:30:30 2024 -0300

        [UI] Dashboard widgets

    commit 49f113c410923ca1772c009b48f74bc249e31938
    Merge: 0c2867f8a7 0d19f84e26
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jul 19 13:47:10 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-dashboard-cards

    commit 0c2867f8a7800c5ae4b33e60ca59f4b67002e26d
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 1 17:34:55 2024 -0300

        hover effect

    commit c5bd63df8ece6684efbaf6e340927f35278e7268
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 1 17:22:52 2024 -0300

        card

        card

    commit 0e0fcd2d23fb6683d1f79a355c813d81d729bc2b
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 1 17:08:12 2024 -0300

        Update dashboard.css

    * Squashed commit of the following:

    commit ecff7ebdbe8428036e2595ba9d83e6c4784847e7
    Merge: b542e191bf 93db7212c8
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 18 14:36:10 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-modals

    commit b542e191bfc6e49924dfbb7720a89f508943f19e
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 11:32:23 2024 -0300

        handle alternate theme automatically

    commit 542266b38261898cbaa658c63fa11e957089338e
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 10:49:01 2024 -0300

        improve animation

    commit b716c6d101d698d2f2ecfe7959ebe09581d83ea1
    Merge: 41ea014e2f 8ce397e2bb
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 10:15:39 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-modals

    commit 41ea014e2f6a62f43f87a2ac5a5a7683159c9912
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Aug 30 11:30:16 2024 -0300

        screen alignment

    commit 74bcee92f24822265d8ef9f1adf027e0154216ef
    Merge: 0352e97fd3 f455fc03f3
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Aug 30 11:18:22 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-modals

    commit 0352e97fd3488ec80e391b4738d36b82bca0a35e
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Jul 15 08:39:23 2024 -0300

        rebase

    commit 93182f79ab1dd6faa81558b52b91584d52a006e4
    Merge: 7b45383770 eee187925c
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Jul 15 08:23:58 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-modals

    commit 7b45383770e7169494e223f3b9b1b8e7e556d3f2
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Jun 17 14:23:44 2024 -0300

        tab content condition for form-control

    commit 084dd169c8b0682aa6043fc2f44339d770493a9c
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Jun 17 14:16:53 2024 -0300

        tab content

    commit 6feca69dd0bbbce182dc9fa3dcd391d4d69d1449
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Jun 17 14:12:50 2024 -0300

        footer spacing

    commit 05d1f5028602a1bacfcf12d12ab0375c0cdad76e
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Jun 17 14:12:35 2024 -0300

        fields

    commit c3a63b5453fa917acce7961ad553e6a56394d94a
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Jun 17 14:03:08 2024 -0300

        modal padding (increase by 1px)

    commit 099477c412f4b39a7a3bd6cdc5a79da479e111d8
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Jun 17 13:32:02 2024 -0300

        overlay token fix

    commit e038deead8aa0bbac5f62c79f602964e1096e667
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Jun 17 13:31:43 2024 -0300

        moving from buttons.less to modals.less

    commit e620570e85007fe0b46d96f59ff7e2364526efad
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Jun 17 13:29:47 2024 -0300

        modal background

    commit c20a1b1d01f6991b8685e1d88f138d77266f4087
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Jun 17 12:37:16 2024 -0300

        modal footer

    commit 8361fc475d8613b19f59e7f51898cb1c9ade74fd
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 14 09:40:56 2024 -0300

        fix css to less

    commit 13031fc90b373bffe1ebfe84f6ac3f85e4dbad98
    Merge: 736860e03d c14523b74f
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 14 09:39:16 2024 -0300

        Merge branch 'ui-token-based-approach-for-interface-elements-and-colors' of https://github.com/andersonjeccel/mautic into ui-token-based-approach-for-interface-elements-and-colors

    commit 736860e03dd1b4238ade0365207681a690c5d232
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 14 09:39:06 2024 -0300

        revert to 0 based on community feedback

    commit c14523b74fb4686694aa5b9ac639c647c6642774
    Merge: 17f0b803fd b30170e771
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 14 08:24:07 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit 17f0b803fd6a22b76db2341e6aedef62ab0602fe
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jun 11 18:24:36 2024 -0300

        4px rounded standard

    commit 6c995524fede85960455b7419ac57a9317359317
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jun 11 18:09:21 2024 -0300

        another pallete generation method + accessibility improvement

    commit 94c5d31ffde8c492ab1d0ea60b7f4bd1c3e57add
    Merge: 08f44983c5 a5fd77fd24
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jun 11 09:57:11 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit 08f44983c58d6e2e9b334cc79ec8c91e9a374983
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 7 09:22:59 2024 -0300

        brand center enabled by default

    commit 9e36070b68021635564ef7d4fd27c0c91e8f7e48
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 7 09:17:41 2024 -0300

        separate file for tokens to avoid duplication on .css files

    commit c4889d04e24c4da65989ae8c8017833fc718f310
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 7 09:16:44 2024 -0300

        high contrast improvement

    commit 129cd68fd1ff0aa3b40948c6a86c12469aa5e29d
    Merge: f515944f43 e8d5b6c425
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 7 08:57:54 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit f515944f4384ae6dab7e68487c3fad8b0c7fa370
    Merge: 179c3128f0 aa4ac3ce31
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri May 31 11:03:44 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit 179c3128f0e42bb5382cbe60963706045d2a9325
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 22 15:16:59 2024 -0300

        removing duplicates

    commit e6f2b75b2407c18cc1083792749ba1d8e72b1dcf
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 14:00:26 2024 -0300

        enhanced border calc

    commit 6cdf1955f566edb4ca8328dc033983dea8bb885f
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 13:46:39 2024 -0300

        reduced max bdr value

    commit 3c8a34047a946962794b173ed933d2d700d1a407
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 11:58:54 2024 -0300

        sat improv

    commit f2cab43448902279a6f261ea43b2b1382705c8a7
    Merge: d32df8c2a2 a66c8d0c37
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 11:41:27 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit d32df8c2a2e12d08f46d71bacf8d21ad07a6f58a
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 11:40:50 2024 -0300

        Revert "transparency for borders when on brand bg"

        This reverts commit a8c4748bd3bcebf79907de76cbce8e15ff6f1f59.

    commit a8c4748bd3bcebf79907de76cbce8e15ff6f1f59
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 11:38:23 2024 -0300

        transparency for borders when on brand bg

    commit 65ee89b4b54efb7498dfdb54639a49fca7a56b31
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 10:48:48 2024 -0300

        fixes for secondary brand color support

    commit 40a23032c922db440c03724cc2e8deeb81b573b4
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 09:40:13 2024 -0300

        style fixes

    commit 74f49e00c0d40c696efe01b3bc3f068c64e0f3d6
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 09:31:23 2024 -0300

        secondary brand color support

    commit d0e7feccf4ed127bc045a5591da624ed3f193604
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 09:17:39 2024 -0300

        Responsive typography

    commit b3d2af4732ce1952b8b7b378c9415d30e09b8941
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 15 12:11:49 2024 -0300

        darker brand bg on dark theme

    commit c848335adbe2a9b343768ad24376b03a7043ce20
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 14 13:59:35 2024 -0300

        fix missing transparency bg colors

    commit 1675884bee30b3c4222e9c22be4ca9a60f9d1a02
    Merge: db55686120 4883fa0d24
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 14 09:13:00 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit db5568612049f60d04c71575b08f4b9ec2528b45
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 14 08:50:00 2024 -0300

        set implementation mode for high contrast + run grunt-compile-less

    commit d91ba0bc2b2a90a3dd7eb1594a48e5b60e60fd55
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri May 10 17:29:33 2024 -0300

        setting the dark theme implementation method

    commit f80989c428c922508b34624de8eb7b92aac49f21
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri May 10 15:31:04 2024 -0300

        tag to label token names

    commit 5e3bee9aec248718586995db4b21a717c0951cca
    Merge: ff5a8ed2ed e88cf968a3
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Thu May 9 13:44:30 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit ff5a8ed2edd248cc2438ac1bb281d3d56a10c508
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 17:21:07 2024 -0300

        improve radius calc

    commit 42d1c5d50373fc53a86f9ca1a7e7f4d407af76e4
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 17:16:57 2024 -0300

        utilities syntax fix

    commit c7d151b8392aa4f2aa6b6b85aa0899360aed2208
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 16:58:34 2024 -0300

        dark color scheme disabled by default to avoid conflicts

    commit af024668af7b635447bc85bcc3d5de1bcadbcbbd
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 15:46:57 2024 -0300

        remove duplicated imports

    commit 7f261c47b2520e970483f1f2e2b391eb5ded6daf
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 13:29:33 2024 -0300

        aligning previous tokens

    commit 4aaa9d98e1e7c45af52f8fee1968e7a13f8e7adb
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 13:27:24 2024 -0300

        grunt compile-less

    commit e7dbe89e16c2aa22158336a2d424edfea698c012
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 13:18:51 2024 -0300

        revert removing 5x duplicated import rules

        revert
        Revert "fixing broken darken/lighten"
        This reverts commit bcf4ac98e07c0c17162a74794a8161d5398c3d7c.

    commit af355d629f731b4eb52bcb0877b4be0b2d2cdd35
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 13:13:59 2024 -0300

        variables

    commit 5a97e52e340697a661125c3b15fe753a7034165f
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 7 17:17:45 2024 -0300

        fixing broken darken/lighten

    commit f4baec1edf8a2ae99ca4973b2aeae45c16de09e6
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 7 16:03:53 2024 -0300

        migrating mautic variables into bootstrap

    commit 23e3b6ffe9c0c6ffa96a44f1c39bc1e84467d880
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 7 15:45:35 2024 -0300

        incorporating all bootstrap variables

    commit 6a16fdf2cbe683bd9767331c2b0012bd537995fb
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 7 15:27:32 2024 -0300

        tokens

    * more improvements

    * improving accordion

    * improving border-radius

    * converting button styles to mixin

    * improving themes display

    * remove remaining border from list tables

    * improving solarized dark

    * improving calendar compatibility

    * improving support colors

    * improving campaign builder styles

    * other minor improvements

    * fixing campaign modal view

    * finishing checkbox implementation

    * improving table colors

    * final bootstrap alignment

    * small improvement for CKEditor

    * Revert "screen alignment"

    This reverts commit 41ea014e2f6a62f43f87a2ac5a5a7683159c9912.

    * improve ux for the copy button

    * styling fix for copy icon

    * improvement for notes button

    * improving focus builder

    * improving outline stability

    * improving import screen labels

    * improving input outline for keyboard navigation

    * Revert "fix the login screen layout (#14131)"

    This reverts commit 37c82b5867e4d87e89519ba624b1cb9d98eec9ae.

    * Improve ux by using Save to make chan…
escopecz added a commit that referenced this pull request Oct 21, 2024
* Attract theme

* Squashed commit of the following:

commit d2b63ff9e5af3eccf27edca9b3de54a83ae2831f
Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
Date:   Fri Oct 11 12:24:38 2024 -0300

    making default unsubscribe page reusable

commit 8d3445fda5eb6ffc4275d4460a347c914a1e4189
Merge: ed4f08dff4 93b59ba7f0
Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
Date:   Thu Oct 10 14:03:47 2024 -0300

    Merge branch '5.x' into ux-basic-themes

commit 93b59ba7f04d12a0c77cf30b48369e7f3819a309
Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
Date:   Thu Oct 10 11:02:41 2024 -0300

    [UI] Interface themes (#13767)

    * Squashed commit of the following:

    commit 0a3b75c21cfa59cc64aec516cefd098e0ef6b4b8
    Merge: bda420418c daad1994ff
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Sep 16 12:17:54 2024 -0300

        Merge branch '5.x' into ui-accessibility-features-in-account-settings

    commit bda420418c2ce6113c33d40e42ba719ffb829ffd
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Sep 16 09:08:30 2024 -0300

        fix cs

    commit e6bf5390e3e64e25b069c06c3dfd269fa898b664
    Merge: 48e422dda7 f7e929ca85
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Sep 13 13:34:23 2024 -0300

        Merge branch '5.x' into ui-accessibility-features-in-account-settings

    commit 48e422dda74e2f64a9ed516a8b68b9d1c0f7492b
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Sep 13 09:56:12 2024 -0300

        fix for keyboard shortcuts

    commit 919d389bc3cff4cb9ecb913f487514230e13d975
    Merge: c5ccd4677e 713b5a2c13
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Sep 13 09:37:40 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-accessibility-features-in-account-settings

    commit c5ccd4677ecaf94eac78a7b49b724e9021807994
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Sep 13 09:27:56 2024 -0300

        improve reliability for underlined links

    commit f36b96ddc6d592039bf86779f535844c6faa7b53
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Thu Sep 12 16:56:28 2024 -0300

        i wasn't happy re. descriptions

    commit b286e2b35781f3a6519d3d7f7cbba279fa74465f
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 16:27:26 2024 -0300

        improve reduced transparency reliability

    commit 335ca22ba11201ddcb19bbb1612ade2cfcb28677
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 16:02:56 2024 -0300

        polishing the underline solution

    commit 1ef99ca611dee20797544159eccbdc262fb9330e
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 16:00:56 2024 -0300

        letting it ready to merge

    commit 659369ba2c499df1e03f4aece9199c83bcd8d84e
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 15:54:15 2024 -0300

        splitting into right files

    commit 5a87fda8379fa1d7694ffa967b7accb342121bec
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 15:51:43 2024 -0300

        main JS code

    commit 2f9e0dcb4b265d2edc0a5e35aa41a92fc289a44f
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 15:51:22 2024 -0300

        improving layout and adding features

    commit 476c6085bbf2ae4241fe865a4c8d6ce51e8f072d
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 15:51:02 2024 -0300

        separating radio styles

    commit fc536f5794e768e95ead0a61c1ab2163dfafa5cd
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 15:50:52 2024 -0300

        making mixin accessible

    commit 9877dcb8cf8ca3ff990c8f7a83952b0f89120ffe
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 15:50:23 2024 -0300

        text-help class

    commit 75d75c64e52571e86dd6b74e6335b0f02022d61c
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 15:50:17 2024 -0300

        grid fix

    commit 4a4ff6f19a6dfbdb3d07cdba0f78f4db599b8bc8
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 15:50:05 2024 -0300

        radio input style

    commit b4949bc2380c899671db405310e2b7ebb906453f
    Merge: 35fa882ae1 8ce397e2bb
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 12:18:18 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-accessibility-features-in-account-settings

    commit 35fa882ae1f53ddb1c246e21bfabb9674dd4f535
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jun 25 13:12:18 2024 -0300

        fix missing translation

    commit 888d55d4f43350d52787666c6accd57e1933ff05
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jun 25 11:54:33 2024 -0300

        js for button toggles that append attributes to the html tag

    commit e8e693c480f84dd0d2bbdf7deec9e8479ac06532
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jun 25 11:52:14 2024 -0300

        features toggle

    commit f885de2b16b7a95a4f6ae56bc88af4e139315073
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 21 18:03:17 2024 -0300

        wip

    commit 3ad8223dd518356ad9fb30cc481b873280efe974
    Merge: f79216dee4 b228705712
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 21 10:35:56 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit f79216dee492b657dd1fd625a59554d2a22c82b2
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 21 10:35:19 2024 -0300

        semantic fixes

    commit 8361fc475d8613b19f59e7f51898cb1c9ade74fd
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 14 09:40:56 2024 -0300

        fix css to less

    commit 13031fc90b373bffe1ebfe84f6ac3f85e4dbad98
    Merge: 736860e03d c14523b74f
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 14 09:39:16 2024 -0300

        Merge branch 'ui-token-based-approach-for-interface-elements-and-colors' of https://github.com/andersonjeccel/mautic into ui-token-based-approach-for-interface-elements-and-colors

    commit 736860e03dd1b4238ade0365207681a690c5d232
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 14 09:39:06 2024 -0300

        revert to 0 based on community feedback

    commit c14523b74fb4686694aa5b9ac639c647c6642774
    Merge: 17f0b803fd b30170e771
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 14 08:24:07 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit 17f0b803fd6a22b76db2341e6aedef62ab0602fe
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jun 11 18:24:36 2024 -0300

        4px rounded standard

    commit 6c995524fede85960455b7419ac57a9317359317
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jun 11 18:09:21 2024 -0300

        another pallete generation method + accessibility improvement

    commit 94c5d31ffde8c492ab1d0ea60b7f4bd1c3e57add
    Merge: 08f44983c5 a5fd77fd24
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jun 11 09:57:11 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit 08f44983c58d6e2e9b334cc79ec8c91e9a374983
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 7 09:22:59 2024 -0300

        brand center enabled by default

    commit 9e36070b68021635564ef7d4fd27c0c91e8f7e48
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 7 09:17:41 2024 -0300

        separate file for tokens to avoid duplication on .css files

    commit c4889d04e24c4da65989ae8c8017833fc718f310
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 7 09:16:44 2024 -0300

        high contrast improvement

    commit 129cd68fd1ff0aa3b40948c6a86c12469aa5e29d
    Merge: f515944f43 e8d5b6c425
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 7 08:57:54 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit f515944f4384ae6dab7e68487c3fad8b0c7fa370
    Merge: 179c3128f0 aa4ac3ce31
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri May 31 11:03:44 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit 179c3128f0e42bb5382cbe60963706045d2a9325
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 22 15:16:59 2024 -0300

        removing duplicates

    commit e6f2b75b2407c18cc1083792749ba1d8e72b1dcf
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 14:00:26 2024 -0300

        enhanced border calc

    commit 6cdf1955f566edb4ca8328dc033983dea8bb885f
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 13:46:39 2024 -0300

        reduced max bdr value

    commit 3c8a34047a946962794b173ed933d2d700d1a407
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 11:58:54 2024 -0300

        sat improv

    commit f2cab43448902279a6f261ea43b2b1382705c8a7
    Merge: d32df8c2a2 a66c8d0c37
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 11:41:27 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit d32df8c2a2e12d08f46d71bacf8d21ad07a6f58a
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 11:40:50 2024 -0300

        Revert "transparency for borders when on brand bg"

        This reverts commit a8c4748bd3bcebf79907de76cbce8e15ff6f1f59.

    commit a8c4748bd3bcebf79907de76cbce8e15ff6f1f59
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 11:38:23 2024 -0300

        transparency for borders when on brand bg

    commit 65ee89b4b54efb7498dfdb54639a49fca7a56b31
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 10:48:48 2024 -0300

        fixes for secondary brand color support

    commit 40a23032c922db440c03724cc2e8deeb81b573b4
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 09:40:13 2024 -0300

        style fixes

    commit 74f49e00c0d40c696efe01b3bc3f068c64e0f3d6
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 09:31:23 2024 -0300

        secondary brand color support

    commit d0e7feccf4ed127bc045a5591da624ed3f193604
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 09:17:39 2024 -0300

        Responsive typography

    commit b3d2af4732ce1952b8b7b378c9415d30e09b8941
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 15 12:11:49 2024 -0300

        darker brand bg on dark theme

    commit c848335adbe2a9b343768ad24376b03a7043ce20
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 14 13:59:35 2024 -0300

        fix missing transparency bg colors

    commit 1675884bee30b3c4222e9c22be4ca9a60f9d1a02
    Merge: db55686120 4883fa0d24
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 14 09:13:00 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit db5568612049f60d04c71575b08f4b9ec2528b45
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 14 08:50:00 2024 -0300

        set implementation mode for high contrast + run grunt-compile-less

    commit d91ba0bc2b2a90a3dd7eb1594a48e5b60e60fd55
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri May 10 17:29:33 2024 -0300

        setting the dark theme implementation method

    commit f80989c428c922508b34624de8eb7b92aac49f21
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri May 10 15:31:04 2024 -0300

        tag to label token names

    commit 5e3bee9aec248718586995db4b21a717c0951cca
    Merge: ff5a8ed2ed e88cf968a3
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Thu May 9 13:44:30 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit ff5a8ed2edd248cc2438ac1bb281d3d56a10c508
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 17:21:07 2024 -0300

        improve radius calc

    commit 42d1c5d50373fc53a86f9ca1a7e7f4d407af76e4
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 17:16:57 2024 -0300

        utilities syntax fix

    commit c7d151b8392aa4f2aa6b6b85aa0899360aed2208
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 16:58:34 2024 -0300

        dark color scheme disabled by default to avoid conflicts

    commit af024668af7b635447bc85bcc3d5de1bcadbcbbd
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 15:46:57 2024 -0300

        remove duplicated imports

    commit 7f261c47b2520e970483f1f2e2b391eb5ded6daf
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 13:29:33 2024 -0300

        aligning previous tokens

    commit 4aaa9d98e1e7c45af52f8fee1968e7a13f8e7adb
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 13:27:24 2024 -0300

        grunt compile-less

    commit e7dbe89e16c2aa22158336a2d424edfea698c012
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 13:18:51 2024 -0300

        revert removing 5x duplicated import rules

        revert
        Revert "fixing broken darken/lighten"
        This reverts commit bcf4ac98e07c0c17162a74794a8161d5398c3d7c.

    commit af355d629f731b4eb52bcb0877b4be0b2d2cdd35
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 13:13:59 2024 -0300

        variables

    commit 5a97e52e340697a661125c3b15fe753a7034165f
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 7 17:17:45 2024 -0300

        fixing broken darken/lighten

    commit f4baec1edf8a2ae99ca4973b2aeae45c16de09e6
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 7 16:03:53 2024 -0300

        migrating mautic variables into bootstrap

    commit 23e3b6ffe9c0c6ffa96a44f1c39bc1e84467d880
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 7 15:45:35 2024 -0300

        incorporating all bootstrap variables

    commit 6a16fdf2cbe683bd9767331c2b0012bd537995fb
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 7 15:27:32 2024 -0300

        tokens

    * Squashed commit of the following:

    commit 6d4bd1bccac03b9175221675ad80d0ae0ca9a91b
    Merge: 4bef8fe044 8ce397e2bb
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 10:13:52 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-ux-buttons

    commit 4bef8fe044fc925543181b006b320c46839161b7
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Jun 17 12:37:16 2024 -0300

        modal footer

    commit f2060efa43f3d0a627c2de9ef3a4fc829279cb5e
    Merge: df4211423f a5e4d349cf
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 4 15:12:55 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-ux-buttons

    commit df4211423f2a12b7c2fe40b3f918f6a72e496d33
    Merge: 33a38f4e93 3959038712
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 4 07:47:23 2024 -0300

        Merge branch '5.x' into ui-ux-buttons

    commit 33a38f4e93e650ee45dba218fa5da84146b77381
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Sep 3 16:22:27 2024 -0300

        fix test

    commit f02492506644aa7dbb2da5ea19a5d54df84c9f58
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Sep 3 13:28:05 2024 -0300

        reset dropdown-toggle

    commit 9a3172b84ada7f0a0ad93e554ba8948a3f2ae8dc
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Aug 30 12:00:07 2024 -0300

        improvement to styles

    commit 52ee5d0e0eb08877c07104a2aee66bb421e0ac0a
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Aug 30 11:17:59 2024 -0300

        stability improvement

    commit 13ad743eebc120f7fd6cf937e452e0f6e2681084
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Aug 30 10:23:37 2024 -0300

        Squashed commit of the following:

        commit 62c7d49dc7938f4c63a2071d47aa56929cb3aa1f
        Merge: a33f0aa9f8 f455fc03f3
        Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Fri Aug 30 10:22:40 2024 -0300

            Merge remote-tracking branch 'upstream/5.x' into ux-replace-default-buttons-with-ghost

        commit a33f0aa9f867e26e803e23570e536e4b427faf89
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Thu Jul 18 11:38:52 2024 -0300

            fix send icon

        commit b408cd412305468d89f17edf4af18e0f34f4a9ff
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Thu Jul 18 11:37:49 2024 -0300

            fix: page actions buttons

        commit c1d664db2a3fe157a053044de4c0438d13ed14a5
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jul 17 14:15:50 2024 -0300

            fix: dashboard daterange button

        commit de0816956f4f6a9a6d40c764e9bf124306ee9fd9
        Merge: 21c84f2138 cf59090e7d
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jul 17 14:09:27 2024 -0300

            Merge branch 'ui-ux-buttons' into ux-replace-default-buttons-with-ghost

        commit 21c84f2138d1ae3373360ab55b7ff8ea9959436c
        Merge: 20eb96183a a1a6aace54
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jul 17 13:38:43 2024 -0300

            Merge branch 'ui-ux-buttons' into ux-replace-default-buttons-with-ghost

        commit 20eb96183a0e2180b31bddb079eddd7af0501f6d
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jul 17 12:51:55 2024 -0300

            Revert ".btn-default in themes?"

            This reverts commit 19c24f29450ef870ae05910bae0b1d4b0d1439bf.

        commit 19c24f29450ef870ae05910bae0b1d4b0d1439bf
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jul 17 12:48:42 2024 -0300

            .btn-default in themes?

        commit 2b57c56f39daf49408e37e9300949e64d90714a3
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jul 17 12:47:51 2024 -0300

            [UI] Assigning hierarchycal buttons to buttons

    commit 2a119693929195282746f3db7cc7eaefdac7b9c5
    Merge: f535d4c482 f455fc03f3
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Aug 30 10:16:56 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-ux-buttons

    commit f535d4c482d7c47577aa10332fee88bf893dd977
    Merge: 5eb8f290f0 f66e8c9a78
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Aug 28 14:42:50 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-ux-buttons

    commit 5eb8f290f0976cd67516807452c3348f8623709d
    Merge: 8ca54b15bb 33cd7b67ac
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Aug 27 13:00:24 2024 -0300

        Merge branch '5.x' into ui-ux-buttons

    commit 8ca54b15bb18b49fd3651c2abf933e8e02184ce4
    Merge: 8ae17306b4 1a18ca2232
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Aug 27 09:45:20 2024 -0300

        Merge branch '5.x' into ui-ux-buttons

    commit 8ae17306b4b6663566265a6535ace24c3c190528
    Merge: e74cb7e99b 25f97a6d39
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Aug 23 08:53:36 2024 -0300

        Merge branch '5.x' into ui-ux-buttons

    commit e74cb7e99b257564ec21bafdd327aed027815f0c
    Merge: 42dad267f9 905be2ce7f
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Aug 21 12:34:42 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-ux-buttons

    commit 42dad267f90eed62dc9929882b9e70875f9a8431
    Merge: 1adcd90380 e2fcd1007e
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Aug 20 10:50:23 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-ux-buttons

    commit 1adcd903808c4625ff1925968dec0c482c7587e7
    Merge: 03a0e421e4 8ed38987c5
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Aug 14 15:01:37 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-ux-buttons

    commit 03a0e421e40e3f1c9c5d43353cbd705db40fbe8c
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Thu Aug 1 12:44:52 2024 -0300

        sidebar fix

    commit 3ed632948790ea4e820f6073aaaedacb2d123e83
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Thu Aug 1 12:22:50 2024 -0300

        comment

    commit 6196db475b507c202d7af474a05aae7f38ec03bd
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Thu Aug 1 11:53:12 2024 -0300

        fixing @LordRembo

    commit e49cb44d18e2edf44702624d0d79cb36c0376122
    Merge: 66cee95b8e da21cfd455
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Thu Aug 1 10:11:39 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-ux-buttons

    commit 66cee95b8e58741f1864b47137e9dedb8abb28d2
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 31 11:28:50 2024 -0300

        fix outline

    commit 4a8457dace96208f5b4292bbd4d0608da51339a3
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 31 10:56:47 2024 -0300

        Squashed commit of the following:

        commit 9a035090a111584d9e677b2c9d5582310ea05bd3
        Merge: 5f73439b0f c95fcd7a32
        Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jul 31 10:54:22 2024 -0300

            Merge remote-tracking branch 'upstream/5.x' into ux-More-intuitive-links-in-small-grey-typeface-that-you-dont-know-are-links-is-one-example

        commit c95fcd7a327c3d23dd068e46676e5f9892d3e839
        Author: Patrick Jenkner <139468697+PatrickJenkner@users.noreply.github.com>
        Date:   Wed Jul 31 14:49:08 2024 +0200

            Re-enable rendering of html in form field labels (#14026)

            * add "raw" to form field labels to enable html rendering

            * replace "raw" filter with "purify" filter

        commit a703a3411baaec09b6dc6e6c7c723eda422c2ded
        Author: Mattias Michaux <mattias.michaux@dropsolid.com>
        Date:   Wed Jul 31 10:54:58 2024 +0200

            Ensure asset and page titles are correctly shown in ckeditor (#13678)

            * Ensure asset and page titles are correctly shown in ckeditor

            * deprecate methods that no longer should be used

            ---------

            Co-authored-by: Ruth Cheesley <ruth@ruthcheesley.co.uk>
            Co-authored-by: John Linhart <admin@escope.cz>

        commit f46d79fafbb0a3fda4e8bc0d48c9f6546e8f77b5
        Author: Abhisek Mazumdar <abhisekmazumdar@users.noreply.github.com>
        Date:   Wed Jul 31 13:55:49 2024 +0530

            Fix generatePageTitle to retrieve the correct page header tag. (#13921)

        commit 0098ccf45c28dacb124759a1fadb9b10e50d7c04
        Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jul 31 04:44:59 2024 -0300

            [UI] Replace FA icons (part 3) (#13957)

            * [UI] Stable - replace FA icons

            * fa-fw / ri-fw

            * fa-lg / ri-lg

            * class="fa / class="

            * potentially unstable

            * potentially unstable

            * fix: duplicated search icon

        commit a69b55c9c60840bc91b10f7b5d414d8ab7f938f4
        Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jul 31 04:43:53 2024 -0300

            [UX] Copy code blocks on click (#13897)

            * [UX] Copy code blocks on click

            * fix AJAX calls

        commit 5f73439b0f7a10d2e41c7f3957056dedf8fe5ce8
        Merge: dbce124229 32aeb2a25b
        Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jul 24 14:24:31 2024 -0300

            Merge branch '5.x' into ux-More-intuitive-links-in-small-grey-typeface-that-you-dont-know-are-links-is-one-example

        commit dbce1242296673f14b53d47df74ce521b21e3421
        Merge: d7095cf42e 6463f65be1
        Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Tue Jul 16 14:32:32 2024 -0300

            Merge branch '5.x' into ux-More-intuitive-links-in-small-grey-typeface-that-you-dont-know-are-links-is-one-example

        commit d7095cf42efcb1194f2cf5d57c13cfa7fefd0870
        Merge: ea1a97facf bf3794331b
        Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Mon Jul 15 11:12:28 2024 -0300

            Merge branch '5.x' into ux-More-intuitive-links-in-small-grey-typeface-that-you-dont-know-are-links-is-one-example

        commit ea1a97facfd9b0911f86b016f935c7673140a6b6
        Merge: c3d62a5ab5 eee187925c
        Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Mon Jul 15 07:47:53 2024 -0300

            Merge branch '5.x' into ux-More-intuitive-links-in-small-grey-typeface-that-you-dont-know-are-links-is-one-example

        commit c3d62a5ab5481540bd3aaaf43bdd052beda45ae1
        Merge: 5b91ca49b3 77e642dce3
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Tue Jul 9 13:30:36 2024 -0300

            Merge remote-tracking branch 'upstream/5.x' into ux-More-intuitive-links-in-small-grey-typeface-that-you-dont-know-are-links-is-one-example

        commit 5b91ca49b32e115211316484b04941828f432d60
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Mon Jul 1 17:54:41 2024 -0300

            outline

        commit 7d3ee435eb89e63f4e486927a2d113ff70dab067
        Merge: a7fbf15cc9 760bf0c54c
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Mon Jul 1 17:37:38 2024 -0300

            Merge remote-tracking branch 'upstream/5.x' into ux-More-intuitive-links-in-small-grey-typeface-that-you-dont-know-are-links-is-one-example

        commit a7fbf15cc956c1cf75b911e1d42532739aa37930
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jun 26 16:06:22 2024 -0300

            Assign links and body text color to tokens

        commit 26f781db9bb87630a700d3eefa7b4f7564aa7361
        Merge: dd992b1f25 4fb0c5c441
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jun 26 16:01:19 2024 -0300

            Merge remote-tracking branch 'upstream/5.x' into ux-More-intuitive-links-in-small-grey-typeface-that-you-dont-know-are-links-is-one-example

        commit dd992b1f25eb9a6f65c3085e37317ed93d9473ea
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Wed Jun 26 15:57:44 2024 -0300

            Revert "underline when high contrast theme is enabled"

            This reverts commit d2121724746fabfbc30fc4a28d10d3bdb12ca4f7.

        commit d2121724746fabfbc30fc4a28d10d3bdb12ca4f7
        Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
        Date:   Mon Jun 17 14:45:40 2024 -0300

            underline when high contrast theme is enabled

    commit 8f0a6cb9ab3b467f3d48fc5bdf4e353f8935538a
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 31 10:52:32 2024 -0300

        fix for alignment of btn-default

    commit 50ac936ae87362f06b4c935dab27d143eeea3c77
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jul 26 11:45:20 2024 -0300

        fix for outline

    commit 022a762e771652e3ddd146d7cded25645dadbaaa
    Merge: 32768e6cd0 d0c1c4f0a2
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jul 26 10:56:25 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-ux-buttons

    commit 32768e6cd016d681c5445ecfbdb935212a140650
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 17 14:34:00 2024 -0300

        workaround: global search button background

    commit 4ea43a97c1ae38fb2b72e64f1ac80efd6769ca6e
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 17 14:28:25 2024 -0300

        workaround: dropdown links spacing

    commit cf59090e7d9cced4ad0c811713f038c369150ca5
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 17 14:03:40 2024 -0300

        workaround: non standard buttons

    commit 5b2805a05be4befcbd42cc23341bb78f55c52279
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 17 13:59:37 2024 -0300

        cs fix again

    commit a1a6aace54cf79352c324796e54d91fb4ec5f3d9
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 17 13:37:13 2024 -0300

        cs fix

    commit bb12063ae7ed9d4d03effc87d6e1285c33523cfd
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 17 13:33:39 2024 -0300

        fix: ghost buttons horizontal alignment

    commit ec22105a0556acec4717bf0b59808506b1b4daad
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 17 11:58:57 2024 -0300

        cs fix

    commit e95a625dbe7755d2d3651cab1f57cb85a3de88a3
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 17 11:56:43 2024 -0300

        fix: tertiary borders and toggle icon color

    commit 6b60a13107936d17b8c8a8233a6d8462c19129b2
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 17 11:46:06 2024 -0300

        [UI] Buttons

    commit b9960b69a460d768259961ba638b7e7feed0766b
    Merge: a7362377d3 6463f65be1
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 17 09:44:25 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-ux-buttons

    commit a7362377d38f53182e9d29cefe7b9d504880c9d4
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Jul 10 15:32:58 2024 -0300

        wip

    commit d4bd95a7aeff8a9c9368b0b0742e5d8028a44361
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Sun Jun 16 15:53:07 2024 -0300

        wip

    commit a00d7c529805d10b7ada76564f1610c6e1d377ff
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Sun Jun 16 15:10:26 2024 -0300

        fix dropdown spacing

    commit ef88fd7be1f2a74854be904dfca3d29729fb5aaf
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 17:17:52 2024 -0300

        types of form/email/sms

    commit 3f540b85c7706e58471366c88a34ff1b0be47d85
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 17:07:27 2024 -0300

        campaign builder buttons + add icons

    commit e8433027a86eb406b289c2adefa0f3413586f87c
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 16:55:17 2024 -0300

        twig

    commit 47af9f1e1b183b2d8762d53ab4978af6651d8fb4
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 16:54:58 2024 -0300

        fix for icons

    commit 71d6ddd00b0ac86a2f0a3254f30711a77819af71
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 15:53:31 2024 -0300

        email settings

    commit 786206a9fc56354e953e6216a88450b8f2ac982a
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 15:47:48 2024 -0300

        change the way sizes are handled

    commit 7622ba7b09d67e387be885b3db9fdd5a4665ff25
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 15:18:21 2024 -0300

        Fetch IP Lookup Data Store button

    commit 45d8c141bb21bc6c221f9a56e3581299ef13e993
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 14:29:45 2024 -0300

        fix for icon-only

    commit 28bd9d4663dee4c81f36992470d5f9b7971d167d
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 13:39:25 2024 -0300

        modal buttons

    commit e734cc63783116dfc30fd5460fd29657086664b6
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 14 14:38:05 2024 -0300

        changes to twig/classes

    commit ac571e4f14241b3a84ebafa3f7f09dfdf71e4c05
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 14 14:37:19 2024 -0300

        style

    commit ed148c59536dae0e6995206399f1cfaeae26a910
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 14 13:14:14 2024 -0300

        new as primary

    commit ad4b34d5cf5fbab5aad34aa654d4870e6c6c122e
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Apr 17 14:16:58 2024 -0300

        same as last but for buttons

    commit 8361fc475d8613b19f59e7f51898cb1c9ade74fd
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 14 09:40:56 2024 -0300

        fix css to less

    commit 13031fc90b373bffe1ebfe84f6ac3f85e4dbad98
    Merge: 736860e03d c14523b74f
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 14 09:39:16 2024 -0300

        Merge branch 'ui-token-based-approach-for-interface-elements-and-colors' of https://github.com/andersonjeccel/mautic into ui-token-based-approach-for-interface-elements-and-colors

    commit 736860e03dd1b4238ade0365207681a690c5d232
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 14 09:39:06 2024 -0300

        revert to 0 based on community feedback

    commit c14523b74fb4686694aa5b9ac639c647c6642774
    Merge: 17f0b803fd b30170e771
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 14 08:24:07 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit 17f0b803fd6a22b76db2341e6aedef62ab0602fe
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jun 11 18:24:36 2024 -0300

        4px rounded standard

    commit 6c995524fede85960455b7419ac57a9317359317
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jun 11 18:09:21 2024 -0300

        another pallete generation method + accessibility improvement

    commit 94c5d31ffde8c492ab1d0ea60b7f4bd1c3e57add
    Merge: 08f44983c5 a5fd77fd24
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jun 11 09:57:11 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit 08f44983c58d6e2e9b334cc79ec8c91e9a374983
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 7 09:22:59 2024 -0300

        brand center enabled by default

    commit 9e36070b68021635564ef7d4fd27c0c91e8f7e48
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 7 09:17:41 2024 -0300

        separate file for tokens to avoid duplication on .css files

    commit c4889d04e24c4da65989ae8c8017833fc718f310
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 7 09:16:44 2024 -0300

        high contrast improvement

    commit 129cd68fd1ff0aa3b40948c6a86c12469aa5e29d
    Merge: f515944f43 e8d5b6c425
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 7 08:57:54 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit f515944f4384ae6dab7e68487c3fad8b0c7fa370
    Merge: 179c3128f0 aa4ac3ce31
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri May 31 11:03:44 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit 179c3128f0e42bb5382cbe60963706045d2a9325
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 22 15:16:59 2024 -0300

        removing duplicates

    commit e6f2b75b2407c18cc1083792749ba1d8e72b1dcf
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 14:00:26 2024 -0300

        enhanced border calc

    commit 6cdf1955f566edb4ca8328dc033983dea8bb885f
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 13:46:39 2024 -0300

        reduced max bdr value

    commit 3c8a34047a946962794b173ed933d2d700d1a407
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 11:58:54 2024 -0300

        sat improv

    commit f2cab43448902279a6f261ea43b2b1382705c8a7
    Merge: d32df8c2a2 a66c8d0c37
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 11:41:27 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit d32df8c2a2e12d08f46d71bacf8d21ad07a6f58a
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 11:40:50 2024 -0300

        Revert "transparency for borders when on brand bg"

        This reverts commit a8c4748bd3bcebf79907de76cbce8e15ff6f1f59.

    commit a8c4748bd3bcebf79907de76cbce8e15ff6f1f59
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 11:38:23 2024 -0300

        transparency for borders when on brand bg

    commit 65ee89b4b54efb7498dfdb54639a49fca7a56b31
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 10:48:48 2024 -0300

        fixes for secondary brand color support

    commit 40a23032c922db440c03724cc2e8deeb81b573b4
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 09:40:13 2024 -0300

        style fixes

    commit 74f49e00c0d40c696efe01b3bc3f068c64e0f3d6
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 09:31:23 2024 -0300

        secondary brand color support

    commit d0e7feccf4ed127bc045a5591da624ed3f193604
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 09:17:39 2024 -0300

        Responsive typography

    commit b3d2af4732ce1952b8b7b378c9415d30e09b8941
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 15 12:11:49 2024 -0300

        darker brand bg on dark theme

    commit c848335adbe2a9b343768ad24376b03a7043ce20
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 14 13:59:35 2024 -0300

        fix missing transparency bg colors

    commit 1675884bee30b3c4222e9c22be4ca9a60f9d1a02
    Merge: db55686120 4883fa0d24
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 14 09:13:00 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit db5568612049f60d04c71575b08f4b9ec2528b45
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 14 08:50:00 2024 -0300

        set implementation mode for high contrast + run grunt-compile-less

    commit d91ba0bc2b2a90a3dd7eb1594a48e5b60e60fd55
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri May 10 17:29:33 2024 -0300

        setting the dark theme implementation method

    commit f80989c428c922508b34624de8eb7b92aac49f21
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri May 10 15:31:04 2024 -0300

        tag to label token names

    commit 5e3bee9aec248718586995db4b21a717c0951cca
    Merge: ff5a8ed2ed e88cf968a3
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Thu May 9 13:44:30 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit ff5a8ed2edd248cc2438ac1bb281d3d56a10c508
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 17:21:07 2024 -0300

        improve radius calc

    commit 42d1c5d50373fc53a86f9ca1a7e7f4d407af76e4
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 17:16:57 2024 -0300

        utilities syntax fix

    commit c7d151b8392aa4f2aa6b6b85aa0899360aed2208
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 16:58:34 2024 -0300

        dark color scheme disabled by default to avoid conflicts

    commit af024668af7b635447bc85bcc3d5de1bcadbcbbd
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 15:46:57 2024 -0300

        remove duplicated imports

    commit 7f261c47b2520e970483f1f2e2b391eb5ded6daf
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 13:29:33 2024 -0300

        aligning previous tokens

    commit 4aaa9d98e1e7c45af52f8fee1968e7a13f8e7adb
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 13:27:24 2024 -0300

        grunt compile-less

    commit e7dbe89e16c2aa22158336a2d424edfea698c012
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 13:18:51 2024 -0300

        revert removing 5x duplicated import rules

        revert
        Revert "fixing broken darken/lighten"
        This reverts commit bcf4ac98e07c0c17162a74794a8161d5398c3d7c.

    commit af355d629f731b4eb52bcb0877b4be0b2d2cdd35
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 13:13:59 2024 -0300

        variables

    commit 5a97e52e340697a661125c3b15fe753a7034165f
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 7 17:17:45 2024 -0300

        fixing broken darken/lighten

    commit f4baec1edf8a2ae99ca4973b2aeae45c16de09e6
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 7 16:03:53 2024 -0300

        migrating mautic variables into bootstrap

    commit 23e3b6ffe9c0c6ffa96a44f1c39bc1e84467d880
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 7 15:45:35 2024 -0300

        incorporating all bootstrap variables

    commit 6a16fdf2cbe683bd9767331c2b0012bd537995fb
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 7 15:27:32 2024 -0300

        tokens

    * [UI] Themes

    * radio

    * text

    * borders

    * improving links visibility

    * tables

    * checkbox

    * pagination

    * header dropdown triangle

    * location maps

    * removing bg-transparent classes

    * buttons

    * small fix for table hover

    * fix for buttons

    * chosen fields

    * ckeditor

    * more fixes

    * better solarized light

    * freire theme

    * removing bg-white classes

    * improving compatibility

    * adding previews + general improv

    * cleaning tokens

    * minor enhancements

    * Squashed commit of the following:

    commit b33280c1e562820fdd550d4f1ce468c498286a2b
    Merge: 3733ab6d2b f455fc03f3
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Aug 30 13:48:53 2024 -0300

        Merge branch '5.x' into ui-dashboard-cards

    commit 3733ab6d2b02f574ae95fd1bfa2966a873a10a7e
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Thu Aug 29 14:41:18 2024 -0300

        add class based on page location

    commit b52a50a8358f391f5ae3ec8d3fcf12253ca89020
    Merge: 4f2cb78ae0 905be2ce7f
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Aug 21 10:05:05 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-dashboard-cards

    commit 4f2cb78ae0357704084df8454b90486dc4d56572
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Thu Aug 1 13:38:52 2024 -0300

        minor improvement

    commit a9174eb47609819f0602598bf7830ee126aca9bc
    Merge: f42b5de35d da21cfd455
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Thu Aug 1 13:09:16 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-dashboard-cards

    commit f42b5de35d6bfffef500c889b1fc522f7efd40fd
    Merge: b7790f4ced d0c1c4f0a2
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jul 30 09:22:32 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-dashboard-cards

    commit b7790f4ced19b4236c680131009784d759edab8e
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jul 19 16:53:02 2024 -0300

        minor change

    commit 6edba4317017abb5a332439281b79be205645267
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jul 19 14:30:30 2024 -0300

        [UI] Dashboard widgets

    commit 49f113c410923ca1772c009b48f74bc249e31938
    Merge: 0c2867f8a7 0d19f84e26
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jul 19 13:47:10 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-dashboard-cards

    commit 0c2867f8a7800c5ae4b33e60ca59f4b67002e26d
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 1 17:34:55 2024 -0300

        hover effect

    commit c5bd63df8ece6684efbaf6e340927f35278e7268
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 1 17:22:52 2024 -0300

        card

        card

    commit 0e0fcd2d23fb6683d1f79a355c813d81d729bc2b
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 1 17:08:12 2024 -0300

        Update dashboard.css

    * Squashed commit of the following:

    commit ecff7ebdbe8428036e2595ba9d83e6c4784847e7
    Merge: b542e191bf 93db7212c8
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 18 14:36:10 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-modals

    commit b542e191bfc6e49924dfbb7720a89f508943f19e
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 11:32:23 2024 -0300

        handle alternate theme automatically

    commit 542266b38261898cbaa658c63fa11e957089338e
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 10:49:01 2024 -0300

        improve animation

    commit b716c6d101d698d2f2ecfe7959ebe09581d83ea1
    Merge: 41ea014e2f 8ce397e2bb
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed Sep 11 10:15:39 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-modals

    commit 41ea014e2f6a62f43f87a2ac5a5a7683159c9912
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Aug 30 11:30:16 2024 -0300

        screen alignment

    commit 74bcee92f24822265d8ef9f1adf027e0154216ef
    Merge: 0352e97fd3 f455fc03f3
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Aug 30 11:18:22 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-modals

    commit 0352e97fd3488ec80e391b4738d36b82bca0a35e
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Jul 15 08:39:23 2024 -0300

        rebase

    commit 93182f79ab1dd6faa81558b52b91584d52a006e4
    Merge: 7b45383770 eee187925c
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Jul 15 08:23:58 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-modals

    commit 7b45383770e7169494e223f3b9b1b8e7e556d3f2
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Jun 17 14:23:44 2024 -0300

        tab content condition for form-control

    commit 084dd169c8b0682aa6043fc2f44339d770493a9c
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Jun 17 14:16:53 2024 -0300

        tab content

    commit 6feca69dd0bbbce182dc9fa3dcd391d4d69d1449
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Jun 17 14:12:50 2024 -0300

        footer spacing

    commit 05d1f5028602a1bacfcf12d12ab0375c0cdad76e
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Jun 17 14:12:35 2024 -0300

        fields

    commit c3a63b5453fa917acce7961ad553e6a56394d94a
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Jun 17 14:03:08 2024 -0300

        modal padding (increase by 1px)

    commit 099477c412f4b39a7a3bd6cdc5a79da479e111d8
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Jun 17 13:32:02 2024 -0300

        overlay token fix

    commit e038deead8aa0bbac5f62c79f602964e1096e667
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Jun 17 13:31:43 2024 -0300

        moving from buttons.less to modals.less

    commit e620570e85007fe0b46d96f59ff7e2364526efad
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Jun 17 13:29:47 2024 -0300

        modal background

    commit c20a1b1d01f6991b8685e1d88f138d77266f4087
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon Jun 17 12:37:16 2024 -0300

        modal footer

    commit 8361fc475d8613b19f59e7f51898cb1c9ade74fd
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 14 09:40:56 2024 -0300

        fix css to less

    commit 13031fc90b373bffe1ebfe84f6ac3f85e4dbad98
    Merge: 736860e03d c14523b74f
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 14 09:39:16 2024 -0300

        Merge branch 'ui-token-based-approach-for-interface-elements-and-colors' of https://github.com/andersonjeccel/mautic into ui-token-based-approach-for-interface-elements-and-colors

    commit 736860e03dd1b4238ade0365207681a690c5d232
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 14 09:39:06 2024 -0300

        revert to 0 based on community feedback

    commit c14523b74fb4686694aa5b9ac639c647c6642774
    Merge: 17f0b803fd b30170e771
    Author: Anderson, from Dropsolid <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 14 08:24:07 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit 17f0b803fd6a22b76db2341e6aedef62ab0602fe
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jun 11 18:24:36 2024 -0300

        4px rounded standard

    commit 6c995524fede85960455b7419ac57a9317359317
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jun 11 18:09:21 2024 -0300

        another pallete generation method + accessibility improvement

    commit 94c5d31ffde8c492ab1d0ea60b7f4bd1c3e57add
    Merge: 08f44983c5 a5fd77fd24
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue Jun 11 09:57:11 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit 08f44983c58d6e2e9b334cc79ec8c91e9a374983
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 7 09:22:59 2024 -0300

        brand center enabled by default

    commit 9e36070b68021635564ef7d4fd27c0c91e8f7e48
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 7 09:17:41 2024 -0300

        separate file for tokens to avoid duplication on .css files

    commit c4889d04e24c4da65989ae8c8017833fc718f310
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 7 09:16:44 2024 -0300

        high contrast improvement

    commit 129cd68fd1ff0aa3b40948c6a86c12469aa5e29d
    Merge: f515944f43 e8d5b6c425
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri Jun 7 08:57:54 2024 -0300

        Merge remote-tracking branch 'upstream/5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit f515944f4384ae6dab7e68487c3fad8b0c7fa370
    Merge: 179c3128f0 aa4ac3ce31
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri May 31 11:03:44 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit 179c3128f0e42bb5382cbe60963706045d2a9325
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 22 15:16:59 2024 -0300

        removing duplicates

    commit e6f2b75b2407c18cc1083792749ba1d8e72b1dcf
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 14:00:26 2024 -0300

        enhanced border calc

    commit 6cdf1955f566edb4ca8328dc033983dea8bb885f
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 21 13:46:39 2024 -0300

        reduced max bdr value

    commit 3c8a34047a946962794b173ed933d2d700d1a407
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 11:58:54 2024 -0300

        sat improv

    commit f2cab43448902279a6f261ea43b2b1382705c8a7
    Merge: d32df8c2a2 a66c8d0c37
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 11:41:27 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit d32df8c2a2e12d08f46d71bacf8d21ad07a6f58a
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 11:40:50 2024 -0300

        Revert "transparency for borders when on brand bg"

        This reverts commit a8c4748bd3bcebf79907de76cbce8e15ff6f1f59.

    commit a8c4748bd3bcebf79907de76cbce8e15ff6f1f59
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 11:38:23 2024 -0300

        transparency for borders when on brand bg

    commit 65ee89b4b54efb7498dfdb54639a49fca7a56b31
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 10:48:48 2024 -0300

        fixes for secondary brand color support

    commit 40a23032c922db440c03724cc2e8deeb81b573b4
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 09:40:13 2024 -0300

        style fixes

    commit 74f49e00c0d40c696efe01b3bc3f068c64e0f3d6
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 09:31:23 2024 -0300

        secondary brand color support

    commit d0e7feccf4ed127bc045a5591da624ed3f193604
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Mon May 20 09:17:39 2024 -0300

        Responsive typography

    commit b3d2af4732ce1952b8b7b378c9415d30e09b8941
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 15 12:11:49 2024 -0300

        darker brand bg on dark theme

    commit c848335adbe2a9b343768ad24376b03a7043ce20
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 14 13:59:35 2024 -0300

        fix missing transparency bg colors

    commit 1675884bee30b3c4222e9c22be4ca9a60f9d1a02
    Merge: db55686120 4883fa0d24
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 14 09:13:00 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit db5568612049f60d04c71575b08f4b9ec2528b45
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 14 08:50:00 2024 -0300

        set implementation mode for high contrast + run grunt-compile-less

    commit d91ba0bc2b2a90a3dd7eb1594a48e5b60e60fd55
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri May 10 17:29:33 2024 -0300

        setting the dark theme implementation method

    commit f80989c428c922508b34624de8eb7b92aac49f21
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Fri May 10 15:31:04 2024 -0300

        tag to label token names

    commit 5e3bee9aec248718586995db4b21a717c0951cca
    Merge: ff5a8ed2ed e88cf968a3
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Thu May 9 13:44:30 2024 -0300

        Merge branch '5.x' into ui-token-based-approach-for-interface-elements-and-colors

    commit ff5a8ed2edd248cc2438ac1bb281d3d56a10c508
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 17:21:07 2024 -0300

        improve radius calc

    commit 42d1c5d50373fc53a86f9ca1a7e7f4d407af76e4
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 17:16:57 2024 -0300

        utilities syntax fix

    commit c7d151b8392aa4f2aa6b6b85aa0899360aed2208
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 16:58:34 2024 -0300

        dark color scheme disabled by default to avoid conflicts

    commit af024668af7b635447bc85bcc3d5de1bcadbcbbd
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 15:46:57 2024 -0300

        remove duplicated imports

    commit 7f261c47b2520e970483f1f2e2b391eb5ded6daf
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 13:29:33 2024 -0300

        aligning previous tokens

    commit 4aaa9d98e1e7c45af52f8fee1968e7a13f8e7adb
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 13:27:24 2024 -0300

        grunt compile-less

    commit e7dbe89e16c2aa22158336a2d424edfea698c012
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 13:18:51 2024 -0300

        revert removing 5x duplicated import rules

        revert
        Revert "fixing broken darken/lighten"
        This reverts commit bcf4ac98e07c0c17162a74794a8161d5398c3d7c.

    commit af355d629f731b4eb52bcb0877b4be0b2d2cdd35
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Wed May 8 13:13:59 2024 -0300

        variables

    commit 5a97e52e340697a661125c3b15fe753a7034165f
    Author: andersonjeccel <116097999+andersonjeccel@users.noreply.github.com>
    Date:   Tue May 7 17:…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
code-review-passed PRs which have passed code review feature A new feature for inclusion in minor or major releases hacktoberfest Issues that would be great for Hacktoberfest participants to work on javascript Pull requests that update Javascript code ready-to-commit PR's with 2 successful tests, 1 approval, automated tests and docs and is ready to be merged T1 Low difficulty to fix (issue) or test (PR) user-interface Anything related to appearance, layout, and interactivity user-testing-passed PRs which have been successfully tested by the required number of people.
Projects
Archived in project
Archived in project
Status: Done
Development

Successfully merging this pull request may close these issues.

7 participants