Skip to content

Commit

Permalink
Fixing issues after upgrading to latest feature state
Browse files Browse the repository at this point in the history
  • Loading branch information
senghe committed Sep 24, 2024
1 parent 2c31636 commit c1cf5ce
Show file tree
Hide file tree
Showing 8 changed files with 340 additions and 76 deletions.
4 changes: 2 additions & 2 deletions src/Resources/config/fos_ck_editor/fos_ck_editor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ fos_ck_editor:
- "exportpdf"
plugins:
mediaVideo:
path: '/bundles/SyliusCmsPlugin/js/ckeditor-plugins/video/'
path: '/bundles/syliuscmsplugin/js/ckeditor-plugins/video/'
filename: 'plugin.js'
mediaImage:
path: '/bundles/SyliusCmsPlugin/js/ckeditor-plugins/image/'
path: '/bundles/syliuscmsplugin/js/ckeditor-plugins/image/'
filename: 'plugin.js'
toolbars:
configs:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="{{ content_element_base_class }}__taxons-list">
<ul class="ui bulleted list">
<ul class="ui list">
{% for taxon in taxons %}
<li>
<a href="{{ path('sylius_shop_product_index', {'slug': taxon.slug, '_locale': taxon.translation.locale}) }}">
Expand Down
38 changes: 33 additions & 5 deletions tests/Application/assets/shop/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,40 @@
}

.cms_content_element__taxons-list {
.ui.column {
text-align: center;
.ui {
display: flex;
justify-content: space-between;
margin-left: 0 !important;

a {
font-size: 14pt;
font-weight: bold;
li {
flex: 1 1 auto;
text-align: center;
vertical-align: middle;
border: solid #eee 1px;
margin: 20px;
border-radius: 4px;
font-size: 16pt;

a {
padding: 40px !important;
display: block;
transition: color 200ms ease-in;
}
background: transparent;
transition: border-color 200ms ease-in;
}

li:hover {
a {
color: #22b99a;
transition: color 200ms ease-in;
}
border-color: #22b99a;
transition: border-color 200ms ease-in;
}

li:before {
content: none !important;
}
}
}
372 changes: 304 additions & 68 deletions tests/Application/config/packages/sylius_cms_plugin.yaml

Large diffs are not rendered by default.

0 comments on commit c1cf5ce

Please sign in to comment.