bootstrap-tour.css 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /* ===========================================================
  2. # bootstrap-tour - v0.8.0
  3. # http://bootstraptour.com
  4. # ==============================================================
  5. # Copyright 2012-2013 Ulrich Sossou
  6. #
  7. # Licensed under the Apache License, Version 2.0 (the "License");
  8. # you may not use this file except in compliance with the License.
  9. # You may obtain a copy of the License at
  10. #
  11. # http://www.apache.org/licenses/LICENSE-2.0
  12. #
  13. # Unless required by applicable law or agreed to in writing, software
  14. # distributed under the License is distributed on an "AS IS" BASIS,
  15. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. # See the License for the specific language governing permissions and
  17. # limitations under the License.
  18. */
  19. .tour-backdrop {
  20. position: fixed;
  21. top: 0;
  22. right: 0;
  23. bottom: 0;
  24. left: 0;
  25. z-index: 1030;
  26. background-color: #000;
  27. opacity: 0.8;
  28. }
  29. .tour-step-backdrop {
  30. position: relative;
  31. z-index: 1031;
  32. background: inherit;
  33. }
  34. .tour-step-background {
  35. position: absolute;
  36. z-index: 1030;
  37. background: inherit;
  38. border-radius: 6px;
  39. }
  40. .popover[class*="tour-"] {
  41. z-index: 1030;
  42. }
  43. .popover[class*="tour-"] .popover-navigation {
  44. padding: 9px 14px;
  45. }
  46. .popover[class*="tour-"] .popover-navigation *[data-role=end] {
  47. float: right;
  48. }
  49. .popover[class*="tour-"] .popover-navigation *[data-role=prev],
  50. .popover[class*="tour-"] .popover-navigation *[data-role=next],
  51. .popover[class*="tour-"] .popover-navigation *[data-role=end] {
  52. cursor: pointer;
  53. }
  54. .popover[class*="tour-"] .popover-navigation *[data-role=prev].disabled,
  55. .popover[class*="tour-"] .popover-navigation *[data-role=next].disabled,
  56. .popover[class*="tour-"] .popover-navigation *[data-role=end].disabled {
  57. cursor: default;
  58. }
  59. .popover[class*="tour-"].orphan {
  60. position: fixed;
  61. margin-top: 0;
  62. }
  63. .popover[class*="tour-"].orphan .arrow {
  64. display: none;
  65. }