Skip to content
Snippets Groups Projects
Commit e5d237dd authored by Joakim Stai's avatar Joakim Stai
Browse files

Oops: Removed CSS and JS files from the future that were committed by mistake

parent 8fc271dc
Branches master
No related tags found
No related merge requests found
/**
* Preset form
*/
div.export-column-right input.form-text,
div.export-column-left input.form-text {
width: 90%;
}
div.export-column-left {
width: 20%;
float: left;
}
div.export-column-right {
width: 80%;
float: right;
}
/**
* Panel links
*/
div.export-column-left ul#export-panel-links,
div.export-column-left ul#export-panel-links li,
div.export-column-left ul#export-panel-links li a {
display: block;
float: none;
padding: 0px;
margin: 0px;
}
div.export-column-left ul#export-panel-links {
margin: 0px 0px 10px;
}
div.export-column-left ul#export-panel-links li a {
background: #f8f8f8;
padding: 5px 5px 4px 4px;
border-left: 1px solid #eee;
border-bottom: 1px solid #eee;
cursor: pointer;
}
div.export-column-left ul#export-panel-links li a.export-panel-active {
padding: 4px 5px 4px 4px;
background: #fff;
border: 1px solid #ccc;
border-right: 0px;
margin-right: -2px;
}
/* Panels */
div.export-panel {
border: 1px solid #ccc;
background: #fff;
padding: 10px;
margin: 0px 0px 20px;
display: none;
}
div.export-panel-active {
display: block;
}
/* Panels */
tr.export-status-overridden {
font-weight: bold;
}
/**
* @file
* JavaScript functions for the Export module's administration interface.
*/
/**
* Drupal behavior for Export UI form.
*/
Drupal.behaviors.export_ui = function(context) {
$('#export-ui-manage-form:not(.export_ui-processed)', context).each(function() {
$('ul#export-panel-links li a', context).click(function() {
$('.export-panel-active', context).removeClass('export-panel-active');
var panel = $(this).attr('href').split('#')[1];
$('div.' + panel, context).addClass('export-panel-active');
$(this).addClass('export-panel-active');
return false;
});
}).addClass('export_ui-processed');
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment