Commit 67a0672a authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Fix class overview toolbar styles.

Add a bit more top-bottom padding to the toolbar.

Move the styles from JavaScript to CSS and document.
parent 6d5d0cae
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -11,8 +11,6 @@ Ext.define('Docs.view.cls.Toolbar', {

    dock: 'top',
    cls: 'member-links',
    padding: '3 5',
    style: 'border-width: 1px 1px 1px 1px !important;',

    /**
     * @cfg {Object} docClass
+5 −1
Original line number Diff line number Diff line
@@ -2,9 +2,13 @@
@import "mixins";

// softer rounded corners on the toolbar
.class-overview .x-toolbar-default {
.class-overview .x-toolbar.member-links {
  border-radius: 2px;
  border-color: #e4e4e4;
  padding: 5px;
  // ExtJS styles hide the border using !important.
  // So to override it we need to use !important too.
  border-width: 1px !important;
  @include icons; }