[FIX] tour.js: forgotten backdrop and orphan css
authorChristophe Matthieu <chm@odoo.com>
Thu, 19 Jun 2014 15:52:32 +0000 (17:52 +0200)
committerChristophe Matthieu <chm@odoo.com>
Thu, 19 Jun 2014 15:52:32 +0000 (17:52 +0200)
addons/web/static/src/css/base.css
addons/web/static/src/css/base.sass
addons/website/static/src/css/editor.css
addons/website/static/src/css/editor.sass

index b234e27..20ed015 100644 (file)
@@ -3447,6 +3447,39 @@ input[type="radio"], input[type="checkbox"] {
   opacity: 0.6;
 }
 
+/* ---- EDITOR TOUR ---- {{{ */
+div.tour-backdrop {
+  z-index: 2009;
+}
+
+.popover.tour.orphan .arrow {
+  display: none;
+}
+.popover.tour .popover-navigation {
+  padding: 9px 14px;
+}
+.popover.tour .popover-navigation *[data-role="end"] {
+  float: right;
+}
+.popover.tour .popover-navigation *[data-role="next"], .popover.tour .popover-navigation *[data-role="end"] {
+  cursor: pointer;
+}
+
+.popover.fixed {
+  position: fixed;
+}
+
+.tour-backdrop {
+  position: fixed;
+  top: 0;
+  right: 0;
+  bottom: 0;
+  left: 0;
+  z-index: 1100;
+  background-color: black;
+  opacity: 0.8;
+}
+
 body {
   overflow: auto;
 }
index 093ebf6..464021f 100644 (file)
@@ -2799,6 +2799,33 @@ input[type="radio"], input[type="checkbox"]
     background-color: black
     opacity: 0.6000000238418579
 
+/* ---- EDITOR TOUR ---- {{{ */
+
+div.tour-backdrop
+    z-index: 2009
+.popover.tour
+    &.orphan .arrow
+        display: none
+    .popover-navigation
+        padding: 9px 14px
+        *[data-role="end"]
+            float: right
+        *[data-role="next"],*[data-role="end"]
+            cursor: pointer
+.popover.fixed
+    position: fixed
+.tour-backdrop
+    position: fixed
+    top: 0
+    right: 0
+    bottom: 0
+    left: 0
+    z-index: 1100
+    background-color: #000
+    opacity: 0.8
+
+
+// }}}
 
 body
     overflow: auto
index 7d8b1e6..a6058d3 100644 (file)
@@ -512,36 +512,3 @@ ul.oe_menu_editor .disclose {
   filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
   opacity: 0;
 }
-
-/* ---- EDITOR TOUR ---- {{{ */
-div.tour-backdrop {
-  z-index: 2009;
-}
-
-.popover.tour.orphan .arrow {
-  display: none;
-}
-.popover.tour .popover-navigation {
-  padding: 9px 14px;
-}
-.popover.tour .popover-navigation *[data-role="end"] {
-  float: right;
-}
-.popover.tour .popover-navigation *[data-role="next"], .popover.tour .popover-navigation *[data-role="end"] {
-  cursor: pointer;
-}
-
-.popover.fixed {
-  position: fixed;
-}
-
-.tour-backdrop {
-  position: fixed;
-  top: 0;
-  right: 0;
-  bottom: 0;
-  left: 0;
-  z-index: 1100;
-  background-color: black;
-  opacity: 0.8;
-}
index d39b6ab..9ba8ee5 100644 (file)
@@ -446,32 +446,4 @@ $editorbar_height: 30px
 
 // }}}
 
-/* ---- EDITOR TOUR ---- {{{ */
-
-div.tour-backdrop
-    z-index: 2009
-.popover.tour
-    &.orphan .arrow
-        display: none
-    .popover-navigation
-        padding: 9px 14px
-        *[data-role="end"]
-            float: right
-        *[data-role="next"],*[data-role="end"]
-            cursor: pointer
-.popover.fixed
-    position: fixed
-.tour-backdrop
-    position: fixed
-    top: 0
-    right: 0
-    bottom: 0
-    left: 0
-    z-index: 1100
-    background-color: #000
-    opacity: 0.8
-
-
-// }}}
-
 // vim:tabstop=4:shiftwidth=4:softtabstop=4:fdm=marker: