10000 ci: Merge develop-4 into release/4.1.x by fsbraun · Pull Request #7718 · django-cms/django-cms · GitHub
[go: up one dir, main page]

Skip to content

ci: Merge develop-4 into release/4.1.x #7718

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Dec 11, 2023
Merged
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
60f384c
ci: Merge back `release/4.1.x` (4.1.0rc4) into `develop-4` (#7640)
fsbraun Sep 1, 2023
16833a2
Fix: Debug toolbar action button has too low contrast in dark mode (#…
fsbraun Sep 2, 2023
534660a
feat: django 5 support (#7648)
fsbraun Sep 22, 2023
f572e38
test: Run tests against django main branch (#7650)
marksweb Sep 22, 2023
160669e
fix: When opening structure board page menu disappears or shows wrong…
fsbraun Oct 17, 2023
2d7ccc0
fix: #7662, add support for python 3.12 and upgrade github actions (#…
Oct 19, 2023
5b592b9
fix: `.load` jQuery method erroneously replaced by `.on('load')` (#7679)
fsbraun Oct 24, 2023
20fac70
fix: Port forward #7664 and #7657 (#7695)
fsbraun Nov 20, 2023
7fa0b69
fix: validate endpoint languages and redirect if not editable (#7691)
fsbraun Nov 20, 2023
1867917
fix: Add check for Django's i18n context processor needed for wizards…
fsbraun Nov 22, 2023
d031da3
feat: Add `djangocms` command to quickly start a project (#7702)
fsbraun Nov 27, 2023
22d6869
fix: Localization of permission checks on deleting (#7683)
dwintergruen Nov 29, 2023
19c66fe
fix: django 5's choice widget is not lazy (#7707)
fsbraun Nov 30, 2023
5af7fc7
fix: Page Content Extension toolbar (#7708)
fsbraun Nov 30, 2023
2d17eaa
fix: Language chooser options pointing to the same language (#7698)
fsbraun Dec 8, 2023
d021a26
Add CONTRIBUTING.rst and CODE_OF_CONDUCT.rst to develop-4 branch (#7713)
fsbraun Dec 10, 2023
9a7fe85
Fix django-cms#7710 (#7717)
fsbraun Dec 11, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix: Debug toolbar action button has too low contrast in dark mode (#…
  • Loading branch information
fsbraun authored Sep 2, 2023
commit 16833a26edb7e34208ee1a0dcc694f213a680407
2 changes: 1 addition & 1 deletion cms/static/cms/sass/components/_toolbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
.cms-toolbar .cms-btn-action {
background-color: $toolbar-debug-bgcolor;
border-color: $toolbar-debug-bgcolor;
color: $black;
color: black;
&:active,
&:focus {
background-color: $toolbar-debug-bgcolor;
Expand Down
0