diff --git a/app/app/components/document/sidebar-zone.js b/app/app/components/document/sidebar-zone.js index 3902f3d7..1ad0b9f9 100644 --- a/app/app/components/document/sidebar-zone.js +++ b/app/app/components/document/sidebar-zone.js @@ -35,7 +35,7 @@ export default Ember.Component.extend(TooltipMixin, NotifierMixin, { init() { this._super(...arguments); - if (is.empty(this.get('tab'))) { + if (is.empty(this.get('tab')) || is.undefined(this.get('tab'))) { this.set('tab', 'index'); } }, diff --git a/app/app/styles/view/document/sidebar-view-index.scss b/app/app/styles/view/document/sidebar-view-index.scss index ff68b5db..506d2523 100644 --- a/app/app/styles/view/document/sidebar-view-index.scss +++ b/app/app/styles/view/document/sidebar-view-index.scss @@ -30,7 +30,6 @@ overflow-x: hidden; list-style-type: none; margin: 20px 0 0; - font-family: $font-semibold; .item { padding: 4px 0; @@ -40,7 +39,7 @@ overflow: hidden; > .link { - color: $color-gray; + color: $color-off-black; &:hover { color: $color-link; diff --git a/app/app/styles/view/document/wysiwyg.scss b/app/app/styles/view/document/wysiwyg.scss index 3a285588..54abe8cc 100644 --- a/app/app/styles/view/document/wysiwyg.scss +++ b/app/app/styles/view/document/wysiwyg.scss @@ -24,6 +24,13 @@ line-height: 20px; } + ol { + li { + list-style-type: decimal; + line-height: 20px; + } + } + ul { li { list-style-type: disc; diff --git a/app/app/styles/widget/widget-input.scss b/app/app/styles/widget/widget-input.scss index fb38f7f1..0233b1b1 100644 --- a/app/app/styles/widget/widget-input.scss +++ b/app/app/styles/widget/widget-input.scss @@ -15,8 +15,8 @@ } > .tip { - color: $color-input; - font-size: 1em; + color: $color-gray; + font-size: 0.9em; margin: 5px 0 10px; padding: 0; text-align: left; @@ -168,6 +168,8 @@ } .input-transparent { + background-color: transparent !important; + > input, textarea { background-color: transparent !important; }