8000 fix: Remove `can_publish` permission from django CMS 4 core by fsbraun · Pull Request #7635 · django-cms/django-cms · GitHub
[go: up one dir, main page]

Skip to content

fix: Remove can_publish permission from django CMS 4 core #7635

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
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix css glitch
  • Loading branch information
fsbraun committed Aug 22, 2023
commit e361a96c60319b088ee61263b1aa45c31ff96bf5
2 changes: 1 addition & 1 deletion cms/static/cms/sass/components/_dialog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
padding: 0;
}
form {
margin: 0 - 102A1 $padding-large;
margin: 0 (-$padding-large);
padding: 0 $padding-large !important;
border-top: 1px solid $gray-lighter;
label {
Expand Down
11 changes: 10 additions & 1 deletion cms/static/cms/sass/components/_pluginpicker.scss
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,14 @@
padding-left: 20px;
border: 2px solid $color-primary;
border-radius: $border-radius-base;
background-color: rgba($color-primary-fallback, 20%);
background-color: $white;
&:after {
content: "";
position: absolute;
top: 0;
bottom: 0;
left: 0;
right:0 ;
background-color: rgba($color-primary-fallback, 40%);
}
}
2 changes: 1 addition & 1 deletion cms/templates/admin/cms/page/tree/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ <h2>{% trans "Main Navigation" %}</h2>
}]
}' data-settings-url="{% cms_admin_url "cms_usersettings_session_store" %}">
{% url opts|admin_urlname:'add' as add_url %}
{% blocktrans with object='page' %}
{% blocktrans with object=_('page') %}
<em>There is no {{ object }} around yet.</em>
<br>
<a href="{{ add_url }}" class="addlink">Add {{ object }}</a> now.
Expand Down
0