bootstrap-tour.css 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /* ========================================================================
  2. * bootstrap-tour - v0.10.3
  3. * http://bootstraptour.com
  4. * ========================================================================
  5. * Copyright 2012-2015 Ulrich Sossou
  6. *
  7. * ========================================================================
  8. * Licensed under the MIT License (the "License");
  9. * you may not use this file except in compliance with the License.
  10. * You may obtain a copy of the License at
  11. *
  12. * https://opensource.org/licenses/MIT
  13. *
  14. * Unless required by applicable law or agreed to in writing, software
  15. * distributed under the License is distributed on an "AS IS" BASIS,
  16. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17. * See the License for the specific language governing permissions and
  18. * limitations under the License.
  19. * ========================================================================
  20. */
  21. .tour-backdrop {
  22. position: fixed;
  23. top: 0;
  24. right: 0;
  25. bottom: 0;
  26. left: 0;
  27. z-index: 1100;
  28. /*background-color: #000;*/
  29. opacity: 0.8;
  30. filter: alpha(opacity=80);
  31. }
  32. .tour-step-backdrop {
  33. position: relative;
  34. z-index: 1101;
  35. }
  36. .tour-step-backdrop > td {
  37. position: relative;
  38. z-index: 1101;
  39. }
  40. .tour-step-background {
  41. position: absolute !important;
  42. z-index: 1100;
  43. background: inherit;
  44. /*border-radius: 6px;*/
  45. border: 1px solid #2492FF;
  46. }
  47. .popover[class*="tour-"] {
  48. z-index: 1102;
  49. }
  50. .popover[class*="tour-"] .popover-navigation {
  51. padding: 9px 14px;
  52. overflow: hidden;
  53. }
  54. .popover[class*="tour-"] .popover-navigation *[data-role="end"] {
  55. float: right;
  56. }
  57. .popover[class*="tour-"] .popover-navigation *[data-role="prev"],
  58. .popover[class*="tour-"] .popover-navigation *[data-role="next"],
  59. .popover[class*="tour-"] .popover-navigation *[data-role="end"] {
  60. cursor: pointer;
  61. display: block;
  62. }
  63. .popover[class*="tour-"] .popover-navigation *[data-role="prev"].disabled,
  64. .popover[class*="tour-"] .popover-navigation *[data-role="next"].disabled,
  65. .popover[class*="tour-"] .popover-navigation *[data-role="end"].disabled {
  66. cursor: default;
  67. display: none;
  68. }
  69. .popover[class*="tour-"].orphan {
  70. position: fixed;
  71. margin-top: 0;
  72. }
  73. .popover[class*="tour-"].orphan .arrow {
  74. display: none;
  75. }
  76. .popover-title{
  77. font-size: 18px !important;
  78. }
  79. .popover-content{
  80. font-size: 16px !important;
  81. }
  82. .btn-prev{
  83. margin-right: 8px;
  84. border-radius: 4px !important;
  85. height:auto !important;
  86. }
  87. .btn-next{
  88. border-radius: 4px !important;
  89. height:auto !important;
  90. }
  91. .btn-end{
  92. margin-left: 16px;
  93. width: 60px;
  94. height:auto !important;
  95. }