From 3996c72e66c5dee90ca95e135816b081b0b0231f Mon Sep 17 00:00:00 2001 From: Abdullah Almsaeed Date: Mon, 16 Feb 2015 12:57:01 -0500 Subject: [PATCH] Fixed issue with unselectable form items in dashboard v1 --- build/less/core.less | 4 ++-- dist/js/pages/dashboard.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build/less/core.less b/build/less/core.less index 87b713f18..e8ec41c21 100755 --- a/build/less/core.less +++ b/build/less/core.less @@ -44,7 +44,7 @@ body { */ .content-wrapper, .right-side, -.main-footer { +.main-footer { .transition-transform(@transition-speed @transition-fn); .transition(margin-left @transition-speed @transition-fn); margin-left: @sidebar-width; @@ -53,7 +53,7 @@ body { .layout-top-nav & { margin-left: 0; } - @media (max-width: @screen-xs-max) { + @media (max-width: @screen-xs-max) { margin-left: 0; } //When opening the sidebar on large screens diff --git a/dist/js/pages/dashboard.js b/dist/js/pages/dashboard.js index a602f7b23..ba29c1584 100755 --- a/dist/js/pages/dashboard.js +++ b/dist/js/pages/dashboard.js @@ -20,7 +20,7 @@ $(function () { handle: ".box-header, .nav-tabs", forcePlaceholderSize: true, zIndex: 999999 - }).disableSelection(); + }); $(".connectedSortable .box-header, .connectedSortable .nav-tabs-custom").css("cursor", "move"); //jQuery UI sortable for the todo list $(".todo-list").sortable({ @@ -28,7 +28,7 @@ $(function () { handle: ".handle", forcePlaceholderSize: true, zIndex: 999999 - }).disableSelection(); + }); //bootstrap WYSIHTML5 - text editor $(".textarea").wysihtml5();