Skip to content

Commit 434ec8a

Browse files
authored
chore: Increase specificity for admin urls (django 5.2) (#278)
1 parent cbaa073 commit 434ec8a

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

djangocms_frontend/component_pool.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,6 @@ def __getitem__(self, item):
133133

134134

135135
def setup():
136-
global components
137-
138136
if not components._discovered:
139137
from .cms_plugins import update_plugin_pool
140138

djangocms_frontend/plugin_tag.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,6 @@ def patch_template(template):
6666

6767

6868
def setup():
69-
global plugin_tag_pool
70-
7169
for plugin in plugin_pool.get_all_plugins():
7270
if not issubclass(plugin, allowed_plugin_types):
7371
continue

djangocms_frontend/static/djangocms_frontend/css/base.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

private/sass/base.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,16 @@
1717
@include visually-hidden;
1818
}
1919

20-
ul.nav {
20+
#content-main ul.nav {
2121
margin-bottom: 1em;
2222

2323
& > li.nav-item {
2424
list-style-type: none;
2525
padding: inherit;
26+
27+
a.nav-link {
28+
text-decoration: none;
29+
}
2630
}
2731
}
2832

0 commit comments

Comments
 (0)