From 45f4f6f4de82aaf7074654417f9c0425a99dd143 Mon Sep 17 00:00:00 2001 From: Artur Arseniev Date: Thu, 7 Jul 2016 13:00:17 +0200 Subject: [PATCH] Add freezed class to the frame --- src/canvas/view/CanvasView.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/canvas/view/CanvasView.js b/src/canvas/view/CanvasView.js index 7548917f9..daea5d8e9 100644 --- a/src/canvas/view/CanvasView.js +++ b/src/canvas/view/CanvasView.js @@ -37,7 +37,8 @@ function(Backbone, FrameView) { var protCss = conf.protectedCss; var frameCss = '.' + this.ppfx + 'dashed *{outline: 1px dashed rgba(170,170,170,0.7); outline-offset: -2px}' + '.' + this.ppfx + 'comp-selected{outline: 3px solid #3b97e3 !important}' + - '.' + this.ppfx + 'no-select{user-select: none; -webkit-user-select:none; -moz-user-select: none}'; + '.' + this.ppfx + 'no-select{user-select: none; -webkit-user-select:none; -moz-user-select: none}'+ + '.' + this.ppfx + 'freezed{opacity: 0.5; pointer-events: none}'; if(protCss) body.append(''); }