2013-11-25 04:19:58 +01:00
|
|
|
/**
|
|
|
|
* EGroupware: CSS with less preprocessor
|
|
|
|
*
|
|
|
|
* Please do NOT change app.css directly, instead change app.less and compile it!
|
|
|
|
|
|
|
|
* Dialog Import Export
|
|
|
|
*
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @author Stefan Reinhard <stefan.reinhard@pixelegg.de>
|
|
|
|
* @package projectmanager
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
div.preview {
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
width: 97%;
|
|
|
|
height: 95%;
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: white;
|
|
|
|
z-index: 999;
|
|
|
|
display: none;
|
|
|
|
border: 1px solid black;
|
|
|
|
margin: 1.5%;
|
|
|
|
}
|
|
|
|
div.preview .content {
|
|
|
|
overflow: auto;
|
|
|
|
max-height: 99%;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.preview_box .header,
|
|
|
|
.preview .header {
|
|
|
|
font-size: 150%;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
padding: 5px;
|
|
|
|
border-bottom: 1px outset;
|
|
|
|
}
|
|
|
|
.preview tr {
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
.preview div[id$='buttons'] {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0px;
|
|
|
|
width: 100%;
|
|
|
|
margin-left: 50%;
|
|
|
|
}
|
|
|
|
/* Dialog Import Export */
|
|
|
|
#importexport-export_dialog {
|
|
|
|
margin: 1em;
|
|
|
|
}
|
2013-12-20 10:35:46 +01:00
|
|
|
#importexport-export_dialog img {
|
|
|
|
height: 24px;
|
|
|
|
}
|
|
|
|
#importexport-export_dialog .et2_tabcntr {
|
|
|
|
height: 354px;
|
|
|
|
}
|
|
|
|
/* Tab General*/
|
|
|
|
#importexport-export_dialog_importexport-export_dialog-general_tab_content {
|
|
|
|
width: 400px;
|
|
|
|
}
|
|
|
|
#importexport-export_dialog_importexport-export_dialog-general_tab_content table.et2_grid tr:nth-child(even) {
|
|
|
|
background: #e6e6e6;
|
|
|
|
}
|
|
|
|
#importexport-export_dialog_importexport-export_dialog-general_tab_content table.et2_grid tr:nth-child(odd) {
|
|
|
|
background: #ffffff;
|
|
|
|
}
|
|
|
|
#importexport-export_dialog_importexport-export_dialog-general_tab_content table.et2_grid td {
|
|
|
|
padding: 0.5em;
|
|
|
|
}
|
|
|
|
/* Tab Auswahl*/
|
|
|
|
#importexport-export_dialog_importexport-export_dialog-selection_tab table.et2_grid tr:nth-child(even) {
|
|
|
|
background: #e6e6e6;
|
|
|
|
}
|
|
|
|
#importexport-export_dialog_importexport-export_dialog-selection_tab table.et2_grid tr:nth-child(odd) {
|
|
|
|
background: #ffffff;
|
|
|
|
}
|
|
|
|
#importexport-export_dialog_importexport-export_dialog-selection_tab table.et2_grid td {
|
|
|
|
padding: 0.5em;
|
|
|
|
}
|
|
|
|
/* Tab Optionen*/
|
|
|
|
#importexport-export_dialog_importexport-export_dialog-options_tab table.et2_grid tr:nth-child(even) {
|
|
|
|
background: #e6e6e6;
|
|
|
|
}
|
|
|
|
#importexport-export_dialog_importexport-export_dialog-options_tab table.et2_grid tr:nth-child(odd) {
|
|
|
|
background: #ffffff;
|
|
|
|
}
|
|
|
|
#importexport-export_dialog_importexport-export_dialog-options_tab table.et2_grid td {
|
|
|
|
padding: 0.5em;
|
|
|
|
}
|