bootstrap-tour.css (2204B)
1 /* ======================================================================== 2 * bootstrap-tour - v0.10.1 3 * http://bootstraptour.com 4 * ======================================================================== 5 * Copyright 2012-2013 Ulrich Sossou 6 * 7 * ======================================================================== 8 * Licensed under the Apache License, Version 2.0 (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 * http://www.apache.org/licenses/LICENSE-2.0 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 22 .tour-backdrop { 23 position: fixed; 24 top: 0; 25 right: 0; 26 bottom: 0; 27 left: 0; 28 z-index: 1100; 29 background-color: #000; 30 opacity: 0.8; 31 filter: alpha(opacity=80); 32 } 33 .tour-step-backdrop { 34 position: relative; 35 z-index: 1101; 36 background: inherit; 37 } 38 .tour-step-backdrop > td { 39 position: relative; 40 z-index: 1101; 41 } 42 .tour-step-background { 43 position: absolute !important; 44 z-index: 1100; 45 background: inherit; 46 border-radius: 6px; 47 } 48 .popover[class*="tour-"] { 49 z-index: 1100; 50 } 51 .popover[class*="tour-"] .popover-navigation { 52 padding: 9px 14px; 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 } 62 .popover[class*="tour-"] .popover-navigation *[data-role="prev"].disabled, 63 .popover[class*="tour-"] .popover-navigation *[data-role="next"].disabled, 64 .popover[class*="tour-"] .popover-navigation *[data-role="end"].disabled { 65 cursor: default; 66 } 67 .popover[class*="tour-"].orphan { 68 position: fixed; 69 margin-top: 0; 70 } 71 .popover[class*="tour-"].orphan .arrow { 72 display: none; 73 }