From 806f95ac061fa0fe98a0ad0fe5bb99245d9ae9f1 Mon Sep 17 00:00:00 2001 From: Sanasol Date: Sat, 21 Apr 2018 18:51:37 +0300 Subject: [PATCH] remove big console.log, fix opacity --- web/src/components/CourseRedactor.vue | 6 +++--- web/src/sass/_common.sass | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/web/src/components/CourseRedactor.vue b/web/src/components/CourseRedactor.vue index 3f783433..a9ab884a 100644 --- a/web/src/components/CourseRedactor.vue +++ b/web/src/components/CourseRedactor.vue @@ -957,15 +957,15 @@ watch: { 'course': { handler: function (newValue, oldValue) { - console.log('watch', JSON.stringify(newValue), JSON.stringify(oldValue)); + // console.log('watch', JSON.stringify(newValue), JSON.stringify(oldValue)); // Если курс загрузился и есть ID - делаем кнопки превью и публикации активными console.log('newValue.id', newValue.id); if (newValue.id) { - console.log('newValue.id disabled remove', newValue.id); + // console.log('newValue.id disabled remove', newValue.id); $('#course-redactor__preview-button').removeAttr('disabled'); $('#course-redactor__publish-button').removeAttr('disabled'); } - console.log('courseSyncHook', this.courseSyncHook); + // console.log('courseSyncHook', this.courseSyncHook); if (this.courseSyncHook || this.courseLoading) { console.log('abort save draft', this.courseSyncHook, this.courseLoading); return; diff --git a/web/src/sass/_common.sass b/web/src/sass/_common.sass index 156ac867..cf4594ab 100755 --- a/web/src/sass/_common.sass +++ b/web/src/sass/_common.sass @@ -3223,7 +3223,7 @@ a.grey-link left: 0 width: 100% height: 100% - background-image: linear-gradient(135deg, rgb(255, 226, 235) 0%, rgb(216, 245, 246) 100%) + background-image: linear-gradient(135deg, rgba(255, 226, 235, 0.75) 0%, rgba(216, 245, 246, 0.75) 100%) z-index: -2 &__sidebar flex: 0 0 calc(50% - 169px)