Skip to content
Snippets Groups Projects
Commit 205b2bf0 authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Fix regression of guides page styles.

The main styles were restricted to panel body, but guides and others
were containers, not panels, so the styles did not get applied.

Now guides, videos, comments are all panels.
parent 4de0de5b
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* Container for recent comments listing. * Container for recent comments listing.
*/ */
Ext.define('Docs.view.comments.Index', { Ext.define('Docs.view.comments.Index', {
extend: 'Ext.container.Container', extend: 'Ext.panel.Panel',
alias: 'widget.commentindex', alias: 'widget.commentindex',
cls: 'comment-index iScroll', cls: 'comment-index iScroll',
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* Renders the guide and print button. * Renders the guide and print button.
*/ */
Ext.define('Docs.view.guides.Container', { Ext.define('Docs.view.guides.Container', {
extend: 'Ext.container.Container', extend: 'Ext.panel.Panel',
alias: 'widget.guidecontainer', alias: 'widget.guidecontainer',
componentCls: 'guide-container', componentCls: 'guide-container',
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* Renders the video itself and its title + description. * Renders the video itself and its title + description.
*/ */
Ext.define('Docs.view.videos.Container', { Ext.define('Docs.view.videos.Container', {
extend: 'Ext.container.Container', extend: 'Ext.panel.Panel',
alias: 'widget.videocontainer', alias: 'widget.videocontainer',
componentCls: 'video-container', componentCls: 'video-container',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment