2013-02-18 22:06:10 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Styling for tour module.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Tab appearance. */
|
2013-06-06 11:09:37 +00:00
|
|
|
.js .toolbar .bar .tour-toolbar-tab.tab {
|
2013-02-18 22:06:10 +00:00
|
|
|
float: right; /* LTR */
|
|
|
|
}
|
2013-06-28 08:47:08 +00:00
|
|
|
.js[dir=rtl] .toolbar .bar .tour-toolbar-tab.tab {
|
|
|
|
float: left;
|
|
|
|
}
|
2013-05-26 22:06:39 +00:00
|
|
|
.js .toolbar .tour-toolbar-tab button {
|
2013-02-18 22:06:10 +00:00
|
|
|
padding-bottom: 1em;
|
|
|
|
padding-top: 1em;
|
|
|
|
color: #fff;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2013-05-26 22:06:39 +00:00
|
|
|
.js .toolbar .tour-toolbar-tab button.active {
|
2013-02-18 22:06:10 +00:00
|
|
|
background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.25) 20%, transparent 200%);
|
|
|
|
background-image: linear-gradient(rgba(255, 255, 255, 0.25) 20%, transparent 200%);
|
|
|
|
}
|
2013-02-28 03:01:47 +00:00
|
|
|
.js .tour-toolbar-tab button:focus {
|
|
|
|
outline: thin dotted;
|
|
|
|
}
|
2013-02-18 22:06:10 +00:00
|
|
|
|
|
|
|
/* Joyride tips should always be on top of everything else. */
|
|
|
|
.joyride-tip-guide {
|
|
|
|
z-index: 999;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Override placement of the tour progress indicator. */
|
|
|
|
.tour-progress {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 10px;
|
|
|
|
right: 15px; /* LTR */
|
|
|
|
}
|
2013-06-28 08:47:08 +00:00
|
|
|
[dir=rtl] .tour-progress {
|
|
|
|
right: 0;
|
|
|
|
left: 15px;
|
|
|
|
}
|
2013-02-18 22:06:10 +00:00
|
|
|
|
|
|
|
/* @todo Remove once http://drupal.org/node/1916690 is resolved. */
|
2013-06-17 19:58:27 +00:00
|
|
|
.js .toolbar .tour-toolbar-tab.tab.hidden {
|
2013-02-18 22:06:10 +00:00
|
|
|
display: none;
|
|
|
|
}
|