[Cherrypick] Dashboard Manager View
- added ng-drag-drop
- deleted old customize dashboard
- managing dashboards
Change-Id: I41c54ab7c6582f565cef363c9d93d22cda011292
diff --git a/views/ngXosViews/dashboardManager/src/sass/main.scss b/views/ngXosViews/dashboardManager/src/sass/main.scss
new file mode 100644
index 0000000..a8aff76
--- /dev/null
+++ b/views/ngXosViews/dashboardManager/src/sass/main.scss
@@ -0,0 +1,42 @@
+@import '../../../../style/sass/lib/_variables.scss';
+@import '../../../../style/sass/bootstrap/bootstrap/_variables.scss';
+
+#xosDashboardManager {
+
+ .col-xs-10 + .col-xs-2.text-right {
+ padding-top: $line-height-computed;
+ }
+
+ /* DRAG AND DROP STYLING */
+ ul[dnd-list] {
+ min-height: 42px;
+ border: 1px dashed $brand-primary;
+ padding: $line-height-computed;;
+ margin-bottom: 0;
+
+ li {
+ list-style: none;
+ }
+
+ li:not(:last-child){
+ margin-bottom: $line-height-computed;;
+ }
+
+ li:hover{
+ cursor: pointer;
+ }
+
+ li.dndDraggingSource {
+ display: none;
+ }
+ }
+
+ ul[dnd-list] > li, .dashboard-container {
+ display: block;
+ border: 1px solid $brand-primary;
+ padding: $line-height-computed;
+ a {
+ float: right;
+ }
+ }
+}
\ No newline at end of file