first import
@@ -0,0 +1,37 @@
|
||||
/* QT style selection form */
|
||||
|
||||
div.quicktabs-preview {
|
||||
border: none;
|
||||
width: 250px;
|
||||
height: 80px;
|
||||
}
|
||||
|
||||
#quicktabs-styles .quicktabs-tabstyles .form-item {
|
||||
width: 280px;
|
||||
float: left;
|
||||
margin: 0 10px 10px 0;
|
||||
border: 1px solid #ccc;
|
||||
background-color: #fff;
|
||||
}
|
||||
#quicktabs-styles .quicktabs-tabstyles .form-item .option {
|
||||
display: block;
|
||||
background-color: #bfe3ff;
|
||||
font: bold 12px/18px verdana;
|
||||
color: #0a5793;
|
||||
}
|
||||
#quicktabs-styles .quicktabs-tabstyles .form-item .option:hover {
|
||||
background-color: #aadaff;
|
||||
cursor: pointer;
|
||||
color: #003863;
|
||||
}
|
||||
#quicktabs-styles .quicktabs-tabstyles .form-item .option .form-radio {
|
||||
margin-right: 5px;
|
||||
float: left;
|
||||
height: 15px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
#quicktabs-styles .quicktabs_wrapper {
|
||||
margin: 5px;
|
||||
font: bold 12px/170% Verdana;
|
||||
}
|
||||
|
@@ -0,0 +1,11 @@
|
||||
name = Quicktabs Styles
|
||||
description = Adds predefined tab styles to choose from per Quicktabs instance.
|
||||
core = 7.x
|
||||
configure=admin/structure/quicktabs/styles
|
||||
dependencies[] = "quicktabs"
|
||||
; Information added by drupal.org packaging script on 2012-03-29
|
||||
version = "7.x-3.4"
|
||||
core = "7.x"
|
||||
project = "quicktabs"
|
||||
datestamp = "1332980461"
|
||||
|
@@ -0,0 +1,113 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Implements hook_theme().
|
||||
*/
|
||||
function quicktabs_tabstyles_theme() {
|
||||
return array(
|
||||
'quicktabs_style_options' => array(
|
||||
'render element' => 'quicktabs_tabstyle',
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements hook_menu().
|
||||
*/
|
||||
function quicktabs_tabstyles_menu() {
|
||||
$items['admin/structure/quicktabs/styles'] = array(
|
||||
'title' => 'Styles',
|
||||
'page callback' => 'drupal_get_form',
|
||||
'page arguments' => array('quicktabs_tabstyles_styles'),
|
||||
'access arguments' => array('administer quicktabs'),
|
||||
'type' => MENU_LOCAL_TASK,
|
||||
);
|
||||
return $items;
|
||||
}
|
||||
|
||||
/**
|
||||
* Callback function for admin/structure/quicktabs/styles. The style chooser form.
|
||||
*/
|
||||
function quicktabs_tabstyles_styles() {
|
||||
$options = array();
|
||||
$styles = module_invoke_all('quicktabs_tabstyles');
|
||||
// The keys used for options must be valid html id-s.
|
||||
// Removing the css file path, because that can't be used.
|
||||
foreach ($styles as $style) {
|
||||
$options[$style] = $style;
|
||||
}
|
||||
ksort($options);
|
||||
|
||||
$form['quicktabs_tabstyle'] = array(
|
||||
'#type' => 'radios',
|
||||
'#title' => t('Quicktab styles'),
|
||||
'#options' => array('nostyle' => t('No style')) + $options,
|
||||
'#default_value' => variable_get('quicktabs_tabstyle', 'nostyle'),
|
||||
'#description' => t('Select the default style for quicktabs.'),
|
||||
'#attributes' => array('class' => array('quicktabs-tabstyles', 'clear-block')),
|
||||
'#theme' => 'quicktabs_style_options',
|
||||
);
|
||||
|
||||
$form['submit'] = array(
|
||||
'#type' => 'submit',
|
||||
'#value' => t('Save'),
|
||||
);
|
||||
return $form;
|
||||
}
|
||||
|
||||
/**
|
||||
* Submit handler for QuickTabs styles.
|
||||
*/
|
||||
function quicktabs_tabstyles_styles_submit($form, &$form_state) {
|
||||
variable_set('quicktabs_tabstyle', $form_state['values']['quicktabs_tabstyle']);
|
||||
drupal_set_message(t('The default quicktab style has been saved.'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Theme function for quicktabs style radio options.
|
||||
*
|
||||
* @ingroup themeable
|
||||
*/
|
||||
function theme_quicktabs_style_options($variables) {
|
||||
$style_element = $variables['quicktabs_tabstyle'];
|
||||
$markup = '';
|
||||
|
||||
$tabs = array(
|
||||
array('title' => t('One'), 'contents' => array('#markup' => t('First tab')), 'weight' => 0),
|
||||
array('title' => t('Two'), 'contents' => array('#markup' => t('Second tab')), 'weight' => 1),
|
||||
array('title' => t('Three'), 'contents' => array('#markup' => t('Third tab')), 'weight' => 2)
|
||||
);
|
||||
|
||||
$options = array('renderer' => 'quicktabs', 'hide_empty_tabs' => 0, 'ajax' => 0);
|
||||
// Preview for each style.
|
||||
foreach (element_children($style_element) as $style) {
|
||||
$element = $style_element[$style];
|
||||
$options['style'] = $style;
|
||||
$quicktabs = quicktabs_build_quicktabs(drupal_strtolower($style), $options, $tabs);
|
||||
$preview = '<div class="quicktabs-preview">'. drupal_render($quicktabs['content']) .'</div>';
|
||||
$element['#description'] = t('%style preview', array('%style' => $element['#title'])) .':<br />'. $preview;
|
||||
$markup .= drupal_render($element);
|
||||
}
|
||||
$build = array(
|
||||
'style' => array('#markup' => $markup),
|
||||
'#attached' => array('css' => array(drupal_get_path('module', 'quicktabs_tabstyles') . '/css/quicktabs-tabstyles-admin.css')),
|
||||
);
|
||||
return drupal_render($build);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Implements hook_quicktabs_tabstyles().
|
||||
*/
|
||||
function quicktabs_tabstyles_quicktabs_tabstyles() {
|
||||
$tabstyles_directory = drupal_get_path('module', 'quicktabs_tabstyles') . '/tabstyles';
|
||||
$files = file_scan_directory($tabstyles_directory, '/\.css$/');
|
||||
$tabstyles = array();
|
||||
foreach ($files as $file) {
|
||||
// Skip RTL files.
|
||||
if (!strpos($file->name, '-rtl')) {
|
||||
$tabstyles[$file->uri] = drupal_ucfirst($file->name);
|
||||
}
|
||||
}
|
||||
return $tabstyles;
|
||||
}
|
@@ -0,0 +1,9 @@
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-arrows{
|
||||
padding:0 0 0 10px!important;
|
||||
height:25px;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-arrows li{
|
||||
float:right;
|
||||
}
|
@@ -0,0 +1,24 @@
|
||||
|
||||
.quicktabs_main.quicktabs-style-arrows{
|
||||
clear:both;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-arrows{
|
||||
font:bold 12px/170% Verdana;
|
||||
border-bottom:1px solid #ccc;
|
||||
padding:0 10px 0 0!important;
|
||||
line-height:22px;
|
||||
margin:0 0 10px 0;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-arrows a{
|
||||
text-decoration:none;
|
||||
background:transparent url(images/arrows.gif) no-repeat center 17px;
|
||||
padding:2px 10px 4px;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-arrows li.active a,
|
||||
ul.quicktabs-tabs.quicktabs-style-arrows li a:hover{
|
||||
text-decoration:none;
|
||||
background:transparent url(images/arrows.gif) no-repeat center bottom;
|
||||
}
|
After Width: | Height: | Size: 77 B |
@@ -0,0 +1,12 @@
|
||||
|
||||
.quicktabs_main.quicktabs-style-basic{
|
||||
border:1px solid #aaa;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-basic{
|
||||
border-bottom:none;
|
||||
padding:0 0 0 5px;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-basic li{
|
||||
float:right;
|
||||
margin:0 0 0 3px;
|
||||
}
|
@@ -0,0 +1,43 @@
|
||||
|
||||
.quicktabs_main.quicktabs-style-basic{
|
||||
background-color:#fff;
|
||||
border:1px solid #aaa;
|
||||
border-top:none;
|
||||
padding:10px;
|
||||
clear:both;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-basic{
|
||||
border-bottom:1px solid #aaa;
|
||||
padding:0 5px 0 0;
|
||||
font:bold 12px/19px Verdana !important;
|
||||
font-weight:bold;
|
||||
height:19px;
|
||||
margin:0;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-basic a{
|
||||
font:bold 12px/19px Verdana !important;
|
||||
text-decoration:none;
|
||||
color:#aaa;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-basic a:hover{
|
||||
color:#555;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-basic li{
|
||||
border:1px solid #e5e5e5;
|
||||
border-bottom:none;
|
||||
padding:2px 5px;
|
||||
margin:0 3px 0 0;
|
||||
position:relative;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-basic li:hover{
|
||||
border:1px solid #ccc;
|
||||
border-bottom:none;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-basic li.active{
|
||||
border:1px solid #aaa;
|
||||
border-bottom:1px solid #fff;
|
||||
background-color:#fff;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-basic li.active a{
|
||||
color:#027AC6;
|
||||
}
|
@@ -0,0 +1,4 @@
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-bullets li{
|
||||
float: right;
|
||||
}
|
@@ -0,0 +1,49 @@
|
||||
|
||||
.quicktabs_main.quicktabs-style-bullets{
|
||||
clear:both;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-bullets{
|
||||
margin:0 0 10px 0;
|
||||
font-size:11px;
|
||||
list-style: none;
|
||||
padding:3px 0 23px 0;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-bullets li{
|
||||
float: left;
|
||||
height:20px;
|
||||
margin:0 5px;
|
||||
padding: 0 0 0 10px;
|
||||
background:transparent url(images/bullets.png) no-repeat 0 -80px;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-bullets li a{
|
||||
font:bold 12px/170% Verdana;
|
||||
margin: 0;
|
||||
display:block;
|
||||
padding:0px 17px 0px 7px;
|
||||
text-decoration:none;
|
||||
color: #777 !important;
|
||||
background:transparent url(images/bullets.png) no-repeat right -100px ;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-bullets li:hover a{
|
||||
background-position: right -60px ;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-bullets li:hover{
|
||||
background-position: 0 -40px;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-bullets li.active a,
|
||||
ul.quicktabs-tabs.quicktabs-style-bullets li.active a:hover{
|
||||
color: #0372d9 !important;
|
||||
background-position:right -20px;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-bullets li.active{
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
/* IE6 Gif (no PNGs) */
|
||||
|
||||
*html ul.quicktabs-tabs.quicktabs-style-bullets li a{
|
||||
background:transparent url(images/bullets.gif) no-repeat right -100px ;
|
||||
}
|
||||
*html ul.quicktabs-tabs.quicktabs-style-bullets li{ /* image for IE6 */
|
||||
background:transparent url(images/bullets.gif) no-repeat 0 -80px;
|
||||
}
|
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 2.4 KiB |
@@ -0,0 +1,38 @@
|
||||
|
||||
/* RTL support */
|
||||
ul.quicktabs-tabs.quicktabs-style-excel li {
|
||||
float: right;
|
||||
padding: 0 10px 0 0;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-excel li a {
|
||||
padding: 4px 12px 0px 22px;
|
||||
background: transparent url(images/tab-right-sep-rtl.png) no-repeat left -38px;
|
||||
}
|
||||
|
||||
/*override active tab*/
|
||||
ul.quicktabs-tabs.quicktabs-style-excel li.active {
|
||||
background: transparent url(images/tab-left-sep-rtl.png) no-repeat right 0;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-excel li.active a {
|
||||
background: transparent url(images/tab-right-sep-rtl.png) no-repeat left 0;
|
||||
}
|
||||
|
||||
/*override first (most right) tab*/
|
||||
ul.quicktabs-tabs.quicktabs-style-excel li.first {
|
||||
background: transparent url(images/tab-left-rtl.png) no-repeat right -38px;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-excel li.first.active {
|
||||
background: transparent url(images/tab-left-rtl.png) no-repeat right 0px;
|
||||
}
|
||||
|
||||
/*override last (most left) tab*/
|
||||
ul.quicktabs-tabs.quicktabs-style-excel li.last a {
|
||||
background: transparent url(images/tab-right-rtl.png) no-repeat left -38px;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-excel li.last.active a {
|
||||
background:transparent url(images/tab-right-rtl.png) no-repeat left 0px;
|
||||
}
|
@@ -0,0 +1,79 @@
|
||||
|
||||
/* Excel style tabs */
|
||||
|
||||
.quicktabs_main.quicktabs-style-excel {
|
||||
border-bottom: 1px solid #EEEEEE;
|
||||
padding: 10px 5px 2px;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-excel {
|
||||
margin: 0;
|
||||
padding: 0 15px;
|
||||
font-size: 1em;
|
||||
list-style: none;
|
||||
height: 24px;
|
||||
background: transparent url(images/tab-bar.png) repeat-x left bottom;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-excel li {
|
||||
float: left;
|
||||
margin: 0 -5px -5px -5px;
|
||||
padding: 0 0 0 10px;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-excel li a {
|
||||
font: bold 12px/170% Verdana;
|
||||
font-size-adjust: none;
|
||||
display: block;
|
||||
margin: 0;
|
||||
padding: 4px 22px 0px 12px;
|
||||
border-width: 0;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
background: transparent url(images/tab-right-sep.png) no-repeat right -38px;
|
||||
}
|
||||
|
||||
/*override hover*/
|
||||
ul.quicktabs-tabs.quicktabs-style-excel li:hover {
|
||||
/*background: transparent url(images/tab-left-sep.png) no-repeat left -76px;*/
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-excel li a:hover {
|
||||
color: #000;
|
||||
/*background: transparent url(images/tab-right-sep.png) no-repeat right -76px;*/
|
||||
}
|
||||
|
||||
/*override active tab*/
|
||||
ul.quicktabs-tabs.quicktabs-style-excel li.active {
|
||||
background: transparent url(images/tab-left-sep.png) no-repeat left 0;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-excel li.active a {
|
||||
background: transparent url(images/tab-right-sep.png) no-repeat right 0;
|
||||
}
|
||||
|
||||
/*override first tab*/
|
||||
ul.quicktabs-tabs.quicktabs-style-excel li.first {
|
||||
background: transparent url(images/tab-left.png) no-repeat left -38px;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-excel li.first:hover {
|
||||
/*background: transparent url(images/tab-left.png) no-repeat left -76px;*/
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-excel li.first.active {
|
||||
background: transparent url(images/tab-left.png) no-repeat left 0px;
|
||||
}
|
||||
|
||||
/*override last tab*/
|
||||
ul.quicktabs-tabs.quicktabs-style-excel li.last a {
|
||||
background: transparent url(images/tab-right.png) no-repeat right -38px;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-excel li.last a:hover {
|
||||
/*background: transparent url(images/tab-right.png) no-repeat right -76px;*/
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-excel li.last.active a {
|
||||
background:transparent url(images/tab-right.png) no-repeat right 0px;
|
||||
}
|
After Width: | Height: | Size: 160 B |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 3.2 KiB |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 3.3 KiB |
@@ -0,0 +1,9 @@
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-garland li {
|
||||
float: right;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-garland li a:link,
|
||||
ul.quicktabs-tabs.quicktabs-style-garland li a:visited {
|
||||
padding: 8px 11px 4px 12px;
|
||||
}
|
@@ -0,0 +1,71 @@
|
||||
|
||||
.quicktabs_main.quicktabs-style-garland {
|
||||
clear:both;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-garland {
|
||||
background: #bcd6eb url('images/bg.gif') repeat-x bottom;
|
||||
font:bold 12px/20px Verdana;
|
||||
padding: 3px 0px 3px;
|
||||
height: 20px;
|
||||
margin:0 0 10px 0;
|
||||
}
|
||||
|
||||
.sidebar ul.quicktabs-tabs.quicktabs-style-garland {
|
||||
padding:0 0 3px 0;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-garland li {
|
||||
margin:0;
|
||||
padding:0;
|
||||
display: block;
|
||||
float: left;
|
||||
padding: 2px 0 1px !important;
|
||||
list-style-type: none;
|
||||
background: none;
|
||||
}
|
||||
|
||||
.sidebar ul.quicktabs-tabs.quicktabs-style-garland li {
|
||||
margin:0;
|
||||
display: block;
|
||||
float: left;
|
||||
padding: 2px 0 1px;
|
||||
list-style-type: none;
|
||||
background: none;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-garland li a:link,
|
||||
ul.quicktabs-tabs.quicktabs-style-garland li a:visited {
|
||||
color: #fff;
|
||||
padding: 8px 12px 4px 11px;
|
||||
margin:0;
|
||||
font:bold 12px/20px Verdana;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-garland li.active a {
|
||||
color: #027AC6 !important;
|
||||
background: url('images/tab-right.gif') no-repeat right bottom;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-garland li.active {
|
||||
background: url('images/tab-left.gif') no-repeat left bottom;
|
||||
}
|
||||
|
||||
.sidebar ul.quicktabs-tabs.quicktabs-style-garland li.active a {
|
||||
color: #027AC6 !important;
|
||||
background: url('images/tab-right-sidebar.gif') no-repeat right bottom;
|
||||
}
|
||||
.sidebar ul.quicktabs-tabs.quicktabs-style-garland li.active {
|
||||
background: url('images/tab-left-sidebar.gif') no-repeat left bottom;
|
||||
}
|
||||
|
||||
/* IE 6 Debug */
|
||||
* html ul.quicktabs-tabs.quicktabs-style-garland,
|
||||
* html .sidebar ul.quicktabs-tabs.quicktabs-style-garland {
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
|
||||
/* IE 7 Debug */
|
||||
*+html .sidebar ul.quicktabs-tabs.quicktabs-style-garland li a:link {
|
||||
padding-bottom: 4px;
|
||||
}
|
||||
|
After Width: | Height: | Size: 99 B |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 580 B |
After Width: | Height: | Size: 563 B |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 6.4 KiB |
@@ -0,0 +1,4 @@
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-mac li{
|
||||
float: right;
|
||||
}
|
@@ -0,0 +1,50 @@
|
||||
|
||||
.quicktabs_main.quicktabs-style-mac{
|
||||
clear:both;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-mac{
|
||||
margin:0 0 10px 0;
|
||||
font-size:11px;
|
||||
list-style: none;
|
||||
padding:3px 0 23px 0;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-mac li{
|
||||
float: left;
|
||||
height:24px;
|
||||
margin:0 5px;
|
||||
padding: 0 0 0 15px;
|
||||
background:transparent url(images/mac.png) no-repeat 0 0px;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-mac li a{
|
||||
font:bold 12px/170% Verdana;
|
||||
margin: 0;
|
||||
display:block;
|
||||
padding:0px 15px 5px 0px;
|
||||
font-weight:bold;
|
||||
text-decoration:none;
|
||||
color: #fff;
|
||||
background:transparent url(images/mac.png) no-repeat right -25px ;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-mac li:hover a{
|
||||
background-position: right -75px ;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-mac li:hover{
|
||||
background-position: 0 -50px;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-mac li.active a,
|
||||
ul.quicktabs-tabs.quicktabs-style-mac li.active a:hover{
|
||||
background-position:right -125px;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-mac li.active{
|
||||
background-position: 0 -100px;
|
||||
}
|
||||
|
||||
/* IE6 Gif (no PNGs) */
|
||||
|
||||
*html ul.quicktabs-tabs.quicktabs-style-mac li a{
|
||||
color:#fff!important;
|
||||
background:transparent url(images/mac.gif) no-repeat right -25px ;
|
||||
}
|
||||
*html ul.quicktabs-tabs.quicktabs-style-mac li{ /* image for IE6 */
|
||||
background:transparent url(images/mac.gif) no-repeat 0 0px;
|
||||
}
|
@@ -0,0 +1,50 @@
|
||||
|
||||
.quicktabs_wrapper.quicktabs-style-navlist {
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
display: block;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-navlist {
|
||||
float: left;
|
||||
padding: 4px 0;
|
||||
margin: 0;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
width: 20%;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-navlist li {
|
||||
display: block;
|
||||
margin-right: -1px;
|
||||
padding: 0;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-navlist li a {
|
||||
display: block;
|
||||
color: #404040;
|
||||
text-align: right;
|
||||
text-decoration: none;
|
||||
margin: 0;
|
||||
padding: 0 10px 0 0;
|
||||
height: 23px;
|
||||
font-weight: normal;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-navlist li.active {
|
||||
background: #F0F8FC;
|
||||
border-top: 1px solid #BFD0FF;
|
||||
border-bottom: 1px solid #BFD0FF;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-navlist li.active a {
|
||||
color: #007734;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.quicktabs_main.quicktabs-style-navlist {
|
||||
float: left;
|
||||
border: 1px solid #BFD0FF;
|
||||
background: #F0F8FC;
|
||||
padding: 10px;
|
||||
min-height: 64px;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
width: 70%;
|
||||
}
|
After Width: | Height: | Size: 858 B |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 51 B |
After Width: | Height: | Size: 120 B |
@@ -0,0 +1,4 @@
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-phylactere li{
|
||||
float: right;
|
||||
}
|
@@ -0,0 +1,53 @@
|
||||
|
||||
.quicktabs_main.quicktabs-style-phylactere{
|
||||
clear:both;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-phylactere{
|
||||
margin:0 0 10px 0;
|
||||
padding:0;
|
||||
font-size:12px;
|
||||
list-style: none;
|
||||
background:transparent url(images/shade.png) repeat-x bottom left;
|
||||
height:28px;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-phylactere li{
|
||||
float: left;
|
||||
margin:0 5px;
|
||||
padding:0 0 8px 23px;
|
||||
background:transparent url(images/phy.png) no-repeat 0 -59px;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-phylactere li a{
|
||||
font:bold 12px/170% Verdana;
|
||||
margin: 0;
|
||||
display:block;
|
||||
padding:2px 21px 1px 0;
|
||||
text-decoration:none;
|
||||
color: #bbb !important;
|
||||
background:transparent url(images/phy.png) no-repeat right -35px ;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-phylactere li a:hover{
|
||||
text-decoration:none;
|
||||
color:#888 !important;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-phylactere li.active a{
|
||||
color: #0372d9 !important;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-phylactere li.active{
|
||||
background-position: 0 0;
|
||||
padding-bottom:11px;
|
||||
position:relative;
|
||||
top:-2px;
|
||||
}
|
||||
|
||||
/* IE6 */
|
||||
|
||||
*html ul.quicktabs-tabs.quicktabs-style-phylactere{
|
||||
background: transparent url(images/shade.gif) repeat-x 0 25px;
|
||||
}
|
||||
*html ul.quicktabs-tabs.quicktabs-style-phylactere li a{
|
||||
padding:0px 21px 3px 0;
|
||||
background-image: url(images/phy.gif);
|
||||
}
|
||||
*html ul.quicktabs-tabs.quicktabs-style-phylactere li{ /* image for IE6 */
|
||||
background-image: url(images/phy.gif);
|
||||
}
|
After Width: | Height: | Size: 220 B |
After Width: | Height: | Size: 216 B |
After Width: | Height: | Size: 221 B |
@@ -0,0 +1,9 @@
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-sky li {
|
||||
float: right;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-sky li a,
|
||||
ul.quicktabs-tabs.quicktabs-style-sky li a:visited {
|
||||
float: right;
|
||||
}
|
@@ -0,0 +1,94 @@
|
||||
|
||||
/* Quicktabs - Sky theme style
|
||||
* http://drupal.org/project/sky
|
||||
*/
|
||||
|
||||
.quicktabs_main.quicktabs-style-sky {
|
||||
border: 1px solid #eee;
|
||||
clear: both;
|
||||
padding: 10px 5px 0 5px;
|
||||
position: relative;
|
||||
top: -0.1em;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-sky {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-sky li {
|
||||
float: left;
|
||||
font-weight: normal;
|
||||
list-style: none;
|
||||
margin: 0.3em 0 0 0;
|
||||
height: 2.65em;
|
||||
min-height: 2.95em;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-sky li.active {
|
||||
margin: -0.2em 0 0 0;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-sky li a,
|
||||
ul.quicktabs-tabs.quicktabs-style-sky li a:visited {
|
||||
float: left;
|
||||
display: block;
|
||||
height: 2.65em;
|
||||
min-height: 2.95em;
|
||||
line-height: 2.95em;
|
||||
padding: 0 8px;
|
||||
text-decoration: none;
|
||||
border-right: 1px solid #eee;
|
||||
border-top: 1px solid #eee;
|
||||
font-size: .95em;
|
||||
background: #fff url('images/bg-shade-light.png') repeat-x bottom left;
|
||||
color: #777;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-sky li a:hover,
|
||||
ul.quicktabs-tabs.quicktabs-style-sky li.active a:hover {
|
||||
text-decoration: none;
|
||||
border-color: #B3B3B3;
|
||||
background: #B3B3B3 url('images/bg-shade-medium.png') repeat-x bottom left;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-sky li.active a,
|
||||
ul.quicktabs-tabs.quicktabs-style-sky li.active a:visited {
|
||||
height: 3.05em;
|
||||
min-height: 3.35em;
|
||||
line-height: 3.35em;
|
||||
font-weight: normal;
|
||||
border: 1px solid #eee;
|
||||
background: #858585 url('images/bg-shade-dark.png') repeat-x bottom left;
|
||||
border-color: #555;
|
||||
color: #fff;
|
||||
font-size: .95em;
|
||||
font-weight: normal;
|
||||
top: -0.025em;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-sky li:first-child a {
|
||||
border-left: solid 1px #eee;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-sky li.active a {
|
||||
border-left: solid 1px #777;
|
||||
}
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-sky li a:focus,
|
||||
ul.quicktabs-tabs.quicktabs-style-sky li a:active {
|
||||
outline: none;
|
||||
|
||||
}
|
||||
|
||||
/* Opera */
|
||||
@media all and (min-width: 0px) {
|
||||
body .quicktabs_main.quicktabs-style-sky {
|
||||
top: -0.2em;
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 160 B |
After Width: | Height: | Size: 331 B |
After Width: | Height: | Size: 473 B |
@@ -0,0 +1,6 @@
|
||||
|
||||
/* RTL support */
|
||||
|
||||
ul.quicktabs-tabs.quicktabs-style-zen li{
|
||||
float: right;
|
||||
}
|
@@ -0,0 +1,53 @@
|
||||
|
||||
/**
|
||||
* Style from the new (great!) ZEN THEME for Drupal
|
||||
* http://drupal.org/project/zen
|
||||
*/
|
||||
|
||||
.quicktabs_main.quicktabs-style-zen{
|
||||
clear:both;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-zen{
|
||||
margin:0 0 10px 0;
|
||||
padding:0 0 3px;
|
||||
font-size:1em;
|
||||
list-style: none;
|
||||
height:21px;
|
||||
background:transparent url(images/tab-bar.png) repeat-x left bottom;
|
||||
}
|
||||
*html ul.quicktabs-tabs.quicktabs-style-zen li{
|
||||
margin-bottom:-5px;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-zen li{
|
||||
float: left;
|
||||
margin:0 5px;
|
||||
padding: 0 0 0 5px;
|
||||
background:transparent url(images/tab-left-ie6.png) no-repeat left -38px;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-zen li a{
|
||||
font:bold 12px/170% Verdana;
|
||||
font-size-adjust:none;
|
||||
display: block;
|
||||
margin: 0;
|
||||
padding:4px 17px 0px 12px;
|
||||
border-width: 0;
|
||||
font-weight:bold;
|
||||
text-decoration:none;
|
||||
background: transparent url(images/tab-right-ie6.png) no-repeat right -38px;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-zen li:hover a{
|
||||
border-width: 0;
|
||||
background:transparent url(images/tab-right-ie6.png) no-repeat right -76px;
|
||||
}
|
||||
quicktabs-tabs.quicktabs-style-zen li:hover{
|
||||
background:transparent url(images/tab-left-ie6.png) no-repeat left -76px;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-zen li.active a,
|
||||
ul.quicktabs-tabs.quicktabs-style-zen li.active a:hover{
|
||||
text-decoration:none;
|
||||
border-width: 0;
|
||||
background:transparent url(images/tab-right-ie6.png) no-repeat right 0;
|
||||
}
|
||||
ul.quicktabs-tabs.quicktabs-style-zen li.active{
|
||||
background:transparent url(images/tab-left-ie6.png) no-repeat left 0;
|
||||
}
|