2012-04-17 11:50:25 +02:00
< ? php
2012-12-14 13:01:57 +01:00
/* Copyright ( C ) 2012 Nicolas Péré < nicolas @ amarok2 . net >
* Copyright ( C ) 2012 Xavier Peyronnet < xavier . peyronnet @ free . fr >
2012-12-30 15:13:49 +01:00
* Copyright ( C ) 2012 Regis Houssin < regis . houssin @ capnetworks . com >
2012-12-20 17:16:32 +01:00
* Copyright ( C ) 2012 Juanjo Menent < jmenent @ 2 byte . es >
2012-04-17 11:50:25 +02:00
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
2013-01-16 15:36:08 +01:00
* the Free Software Foundation ; either version 3 of the License , or
2012-04-17 11:50:25 +02:00
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program . If not , see < http :// www . gnu . org / licenses />.
*/
/**
* \file htdocs / theme / amarok / style . css . php
* \brief Fichier de style CSS du theme amarok
*/
2012-12-14 13:01:57 +01:00
2012-04-17 11:50:25 +02:00
//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language
//if (! defined('NOREQUIREDB')) define('NOREQUIREDB','1'); // Not disabled to increase speed. Language code is found on url.
if ( ! defined ( 'NOREQUIRESOC' )) define ( 'NOREQUIRESOC' , '1' );
//if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1'); // Not disabled cause need to do translations
if ( ! defined ( 'NOCSRFCHECK' )) define ( 'NOCSRFCHECK' , 1 );
if ( ! defined ( 'NOTOKENRENEWAL' )) define ( 'NOTOKENRENEWAL' , 1 );
if ( ! defined ( 'NOLOGIN' )) define ( 'NOLOGIN' , 1 );
if ( ! defined ( 'NOREQUIREMENU' )) define ( 'NOREQUIREMENU' , 1 );
if ( ! defined ( 'NOREQUIREHTML' )) define ( 'NOREQUIREHTML' , 1 );
if ( ! defined ( 'NOREQUIREAJAX' )) define ( 'NOREQUIREAJAX' , '1' );
2012-04-30 15:17:50 +02:00
session_cache_limiter ( FALSE );
2012-04-17 11:50:25 +02:00
2012-12-14 13:01:57 +01:00
require_once ( " ../../main.inc.php " );
2012-04-17 11:50:25 +02:00
// Define css type
header ( 'Content-type: text/css' );
// Important: Following code is to avoid page request by browser and PHP CPU at
// each Dolibarr page access.
if ( empty ( $dolibarr_nocache )) header ( 'Cache-Control: max-age=3600, public, must-revalidate' );
else header ( 'Cache-Control: no-cache' );
// On the fly GZIP compression for all pages (if browser support it). Must set the bit 3 of constant to 1.
if ( isset ( $conf -> global -> MAIN_OPTIMIZE_SPEED ) && ( $conf -> global -> MAIN_OPTIMIZE_SPEED & 0x04 )) { ob_start ( " ob_gzhandler " ); }
if ( GETPOST ( 'lang' )) $langs -> setDefaultLang ( GETPOST ( 'lang' )); // If language was forced on URL
if ( GETPOST ( 'theme' )) $conf -> theme = GETPOST ( 'theme' ); // If theme was forced on URL
$langs -> load ( " main " , 0 , 1 );
$right = ( $langs -> trans ( " DIRECTION " ) == 'rtl' ? 'left' : 'right' );
$left = ( $langs -> trans ( " DIRECTION " ) == 'rtl' ? 'right' : 'left' );
$fontsize = empty ( $conf -> browser -> phone ) ? '12' : '12' ;
$fontsizesmaller = empty ( $conf -> browser -> phone ) ? '11' : '11' ;
2012-12-14 13:01:57 +01:00
$path = '' ; // This value may be used in future for external module to overwrite theme
2012-04-17 11:50:25 +02:00
2012-12-14 13:01:57 +01:00
// Define image path files
$fontlist = 'helvetica,arial,tahoma,verdana' ; //$fontlist='Verdana,Helvetica,Arial,sans-serif';
//'/theme/auguria/img/menus/trtitle.png';
$img_liste_titre = dol_buildpath ( $path . '/theme/amarok/img/menus/trtitle.png' , 1 );
$img_head = dol_buildpath ( $path . '/theme/amarok/img/headbg2.jpg' , 1 );
$img_button = dol_buildpath ( $path . '/theme/amarok/img/button_bg.png' , 1 );
2012-04-17 11:50:25 +02:00
2012-12-14 13:01:57 +01:00
?>
2012-04-18 14:27:31 +02:00
2012-12-14 13:01:57 +01:00
/* ============================================================================== */
/* Styles par défaut */
/* ============================================================================== */
2012-04-17 11:50:25 +02:00
2012-12-14 13:01:57 +01:00
* , html {
margin : 0 ;
padding : 0 ;
2013-01-10 16:06:13 +01:00
font - size : 100 % ;
2012-12-14 13:01:57 +01:00
}
2012-04-17 11:50:25 +02:00
2013-01-10 16:06:13 +01:00
/*. fiche ul {
margin : 0.5 em ;
padding : 0.5 em ;
padding - left : 2 em ;
} */
2012-12-14 13:01:57 +01:00
body {
background - color : #f5f5f5;
< ? php if ( $_SESSION [ 'dol_login' ] != '' ) { ?>
< ? php if ( GETPOST ( " optioncss " ) != 'print' ) { ?>
background - image : url ( < ? php echo DOL_URL_ROOT . '/theme/amarok/img/vmenu.png' ?> );
background - repeat : repeat - y ;
2012-12-14 17:05:56 +01:00
margin : 0 px ;
2012-12-14 13:01:57 +01:00
< ? php } ?>
< ? php } else { ?>
background - image : url ( < ? php echo DOL_URL_ROOT . '/theme/amarok/img/background_login.png' ?> );
2012-12-14 17:05:56 +01:00
margin : 100 px ;
2012-12-14 13:01:57 +01:00
< ? php } ?>
color : #232323;
font - size :< ? php print $fontsize ?> px;
font - family :< ? php print $fontlist ?> ;
2012-12-30 12:02:54 +01:00
2012-12-14 13:01:57 +01:00
< ? php print 'direction:' . $langs -> trans ( " DIRECTION " ) . " ; \n " ; ?>
2012-09-22 20:27:06 +02:00
}
2012-12-14 13:01:57 +01:00
. checkVatPopup {
background - color : #f5f5f5;
background - image : none ;
margin : 10 px ;
line - height : 16 px ;
2012-09-22 20:27:06 +02:00
}
2012-12-14 13:01:57 +01:00
a {
font - family :< ? php print $fontlist ?> ;
font - weight : bold ;
text - decoration : none ;
color : #232323;
}
2012-09-22 20:27:06 +02:00
2012-12-14 13:01:57 +01:00
a : hover , a : active {
color : rgba ( 0 , 0 , 0 , . 6 );
}
2012-04-17 11:50:25 +02:00
2012-12-14 13:01:57 +01:00
input , textarea {
font - size :< ? php print $fontsize ?> px;
font - family :< ? php print $fontlist ?> ;
border - radius : 4 px ;
border : solid 1 px rgba ( 0 , 0 , 0 , . 3 );
border - top : solid 1 px rgba ( 0 , 0 , 0 , . 4 );
border - bottom : solid 1 px rgba ( 0 , 0 , 0 , . 2 );
box - shadow : 1 px 1 px 2 px rgba ( 0 , 0 , 0 , . 2 ) inset ;
}
2012-04-18 14:27:31 +02:00
2012-12-14 13:01:57 +01:00
input [ type = " image " ] {
border - radius : 0 px ;
border : none ;
box - shadow : none ;
}
2012-04-18 14:27:31 +02:00
2012-12-14 13:01:57 +01:00
input . flat {
font - size :< ? php print $fontsize ?> px;
font - family :< ? php print $fontlist ?> ;
border - radius : 4 px ;
border : solid 1 px rgba ( 0 , 0 , 0 , . 3 );
border - top : solid 1 px rgba ( 0 , 0 , 0 , . 4 );
border - bottom : solid 1 px rgba ( 0 , 0 , 0 , . 2 );
box - shadow : 1 px 1 px 2 px rgba ( 0 , 0 , 0 , . 2 ) inset ;
}
2012-04-17 11:50:25 +02:00
2012-12-14 13:01:57 +01:00
input : disabled { background : #b6b6b6;}
2012-04-17 11:50:25 +02:00
2012-12-14 13:01:57 +01:00
textarea . flat {
font - size :< ? php print $fontsize ?> px;
font - family :< ? php print $fontlist ?> ;
border - radius : 4 px ;
border : solid 1 px rgba ( 0 , 0 , 0 , . 3 );
border - top : solid 1 px rgba ( 0 , 0 , 0 , . 4 );
border - bottom : solid 1 px rgba ( 0 , 0 , 0 , . 2 );
box - shadow : 1 px 1 px 2 px rgba ( 0 , 0 , 0 , . 2 ) inset ;
}
2012-04-17 11:50:25 +02:00
2012-12-14 13:01:57 +01:00
textarea : disabled { background : #dddddd;}
select . flat {
font - size :< ? php print $fontsize ?> px;
font - family :< ? php print $fontlist ?> ;
border - radius : 4 px ;
border : solid 1 px rgba ( 0 , 0 , 0 , . 3 );
border - top : solid 1 px rgba ( 0 , 0 , 0 , . 4 );
border - bottom : solid 1 px rgba ( 0 , 0 , 0 , . 2 );
box - shadow : 1 px 1 px 2 px rgba ( 0 , 0 , 0 , . 2 ) inset ;
}
2012-09-22 20:27:06 +02:00
2012-12-14 13:01:57 +01:00
form {
padding : 0 px ;
margin : 0 px ;
2012-06-14 20:07:35 +02:00
}
2012-04-17 11:50:25 +02:00
2012-12-14 13:01:57 +01:00
/* ============================================================================== */
/* Login */
/* ============================================================================== */
2012-04-17 11:50:25 +02:00
form #login {
display : block ;
border : solid 1 px rgba ( 0 , 0 , 0 , . 4 );
2012-12-14 13:01:57 +01:00
border - top : solid 1 px #ffffff;
background - color : #c7d0db;
background - image : linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- o - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- moz - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- webkit - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- ms - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- webkit - gradient (
2012-04-17 11:50:25 +02:00
linear ,
left top ,
left bottom ,
color - stop ( 0 , rgba ( 255 , 255 , 255 , . 3 )),
color - stop ( 1 , rgba ( 0 , 0 , 0 , . 3 ))
);
margin - left : auto ;
margin - right : auto ;
2012-12-14 17:05:56 +01:00
margin - bottom : 25 px ;
2012-12-14 13:01:57 +01:00
padding : 20 px 20 px 10 px ;
2012-04-17 11:50:25 +02:00
width : 500 px ;
2012-12-14 13:01:57 +01:00
border - radius : 12 px ;
box - shadow : 0 0 16 px rgba ( 0 , 0 , 0 , . 8 );
}
form #login img {width:auto; height:auto; opacity:.7;}
form #login img#img_logo {
2012-12-14 17:05:56 +01:00
width : 220 px ;
max - width : 220 px ;
2012-04-17 11:50:25 +02:00
height : auto ;
border - radius : 6 px ;
padding : 6 px ;
2012-12-14 13:01:57 +01:00
background - color : #ffffff;
2012-04-17 11:50:25 +02:00
border : solid 1 px rgba ( 0 , 0 , 0 , . 4 );
border - top : solid 1 px rgba ( 0 , 0 , 0 , . 5 );
border - bottom : solid 1 px rgba ( 0 , 0 , 0 , . 3 );
2012-12-14 13:01:57 +01:00
box - shadow : 1 px 1 px 6 px rgba ( 0 , 0 , 0 , . 3 ) inset , 0 0 1 px rgba ( 255 , 255 , 255 , . 6 );
}
2012-12-30 12:02:54 +01:00
2012-12-14 13:01:57 +01:00
form #login input {
padding : 6 px ;
2012-04-17 11:50:25 +02:00
font - size : 120 % ;
2012-12-14 13:01:57 +01:00
}
2012-12-30 12:02:54 +01:00
2012-12-14 13:01:57 +01:00
form #login label, form#login td b {
2012-04-17 11:50:25 +02:00
vertical - align : middle ;
2012-12-14 13:01:57 +01:00
line - height : 40 px ;
2012-04-17 11:50:25 +02:00
color : rgba ( 0 , 0 , 0 , . 4 );
2012-12-14 13:01:57 +01:00
text - shadow : 1 px 1 px 1 px rgba ( 255 , 255 , 255 , . 6 );
}
2012-12-30 12:02:54 +01:00
2012-12-14 13:01:57 +01:00
form #login table.login_table {
margin : 10 px 0 px ;
border : none ;
background : none ! important ;
}
2012-04-18 14:27:31 +02:00
2012-12-14 13:01:57 +01:00
body . body center { color : white ;}
2012-04-17 11:50:25 +02:00
2012-12-14 13:01:57 +01:00
table . login_table { background - color : red ! important ;}
table . login_table tr td { vertical - align : middle ;}
table . login_table tr . vmenu td { font - size : 18 px ;}
table . login_table tr td a { color : #333333 !important;}
table . login_table tr td a : hover { color : #000000 !important;}
table . login_table . button {
2012-12-14 17:05:56 +01:00
padding : 2 px ;
padding - left : 6 px ;
padding - right : 6 px ;
margin - right : 6 px ;
border - radius :. 6 em ;
background - image : linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image : - o - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image : - moz - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image : - webkit - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image : - ms - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image : - webkit - gradient (
linear ,
left top ,
left bottom ,
color - stop ( 0 , rgba ( 255 , 255 , 255 , . 3 )),
color - stop ( 1 , rgba ( 0 , 0 , 0 , . 3 ))
);
}
table . login_table . button : hover {
background - image : linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 100 % , rgba ( 0 , 0 , 0 , . 3 ) 0 % );
background - image : - o - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 100 % , rgba ( 0 , 0 , 0 , . 3 ) 0 % );
background - image : - moz - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 100 % , rgba ( 0 , 0 , 0 , . 3 ) 0 % );
background - image : - webkit - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 100 % , rgba ( 0 , 0 , 0 , . 3 ) 0 % );
background - image : - ms - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 100 % , rgba ( 0 , 0 , 0 , . 3 ) 0 % );
background - image : - webkit - gradient (
linear ,
left top ,
left bottom ,
color - stop ( 1 , rgba ( 255 , 255 , 255 , . 3 )),
color - stop ( 0 , rgba ( 0 , 0 , 0 , . 3 ))
);
2012-12-14 13:01:57 +01:00
}
2012-12-30 12:02:54 +01:00
2012-12-14 13:01:57 +01:00
table . login_table . vmenu {
color : rgba ( 0 , 0 , 0 , . 6 );
text - shadow : 1 px 1 px 1 px rgba ( 255 , 255 , 255 , . 6 );
2012-04-17 11:50:25 +02:00
font - size : 120 % ;
2012-12-14 13:01:57 +01:00
}
2012-12-14 18:35:50 +01:00
. blockvmenubookmarks . menu_contenu {
background - color : transparent ;
}
2012-12-14 13:01:57 +01:00
/* ! Message d'erreur lors du login : */
center . error { padding : 8 px ! important ; padding - left : 26 px ! important ; padding - right : 20 px ; width : inherit ; max - width : 450 px ; color : #552323 !important; font-size:14px; border-radius:8px; text-align: left;}
/* For hide object and add pointer cursor */
. hideobject { display : none ;}
. linkobject { cursor : pointer ;}
/* For dragging lines */
. dragClass { color : #333333;}
td . showDragHandle { cursor : move ;}
. tdlineupdown { white - space : nowrap ;}
/* ============================================================================== */
/* Menu top et 1ère ligne tableau */
/* ============================================================================== */
2012-04-17 11:50:25 +02:00
div . tmenu {
2012-12-14 13:01:57 +01:00
< ? php if ( GETPOST ( " optioncss " ) == 'print' ) { ?>
display : none ;
< ? php } else { ?>
position : relative ;
display : block ;
2012-04-17 11:50:25 +02:00
margin : 0 ;
padding : 0 ;
padding - left : 1 em ;
top : 0 ;
left : 0 ;
right : 0 ;
2012-12-14 13:01:57 +01:00
white - space : nowrap ;
2012-04-17 11:50:25 +02:00
height : 36 px ;
line - height : 36 px ;
2012-12-14 13:01:57 +01:00
background : #333333;
background - image : linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- o - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- moz - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- webkit - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- ms - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- webkit - gradient (
2012-04-17 11:50:25 +02:00
linear ,
left top ,
left bottom ,
color - stop ( 0 , rgba ( 255 , 255 , 255 , . 3 )),
color - stop ( 1 , rgba ( 0 , 0 , 0 , . 3 ))
);
border - bottom : solid 1 px rgba ( 0 , 0 , 0 , . 8 );
2012-12-14 13:01:57 +01:00
box - shadow : 0 0 6 px rgba ( 0 , 0 , 0 , . 4 ) ! important ;
2012-04-17 11:50:25 +02:00
z - index : 100 ;
2012-12-14 13:01:57 +01:00
< ? php } ?>
}
div . tmenu a {
font - weight : normal ;
}
2012-04-17 11:50:25 +02:00
div . tmenu li {
display : inline - table ;
margin - right : 1 em ;
2012-12-14 13:01:57 +01:00
text - transform : uppercase ;
}
div . tmenu li a { color : #cccccc;}
div . tmenu li a : hover { color : rgba ( 255 , 255 , 255 , . 2 );}
2012-12-30 12:02:54 +01:00
2012-12-14 13:01:57 +01:00
div . tmenu ul li a . tmenusel { /* texte du menu principal sélectionné */
color : #ffffff;
2012-04-17 11:50:25 +02:00
font - weight : bold ;
}
2012-12-14 13:01:57 +01:00
. tmenudisabled { color : #d0d0d0 !important;}
/* --- end nav --- */
/* Login */
2012-04-17 11:50:25 +02:00
div . login_block {
2012-12-14 13:01:57 +01:00
position : absolute ;
top : 5 px ;
right : 10 px ;
z - index : 100 ;
< ? php if ( GETPOST ( " optioncss " ) == 'print' ) { ?>
display : none ;
< ? php } ?>
}
div . login_block a { color : rgba ( 255 , 255 , 255 , . 6 );}
div . login_block a : hover { color : #ffffff}
div . login_block table {
display : inline ;
}
div . login {
white - space : nowrap ;
padding : 8 px 0 px 0 px 0 px ;
margin : 0 px 0 px 0 px 8 px ;
font - weight : bold ;
}
img . login , img . printer , img . entity {
padding : 8 px 0 px 0 px 0 px ;
margin : 0 px 0 px 0 px 8 px ;
text - decoration : none ;
color : #ffffff;
font - weight : bold ;
}
2012-04-17 11:50:25 +02:00
2012-12-14 13:01:57 +01:00
/* ============================================================================== */
/* Menu gauche */
/* ============================================================================== */
2012-04-17 11:50:25 +02:00
div . vmenu {
2012-12-14 13:01:57 +01:00
< ? php if ( GETPOST ( " optioncss " ) == 'print' ) { ?>
display : none ;
< ? php } else { ?>
width : 170 px ;
< ? php } ?>
}
2012-04-17 11:50:25 +02:00
. blockvmenupair . menu_titre , . blockvmenuimpair . menu_titre {
height : 22 px ;
line - height : 22 px ;
text - align : center ;
background - color : rgba ( 0 , 0 , 0 , . 08 );
2012-12-14 13:01:57 +01:00
background - image : linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- o - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- moz - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- webkit - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- ms - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- webkit - gradient (
2012-04-17 11:50:25 +02:00
linear ,
left top ,
left bottom ,
color - stop ( 0 , rgba ( 255 , 255 , 255 , . 3 )),
color - stop ( 1 , rgba ( 0 , 0 , 0 , . 3 ))
);
padding - left : 3 px ;
2012-12-14 13:01:57 +01:00
border - top : solid 1 px rgba ( 255 , 255 , 255 , . 5 );
border - bottom : solid 1 px rgba ( 0 , 0 , 0 , . 5 );
}
2012-04-18 14:27:31 +02:00
2012-12-14 13:01:57 +01:00
. blockvmenupair . menu_titre a , . blockvmenuimpair . menu_titre a { font - weight : normal ;}
2012-04-17 11:50:25 +02:00
. menu_contenu {
2012-12-14 13:01:57 +01:00
background - color : #ffffff;
2012-04-17 11:50:25 +02:00
padding - left : 12 px ;
2013-01-08 16:46:06 +01:00
border - top : solid 1 px rgba ( 0 , 0 , 0 , . 05 );
2012-12-14 13:01:57 +01:00
}
. menu_contenu : hover { background - color : #f7f7f7;}
. menu_contenu a . vsmenu {
color : #000000;
line - height : 18 px ;
font - weight : normal ;
}
2012-04-17 11:50:25 +02:00
. blockvmenusearch {
border - top : solid 1 px rgba ( 0 , 0 , 0 , . 3 );
2012-12-14 13:01:57 +01:00
padding : 10 px 5 px 20 px ;
text - align : center ;
}
2012-04-17 11:50:25 +02:00
. blockvmenusearch . menu_titre {
margin - top : 6 px ;
2012-12-14 13:01:57 +01:00
text - align : left ;
padding - left : 18 px ;
}
2012-04-17 11:50:25 +02:00
#blockvmenuhelp {
2012-12-14 13:01:57 +01:00
border - top : solid 1 px rgba ( 0 , 0 , 0 , . 1 );
2012-04-17 11:50:25 +02:00
padding : 12 px ;
text - align : center ;
2012-12-14 13:01:57 +01:00
}
2012-04-17 11:50:25 +02:00
2012-12-14 13:01:57 +01:00
/* ============================================================================== */
/* Panes for Main */
/* ============================================================================== */
#mainContent {
background - color : #ffffff;
}
#mainContent, #leftContent .ui-layout-pane {
padding : 0 px ;
overflow : auto ;
}
#mainContent, #leftContent .ui-layout-center {
padding : 0 px ;
position : relative ; /* contain floated or positioned elements */
overflow : auto ; /* add scrolling to content-div */
}
2012-04-18 14:27:31 +02:00
2012-12-14 13:01:57 +01:00
/* ============================================================================== */
/* Toolbar for ECM or Filemanager */
/* ============================================================================== */
2012-12-30 12:02:54 +01:00
. largebutton {
background - image : - o - linear - gradient ( bottom , rgb ( < ? php echo '240,240,240' ; ?> ) 15%, rgb(<?php echo '255,255,255'; ?>) 100%) !important;
background - image : - moz - linear - gradient ( bottom , rgb ( < ? php echo '240,240,240' ; ?> ) 15%, rgb(<?php echo '255,255,255'; ?>) 100%) !important;
background - image : - webkit - linear - gradient ( bottom , rgb ( < ? php echo '240,240,240' ; ?> ) 15%, rgb(<?php echo '255,255,255'; ?>) 100%) !important;
background - image : - ms - linear - gradient ( bottom , rgb ( < ? php echo '240,240,240' ; ?> ) 15%, rgb(<?php echo '255,255,255'; ?>) 100%) !important;
background - image : linear - gradient ( bottom , rgb ( < ? php echo '240,240,240' ; ?> ) 15%, rgb(<?php echo '255,255,255'; ?>) 100%) !important;
border : 1 px solid #CCC !important;
- moz - border - radius : 5 px 5 px 5 px 5 px ! important ;
- webkit - border - radius : 5 px 5 px 5 px 5 px ! important ;
border - radius : 5 px 5 px 5 px 5 px ! important ;
- moz - box - shadow : 4 px 4 px 4 px #EEE;
- webkit - box - shadow : 4 px 4 px 4 px #EEE;
box - shadow : 4 px 4 px 4 px #EEE;
padding : 0 4 px 0 4 px ! important ;
}
2012-12-14 13:01:57 +01:00
. toolbar {}
. toolbarbutton {}
/* ============================================================================== */
/* Panes for ECM or Filemanager */
/* ============================================================================== */
2013-01-10 16:06:13 +01:00
2012-12-14 13:01:57 +01:00
#containerlayout .layout-with-no-border {
2013-01-10 16:06:13 +01:00
border : 0 ! important ;
border - width : 0 ! important ;
2012-12-14 13:01:57 +01:00
}
#containerlayout .layout-padding {
2013-01-10 16:06:13 +01:00
padding : 2 px ! important ;
2012-12-14 13:01:57 +01:00
}
2013-01-10 16:06:13 +01:00
/*
* PANES and CONTENT - DIVs
*/
#containerlayout .ui-layout-pane { /* all 'panes' */
background : #FFF;
border : 1 px solid #BBB;
/* DO NOT add scrolling ( or padding ) to 'panes' that have a content - div ,
otherwise you may get double - scrollbars - on the pane AND on the content - div
*/
padding : 0 px ;
overflow : auto ;
}
/* (scrolling) content-div inside pane allows for fixed header(s) and/or footer(s) */
#containerlayout .ui-layout-content {
padding : 10 px ;
position : relative ; /* contain floated or positioned elements */
overflow : auto ; /* add scrolling to content-div */
2012-12-14 13:01:57 +01:00
}
2013-01-10 16:06:13 +01:00
/*
* RESIZER - BARS
*/
. ui - layout - resizer { /* all 'resizer-bars' */
width : < ? php echo ( empty ( $conf -> browser -> phone ) ? '8' : '24' ); ?> px !important;
}
. ui - layout - resizer - hover { /* affects both open and closed states */
}
/* NOTE : It looks best when 'hover' and 'dragging' are set to the same color ,
otherwise color shifts while dragging when bar can ' t keep up with mouse */
/*.ui-layout-resizer-open-hover ,*/ /* hover-color to 'resize' */
. ui - layout - resizer - dragging { /* resizer beging 'dragging' */
background : #DDD;
width : < ? php echo ( empty ( $conf -> browser -> phone ) ? '8' : '24' ); ?> px;
}
. ui - layout - resizer - dragging { /* CLONED resizer being dragged */
border - left : 1 px solid #BBB;
border - right : 1 px solid #BBB;
}
/* NOTE: Add a 'dragging-limit' color to provide visual feedback when resizer hits min/max size limits */
. ui - layout - resizer - dragging - limit { /* CLONED resizer at min or max size-limit */
background : #E1A4A4; /* red */
}
. ui - layout - resizer - closed {
background - color : #DDDDDD;
}
. ui - layout - resizer - closed : hover {
background - color : #EEDDDD;
}
. ui - layout - resizer - sliding { /* resizer when pane is 'slid open' */
opacity : . 10 ; /* show only a slight shadow */
filter : alpha ( opacity = 10 );
}
. ui - layout - resizer - sliding - hover { /* sliding resizer - hover */
opacity : 1.00 ; /* on-hover, show the resizer-bar normally */
filter : alpha ( opacity = 100 );
}
/* sliding resizer - add 'outside-border' to resizer on-hover */
/* this sample illustrates how to target specific panes and states */
/*. ui - layout - resizer - north - sliding - hover { border - bottom - width : 1 px ; }
. ui - layout - resizer - south - sliding - hover { border - top - width : 1 px ; }
. ui - layout - resizer - west - sliding - hover { border - right - width : 1 px ; }
. ui - layout - resizer - east - sliding - hover { border - left - width : 1 px ; }
*/
/*
* TOGGLER - BUTTONS
*/
. ui - layout - toggler {
< ? php if ( empty ( $conf -> browser -> phone )) { ?>
border - top : 1 px solid #AAA; /* match pane-border */
border - right : 1 px solid #AAA; /* match pane-border */
border - bottom : 1 px solid #AAA; /* match pane-border */
background - color : #DDD;
top : 5 px ! important ;
< ? php } else { ?>
diplay : none ;
< ? php } ?>
}
. ui - layout - toggler - open {
height : 54 px ! important ;
width : < ? php echo ( empty ( $conf -> browser -> phone ) ? '7' : '22' ); ?> px !important;
- moz - border - radius : 0 px 10 px 10 px 0 px ;
- webkit - border - radius : 0 px 10 px 10 px 0 px ;
border - radius : 0 px 10 px 10 px 0 px ;
}
. ui - layout - toggler - closed {
height : < ? php echo ( empty ( $conf -> browser -> phone ) ? '54' : '2' ); ?> px !important;
width : < ? php echo ( empty ( $conf -> browser -> phone ) ? '7' : '22' ); ?> px !important;
- moz - border - radius : 0 px 10 px 10 px 0 px ;
- webkit - border - radius : 0 px 10 px 10 px 0 px ;
border - radius : 0 px 10 px 10 px 0 px ;
}
. ui - layout - toggler . content { /* style the text we put INSIDE the togglers */
color : #666;
font - size : 12 px ;
font - weight : bold ;
width : 100 % ;
padding - bottom : 0.35 ex ; /* to 'vertically center' text inside text-span */
}
/* hide the toggler-button when the pane is 'slid open' */
. ui - layout - resizer - sliding ui - layout - toggler {
display : none ;
2012-12-14 13:01:57 +01:00
}
2013-01-10 16:06:13 +01:00
. ui - layout - north {
height : < ? php print ( empty ( $conf -> browser -> phone ) ? '54' : '21' ); ?> px !important;
2012-12-14 13:01:57 +01:00
}
2013-01-10 16:06:13 +01:00
/* ECM */
#containerlayout .ecm-layout-pane { /* all 'panes' */
background : #FFF;
border : 1 px solid #BBB;
/* DO NOT add scrolling ( or padding ) to 'panes' that have a content - div ,
otherwise you may get double - scrollbars - on the pane AND on the content - div
*/
padding : 0 px ;
overflow : auto ;
}
/* (scrolling) content-div inside pane allows for fixed header(s) and/or footer(s) */
#containerlayout .ecm-layout-content {
padding : 10 px ;
position : relative ; /* contain floated or positioned elements */
overflow : auto ; /* add scrolling to content-div */
}
. ecm - layout - toggler {
border - top : 1 px solid #AAA; /* match pane-border */
border - right : 1 px solid #AAA; /* match pane-border */
border - bottom : 1 px solid #AAA; /* match pane-border */
background - color : #CCC;
}
. ecm - layout - toggler - open {
height : 48 px ! important ;
width : 6 px ! important ;
- moz - border - radius : 0 px 10 px 10 px 0 px ;
- webkit - border - radius : 0 px 10 px 10 px 0 px ;
border - radius : 0 px 10 px 10 px 0 px ;
}
. ecm - layout - toggler - closed {
height : 48 px ! important ;
width : 6 px ! important ;
2012-12-14 13:01:57 +01:00
}
2013-01-10 16:06:13 +01:00
. ecm - layout - toggler . content { /* style the text we put INSIDE the togglers */
color : #666;
font - size : 12 px ;
font - weight : bold ;
width : 100 % ;
padding - bottom : 0.35 ex ; /* to 'vertically center' text inside text-span */
}
#ecm-layout-west-resizer {
width : 6 px ! important ;
}
. ecm - layout - resizer { /* all 'resizer-bars' */
border : 1 px solid #BBB;
border - width : 0 ;
}
. ecm - layout - resizer - closed {
}
. ecm - in - layout - center {
border - left : 1 px ! important ;
border - right : 0 px ! important ;
border - top : 0 px ! important ;
}
. ecm - in - layout - south {
border - left : 0 px ! important ;
border - right : 0 px ! important ;
border - bottom : 0 px ! important ;
padding : 4 px 0 4 px 4 px ! important ;
}
2012-12-14 13:01:57 +01:00
/* ============================================================================== */
/* Onglets */
/* ============================================================================== */
div . tabs {
margin - top : 8 px ;
}
div . tabBar {
background - color : #ffffff;
padding : 6 px ;
margin : 3 px 0 px 5 px ;
border : 1 px solid #bbbbbb;
}
div . tabBar table . notopnoleftnoright {
white - space : nowrap ;
}
div . tabsAction {
margin - top : 12 px ! important ;
text - align : right ;
}
a . tabTitle {
color : rgba ( 0 , 0 , 0 , . 5 );
margin - right : 10 px ;
text - shadow : 1 px 1 px 1 px #ffffff;
padding - left : 5 px ;
vertical - align : middle ;
}
a . tabTitle img {
vertical - align : top ;
margin - top :- 1 px ;
}
2012-04-18 14:27:31 +02:00
2012-04-17 11:50:25 +02:00
. tab {
margin - left : 2 px ;
margin - right : 2 px ;
2012-12-14 13:01:57 +01:00
padding : 3 px 0 px 4 px ;
2012-04-17 11:50:25 +02:00
padding - left : 8 px ;
padding - right : 8 px ;
2012-12-14 13:01:57 +01:00
background - color : rgba ( 0 , 0 , 0 , . 2 );
color : #666666;
2012-04-17 11:50:25 +02:00
border : solid 1 px rgba ( 0 , 0 , 0 , . 3 );
2012-12-14 13:01:57 +01:00
border - bottom : 0 px ;
2012-04-17 11:50:25 +02:00
- webkit - border - top - left - radius : 6 px ;
- webkit - border - top - right - radius : 6 px ;
2012-12-14 13:01:57 +01:00
}
2012-12-30 12:02:54 +01:00
2012-04-17 11:50:25 +02:00
. tab #active {
2012-12-14 13:01:57 +01:00
color : #232323;
2012-04-17 11:50:25 +02:00
font - weight : bold ;
2012-12-14 13:01:57 +01:00
background - color : #ffffff;
border - bottom : solid 1 px #ffffff;
}
2012-12-30 12:02:54 +01:00
2012-12-14 13:01:57 +01:00
. tab : hover { color : #333333;}
2012-04-17 11:50:25 +02:00
2012-12-14 13:01:57 +01:00
/* ============================================================================== */
/* Styles de positionnement des zones */
/* ============================================================================== */
2012-12-30 12:02:54 +01:00
2013-01-07 17:57:39 +01:00
td . vmenu {
< ? php if ( GETPOST ( " optioncss " ) != 'print' ) { ?>
margin - right : 2 px ;
padding : 0 px ;
width : 170 px ;
/* border-right: 1px solid #666666; */
< ? php } ?>
}
2012-12-14 13:01:57 +01:00
div . fiche {
2013-01-07 17:57:39 +01:00
padding : 8 px 12 px 10 px ;
margin -< ? php print $left ; ?> : <?php print (empty($conf->browser->phone) || empty($conf->global->MAIN_MENU_USE_JQUERY_LAYOUT))?'16':'24'; ?>px;
2012-12-14 13:01:57 +01:00
margin -< ? php print $right ; ?> : <?php print empty($conf->browser->phone)?'12':'6'; ?>px;
}
2012-12-30 12:02:54 +01:00
2012-12-14 13:01:57 +01:00
div . fichecenter {
width : 100 % ;
clear : both ; /* This is to have div fichecenter that are true rectangles */
}
div . fichethirdleft {
< ? php if ( empty ( $conf -> browser -> phone )) { print " float: " . $left . " ; \n " ; } ?>
< ? php if ( empty ( $conf -> browser -> phone )) { print " width: 35%; \n " ; } ?>
< ? php if ( ! empty ( $conf -> browser -> phone )) { print " padding-bottom: 6px; \n " ; } ?>
}
div . fichetwothirdright {
< ? php if ( empty ( $conf -> browser -> phone )) { print " float: " . $left . " ; \n " ; } ?>
< ? php if ( empty ( $conf -> browser -> phone )) { print " width: 65%; \n " ; } ?>
< ? php if ( ! empty ( $conf -> browser -> phone )) { print " padding-bottom: 6px \n " ; } ?>
}
div . fichehalfleft {
< ? php if ( empty ( $conf -> browser -> phone )) { print " float: " . $left . " ; \n " ; } ?>
< ? php if ( empty ( $conf -> browser -> phone )) { print " width: 50%; \n " ; } ?>
}
div . fichehalfright {
< ? php if ( empty ( $conf -> browser -> phone )) { print " float: " . $left . " ; \n " ; } ?>
< ? php if ( empty ( $conf -> browser -> phone )) { print " width: 50%; \n " ; } ?>
}
div . ficheaddleft {
< ? php if ( empty ( $conf -> browser -> phone )) { print " padding-left: 16px; \n " ; } ?>
}
2012-04-17 11:50:25 +02:00
2012-04-18 14:27:31 +02:00
2012-04-17 11:50:25 +02:00
2012-12-14 13:01:57 +01:00
/* ============================================================================== */
/* Boutons actions */
/* ============================================================================== */
2012-04-18 14:27:31 +02:00
2012-12-14 13:01:57 +01:00
/* boutons : */
2013-01-07 17:57:39 +01:00
. button , . butAction { background : #999; border: solid 1px #888; font-weight: normal; }
. butActionRefused { background : #eaeaea; color:rgba(0,0,0,0.6); font-weight: normal;}
. butActionDelete { background : #b33c37; border:solid 1px #8d2f2b; font-weight: normal;}
2012-04-17 11:50:25 +02:00
2012-12-14 13:01:57 +01:00
. button , . butAction , . butActionRefused , . butActionDelete {
2012-04-17 11:50:25 +02:00
padding : 2 px ;
2012-12-14 13:01:57 +01:00
padding - left : 6 px ;
padding - right : 6 px ;
margin - right : 6 px ;
/*
border - left : solid 1 px rgba ( 0 , 0 , 0 , . 3 );
border - right : solid 1 px rgba ( 0 , 0 , 0 , . 3 );
border - bottom : solid 1 px rgba ( 0 , 0 , 0 , . 6 );
border - top : solid 1 px rgba ( 0 , 0 , 0 , . 1 );
*/
border - radius :. 6 em ;
2012-04-17 11:50:25 +02:00
2012-12-14 13:01:57 +01:00
background - image : linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
2012-04-17 11:50:25 +02:00
background - image : - o - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image : - moz - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image : - webkit - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image : - ms - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image : - webkit - gradient (
linear ,
left top ,
left bottom ,
color - stop ( 0 , rgba ( 255 , 255 , 255 , . 3 )),
color - stop ( 1 , rgba ( 0 , 0 , 0 , . 3 ))
);
}
2012-04-18 14:27:31 +02:00
2013-01-07 17:57:39 +01:00
. button , a . butAction { color : white ; font - weight : normal ! important ;}
2012-12-14 13:01:57 +01:00
2013-01-07 17:57:39 +01:00
. butAction , . butActionDelete { color : white ;}
2012-12-14 13:01:57 +01:00
td . formdocbutton { padding - top : 6 px ;}
2012-12-20 17:16:32 +01:00
. button : hover , . butAction : hover , . butActionDelete : hover {
2012-12-14 13:01:57 +01:00
background - image : linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 100 % , rgba ( 0 , 0 , 0 , . 3 ) 0 % );
background - image : - o - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 100 % , rgba ( 0 , 0 , 0 , . 3 ) 0 % );
background - image : - moz - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 100 % , rgba ( 0 , 0 , 0 , . 3 ) 0 % );
background - image : - webkit - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 100 % , rgba ( 0 , 0 , 0 , . 3 ) 0 % );
background - image : - ms - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 100 % , rgba ( 0 , 0 , 0 , . 3 ) 0 % );
background - image : - webkit - gradient (
linear ,
left top ,
left bottom ,
color - stop ( 1 , rgba ( 255 , 255 , 255 , . 3 )),
color - stop ( 0 , rgba ( 0 , 0 , 0 , . 3 ))
);
2013-01-07 17:57:39 +01:00
color : white ;
2012-12-14 13:01:57 +01:00
}
/* ============================================================================== */
/* Tables */
/* ============================================================================== */
#undertopmenu {
}
table img {
padding : 0 px 2 px ;
vertical - align : middle ;
}
table . liste img {
padding : 0 px ;
}
table a {
vertical - align : middle ;
}
. nocellnopadd {
list - style - type : none ;
margin : 0 px ;
padding : 0 px ;
}
. allwidth {
width : 100 % ;
}
. notopnoleft {
border - collapse : collapse ;
border : 0 px ;
padding - top : 0 px ;
padding - left : 0 px ;
padding - right : 10 px ;
padding - bottom : 4 px ;
margin : 0 px 0 px ;
}
table . notopnoleftnoright {
border : 0 px ;
border - collapse : collapse ;
padding - top : 0 px ;
padding - left : 0 px ;
padding - right : 10 px ;
padding - bottom : 4 px ;
margin : 0 px ;
}
table . border {
border : 1 px solid #bbbbbb;
border - collapse : collapse ;
}
table . border td {
padding : 1 px 0 px ;
border : 1 px solid #dddddd;
border - collapse : collapse ;
padding - left : 2 px ;
}
/*
td . border {
border : 1 px solid #000000;
}
*/
/* Main boxes */
table . border . formdoc {
background - color : #f7f7f7;
border : 1 px solid #dddddd;
margin : 0 px ;
width : 60 % ;
}
table . border . formdoc td { padding : 1 px 3 px ;}
table . noborder {
border : 1 px solid #bbbbbb;
padding : 0 px ;
margin : 3 px 0 px 8 px ;
border - spacing : 0 px ;
- moz - box - shadow : 2 px 4 px 2 px #cccccc;
- webkit - box - shadow : 2 px 4 px 2 px #cccccc;
box - shadow : 2 px 4 px 2 px #cccccc;
}
table . noborder tr {}
table . noborder td { padding : 1 px 2 px 1 px 3 px ;}
table . nobordernopadding {
border - collapse : collapse ;
border : 0 px ;
}
table . nobordernopadding tr {
border : 0 px ;
padding : 0 px 0 px ;
}
table . nobordernopadding td {
border : 0 px ;
padding : 1 px 0 px ;
}
table . notopnoleftnopadd {
background - color : #ffffff;
border : 1 px solid #bbbbbb;
padding : 6 px ;
}
/* For lists */
table . liste {
padding : 0 px ;
border : 1 px solid #bbbbbb;
border - spacing : 0 px ;
background - image : linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- o - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- moz - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- webkit - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- ms - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- webkit - gradient (
linear ,
left top ,
left bottom ,
color - stop ( 0 , rgba ( 255 , 255 , 255 , . 3 )),
color - stop ( 1 , rgba ( 0 , 0 , 0 , . 3 ))
);
}
table . liste td { padding : 1 px 2 px 1 px 0 px ;}
tr . liste_titre , tr . box_titre {
padding : 4 px ;
background - color : rgba ( 0 , 0 , 0 , . 2 );
background - image : linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- o - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- moz - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- webkit - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- ms - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- webkit - gradient (
linear ,
left top ,
left bottom ,
color - stop ( 0 , rgba ( 255 , 255 , 255 , . 3 )),
color - stop ( 1 , rgba ( 0 , 0 , 0 , . 3 ))
);
2013-01-07 17:57:39 +01:00
height : 22 px ;
2012-12-14 13:01:57 +01:00
}
2012-12-14 18:35:50 +01:00
tr . box_titre td . boxclose {
width : 36 px ;
}
2012-12-14 13:01:57 +01:00
tr . liste_titre td {
padding : 2 px ;
padding - left : 2 px ! important ;
white - space : nowrap ;
}
tr . liste_titre td input . flat {
width : 70 % ;
}
td . liste_titre_sel {
font - weight : bold ;
white - space : nowrap ;
}
tr . liste_total td {
padding : 1 px 2 px ;
border - top : solid 1 px #cccccc;
background - color : #eaeaea;
font - weight : bold ;
white - space : nowrap ;
}
tr . impair td , tr . pair td { padding : 1 px 1 px 1 px 2 px ;}
tr . impair table . nobordernopadding td , tr . pair table . nobordernopadding td { padding : 1 px 0 px ;}
. impair {
background : #f4f4f4;
font - family :< ? php print $fontlist ?> ;
border : 0 px ;
}
. pair {
background : #eaeaea;
font - family :< ? php print $fontlist ?> ;
border : 0 px ;
}
/*
* Boxes
*/
. boxtable {
- moz - box - shadow : 2 px 4 px 2 px #cccccc;
- webkit - box - shadow : 2 px 4 px 2 px #cccccc;
box - shadow : 2 px 4 px 2 px #cccccc;
2012-12-26 12:01:34 +01:00
/*white-space:nowrap;*/
2012-12-14 13:01:57 +01:00
}
. box {
padding - right : 0 px ;
padding - left : 0 px ;
padding - bottom : 4 px ;
}
tr . box_impair {
background : #f4f4f4;
font - family :< ? php print $fontlist ?> ;
}
tr . box_pair {
background : #eaeaea;
font - family :< ? php print $fontlist ?> ;
}
tr . fiche {
font - family :< ? php print $fontlist ?> ;
}
/*
* Ok , Warning , Error
*/
. ok {
color : #159e26;
background : url ( < ? php echo DOL_URL_ROOT . '/theme/amarok/img/ok.png' ?> ) left center no-repeat;
padding - left : 20 px ;
font - weight : bold ;
}
. warning {
color : #bca936;
background : url ( < ? php echo DOL_URL_ROOT . '/theme/amarok/img/warning.png' ?> ) left center no-repeat;
padding - left : 20 px ;
font - weight : bold ;
}
. error {
color : #a61111;
background : url ( < ? php echo DOL_URL_ROOT . '/theme/amarok/img/error.png' ?> ) left center no-repeat;
padding - left : 20 px ;
font - weight : bold ;
}
td . highlights { background : #f9c5c6;}
div . ok {
background : #61e372 url(<?php echo DOL_URL_ROOT.'/theme/amarok/img/ok.png' ?>) 3px center no-repeat;
color : #ffffff;
padding : 2 px 4 px 2 px 24 px ;
margin : 0.5 em 0 em ;
border : 1 px solid #159e26;
font - weight : normal ;
}
div . warning , div . info {
background : #fcf5b8 url(<?php echo DOL_URL_ROOT.'/theme/amarok/img/warning.png' ?>) 3px center no-repeat;
color : #232323;
padding : 2 px 4 px 2 px 24 px ;
margin : 0.5 em 0 em ;
border : 1 px solid #bca936;
font - weight : normal ;
}
div . error {
background : #f58080 url(<?php echo DOL_URL_ROOT.'/theme/amarok/img/error.png' ?>) 3px center no-repeat;
color : #ffffff;
padding : 2 px 4 px 2 px 24 px ;
margin : 0.5 em 0 em ;
border : 1 px solid #a61111;
font - weight : normal ;
}
/*
* Other
*/
2013-01-10 16:06:13 +01:00
. product_line_stock_ok { color : #002200; }
. product_line_stock_too_low { color : #664400; }
2012-12-14 13:01:57 +01:00
. fieldrequired {
font - weight : bold ;
color : #333333;
}
#pictotitle {
padding - left : 5 px ;
padding - right : 1 px ;
}
. photo { border : 0 px ;}
div . titre {
color : rgba ( 0 , 0 , 0 , . 5 );
margin - right : 12 px ;
text - shadow : 1 px 1 px 1 px #ffffff;
font - weight : bold ;
padding - left : 1 px ;
padding - bottom : 2 px ;
}
2013-01-10 16:06:13 +01:00
#dolpaymenttable { width: 600px; font-size: 13px; }
#tablepublicpayment { border: 1px solid #CCCCCC !important; width: 100%; }
#tablepublicpayment .CTableRow1 { background-color: #F0F0F0 !important; }
#tablepublicpayment tr.liste_total { border-bottom: 1px solid #CCCCCC !important; }
#tablepublicpayment tr.liste_total td { border-top: none; }
#divsubscribe { width: 700px; }
#tablesubscribe { width: 100%; }
div . table - border {
display : table ;
width : 100 % ;
border - collapse : collapse ;
border : 1 px solid #DDD;
}
div . table - border - row {
display : table - row ;
}
div . table - key - border - col {
display : table - cell ;
width : 25 % ;
vertical - align : top ;
padding : 1 px 2 px 1 px 1 px ;
border : 1 px solid #DDD;
border - collapse : collapse ;
}
div . table - val - border - col {
display : table - cell ;
width : auto ;
padding : 1 px 2 px 1 px 1 px ;
border : 1 px solid #DDD;
border - collapse : collapse ;
}
2012-12-14 13:01:57 +01:00
/* ============================================================================== */
/* Formulaire confirmation (When Ajax JQuery is used) */
/* ============================================================================== */
. ui - dialog - titlebar {}
. ui - dialog - content { font - size :< ? php print $fontsize ; ?> px !important;}
/* ============================================================================== */
/* Formulaire de confirmation (When HTML is used) */
/* ============================================================================== */
table . valid {
border - top : solid 1 px #e6e6e6;
border - left : solid 1 px #e6e6e6;
border - right : solid 1 px #444444;
border - bottom : solid 1 px #555555;
padding - top : 0 px ;
padding - left : 0 px ;
padding - right : 0 px ;
padding - bottom : 0 px ;
margin : 0 px 0 px ;
background : #d5baa8;
}
. validtitre {
background : #d5baa8;
font - weight : bold ;
}
/* ============================================================================== */
/* Tooltips */
/* ============================================================================== */
#tooltip {
position : absolute ;
width :< ? php print dol_size ( 450 , 'width' ); ?> px;
border - top : solid 1 px #bbbbbb;
border - left : solid 1 px #bbbbbb;
borderright : solid 1 px #444444;
border - bottom : solid 1 px #444444;
padding : 2 px ;
z - index : 3000 ;
background - color : #fffff0;
opacity : 1 ;
- moz - border - radius : 6 px ;
}
/* ============================================================================== */
/* Calendar */
/* ============================================================================== */
. ui - datepicker - title {
margin : 0 ! important ;
line - height : 28 px ;
}
. ui - datepicker - month {
margin : 0 ! important ;
padding : 0 ! important ;
}
. ui - datepicker - header {
height : 28 px ! important ;
}
. bodyline {
- moz - border - radius : 8 px ;
padding : 0 px ;
margin - bottom : 5 px ;
z - index : 3000 ;
}
table . dp {
width : 180 px ;
margin - top : 3 px ;
background - color : #ffffff;
border : 1 px solid #bbbbbb;
border - spacing : 0 px ;
- moz - box - shadow : 2 px 4 px 2 px #cccccc;
- webkit - box - shadow : 2 px 4 px 2 px #cccccc;
box - shadow : 2 px 4 px 2 px #cccccc;
}
. dp td , . tpHour td , . tpMinute td {
padding : 2 px ;
font - size : 11 px ;
}
td . dpHead {
padding : 4 px ;
font - size : 11 px ;
font - weight : bold ;
}
/* Barre titre */
. dpHead , . tpHead , . tpHour td : Hover . tpHead {
background - color : rgba ( 0 , 0 , 0 , . 2 );
background - image : linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- o - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- moz - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- webkit - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- ms - linear - gradient ( top , rgba ( 255 , 255 , 255 , . 3 ) 0 % , rgba ( 0 , 0 , 0 , . 3 ) 100 % );
background - image :- webkit - gradient (
linear ,
left top ,
left bottom ,
color - stop ( 0 , rgba ( 255 , 255 , 255 , . 3 )),
color - stop ( 1 , rgba ( 0 , 0 , 0 , . 3 ))
);
font - size : 10 px ;
cursor : auto ;
}
/* Barre navigation */
. dpButtons , . tpButtons {
text - align : center ;
background - color : #eaeaea;
color : #232323;
font - weight : bold ;
cursor : pointer ;
}
. dpDayNames td , . dpExplanation {
background - color : #eaeaea;
font - weight : bold ;
text - align : center ;
font - size : 11 px ;
}
. dpWeek td { text - align : center }
. dpToday , . dpReg , . dpSelected { cursor : pointer ;}
. dpToday {
font - weight : bold ;
color : #232323;
background - color : #dddddd;
}
. dpReg : Hover , . dpToday : Hover {
background - color : #333333;
color : #ffffff;
}
/* Jour courant */
. dpSelected {
background - color : #a61111;
color : #ffffff;
font - weight : bold ;
}
. tpHour {
border - top : 1 px solid #dddddd;
border - right : 1 px solid #dddddd;
}
. tpHour td {
border - left : 1 px solid #dddddd;
border - bottom : 1 px solid #dddddd;
cursor : pointer ;
}
. tpHour td : Hover {
background - color : #232323;
color : #ffffff;
}
. tpMinute { margin - top : 5 px ;}
. tpMinute td : Hover {
background - color : #333333;
color : #ffffff;
}
. tpMinute td {
background - color : #eaeaea;
text - align : center ;
cursor : pointer ;
}
. fulldaystarthour { margin - right : 2 px ;}
. fulldaystartmin { margin - right : 2 px ;}
. fulldayendhour { margin - right : 2 px ;}
. fulldayendmin { margin - right : 2 px ;}
/* Bouton X fermer */
. dpInvisibleButtons {
border - style : none ;
background - color : transparent ;
padding : 0 px 2 px ;
font - size : 9 px ;
border - width : 0 px ;
color : #a61111;
vertical - align : middle ;
cursor : pointer ;
}
td . dpHead . dpInvisibleButtons {
color : #232323;
font - weight : bold ;
}
/* ============================================================================== */
/* Afficher/cacher */
/* ============================================================================== */
div . visible { display : block ;}
div . hidden { display : none ;}
tr . visible { display : block ;}
td . hidden { display : none ;}
/* ============================================================================== */
/* Module agenda */
/* ============================================================================== */
. cal_other_month {
background : #dddddd;
border : solid 1 px #bbbbbb;
}
. cal_past_month {
background : #eeeeee;
border : solid 1 px #bbbbbb;
}
. cal_current_month {
background : #ffffff;
border : solid 1 px #bbbbbb;
}
. cal_today {
background : #ffffff;
border : solid 2 px #bbbbbb;
}
div . dayevent table . nobordernopadding tr td { padding : 1 px ;}
table . cal_event {
border - collapse : collapse ;
margin - bottom : 1 px ;
}
. cal_event a : link {
color : #232323;
font - size : 11 px ;
font - weight : normal ! important ;
}
. cal_event a : visited {
color : #232323;
font - size : 11 px ;
font - weight : normal ! important ;
}
. cal_event a : active {
color : #232323;
font - size : 11 px ;
font - weight : normal ! important ;
}
. cal_event a : hover {
color : rgba ( 255 , 255 , 255 , . 75 );
font - size : 11 px ;
font - weight : normal ! important ;
}
/* ============================================================================== */
/* Afficher/cacher */
/* ============================================================================== */
#evolForm input.error {
font - weight : bold ;
border : solid 1 px #ff0000;
padding : 1 px ;
margin : 1 px ;
}
#evolForm input.focuserr {
font - weight : bold ;
background : #faf8e8;
color : #333333;
border : solid 1 px #ff0000;
padding : 1 px ;
margin : 1 px ;
}
#evolForm input.focus { /*** Mise en avant des champs en cours d'utilisation ***/
background : #faf8e8;
color : #333333;
border : solid 1 px #000000;
padding : 1 px ;
margin : 1 px ;
}
#evolForm input.normal { /*** Retour a l'état normal après l'utilisation ***/
background : #ffffff;
color : #333333;
border : solid 1 px #ffffff;
padding : 1 px ;
margin : 1 px ;
}
/* ============================================================================== */
/* Ajax - Liste déroulante de l'autocompletion */
/* ============================================================================== */
. ui - widget { font - family : Verdana , Arial , sans - serif ; font - size : 0.9 em ;}
. ui - autocomplete - loading { background : #ffffff url(<?php echo DOL_URL_ROOT.'/theme/amarok/img/working.gif' ?>) right center no-repeat;}
/* ============================================================================== */
/* Ajax - In place editor */
/* ============================================================================== */
form . inplaceeditor - form { /* The form */
}
form . inplaceeditor - form input [ type = " text " ] { /* Input box */
}
form . inplaceeditor - form textarea { /* Textarea, if multiple columns */
background : #FAF8E8;
color : #333333;
}
form . inplaceeditor - form input [ type = " submit " ] { /* The submit button */
font - size : 100 % ;
font - weight : normal ;
border : 0 px ;
cursor : pointer ;
}
form . inplaceeditor - form a { /* The cancel link */
margin - left : 5 px ;
font - size : 11 px ;
font - weight : normal ;
border : 0 px ;
cursor : pointer ;
}
/* ============================================================================== */
/* Admin Menu */
/* ============================================================================== */
/* CSS à appliquer à l'arbre hierarchique */
/* Lien plier / déplier tout */
. arbre - switch {
text - align : right ;
padding : 0 5 px ;
margin : 0 0 - 18 px 0 ;
}
/* Arbre */
ul . arbre { padding : 5 px 10 px ;}
/* strong:A modifier en fonction de la balise choisie */
ul . arbre strong {
font - weight : normal ;
padding : 0 0 0 20 px ;
margin : 0 0 0 - 7 px ;
background - image : url ( < ? php echo DOL_URL_ROOT . '/theme/common/treemenu/branch.gif' ?> );
background - repeat : no - repeat ;
background - position : 1 px 50 % ;
}
ul . arbre strong . arbre - plier {
background - image : url ( < ? php echo DOL_URL_ROOT . '/theme/common/treemenu/plus.gif' ?> );
cursor : pointer ;
}
ul . arbre strong . arbre - deplier {
background - image : url ( < ? php echo DOL_URL_ROOT . '/theme/common/treemenu/minus.gif' ?> );
cursor : pointer ;
}
ul . arbre ul {
padding : 0 ;
margin : 0 ;
}
ul . arbre li {
padding : 0 ;
margin : 0 ;
list - style : none ;
}
/* This is to create an indent */
ul . arbre li li { margin : 0 0 0 16 px ;}
/* Classe pour masquer */
. hide { display : none ;}
img . menuNew {
display : block ;
border : 0 px ;
}
img . menuEdit {
border : 0 px ;
display : block ;
}
img . menuDel {
display : none ;
border : 0 px ;
}
div . menuNew {
margin - top :- 20 px ;
margin - left : 270 px ;
height : 20 px ;
padding : 0 px ;
width : 30 px ;
position : relative ;
}
div . menuEdit {
margin - top :- 15 px ;
margin - left : 250 px ;
height : 20 px ;
padding : 0 px ;
width : 30 px ;
position : relative ;
}
div . menuDel {
margin - top :- 20 px ;
margin - left : 290 px ;
height : 20 px ;
padding : 0 px ;
width : 30 px ;
position : relative ;
}
div . menuFleche {
margin - top :- 16 px ;
margin - left : 320 px ;
height : 20 px ;
padding : 0 px ;
width : 30 px ;
position : relative ;
}
/* ============================================================================== */
/* Show Excel tabs */
/* ============================================================================== */
. table_data {
border - style : ridge ;
border : 1 px solid ;
}
. tab_base {
background : #C5D0DD;
font - weight : bold ;
border - style : ridge ;
border : 1 px solid ;
cursor : pointer ;
}
. table_sub_heading {
background : #CCCCCC;
font - weight : bold ;
border - style : ridge ;
border : 1 px solid ;
}
. table_body {
background : #F0F0F0;
font - weight : normal ;
font - family : sans - serif ;
border - style : ridge ;
border : 1 px solid ;
border - spacing : 0 px ;
border - collapse : collapse ;
}
. tab_loaded {
background : #232323;
color : #ffffff;
font - weight : bold ;
border - style : groove ;
border : 1 px solid ;
cursor : pointer ;
}
/* ============================================================================== */
/* CSS for color picker */
/* ============================================================================== */
a . color , a . color : active , a . color : visited {
position : relative ;
display : block ;
text - decoration : none ;
width : 10 px ;
height : 10 px ;
line - height : 10 px ;
margin : 0 px ;
padding : 0 px ;
border : 1 px inset #ffffff;
}
a . color : hover { border : 1 px outset #ffffff;}
a . none , a . none : active , a . none : visited , a . none : hover {
position : relative ;
display : block ;
text - decoration : none ;
width : 10 px ;
height : 10 px ;
line - height : 10 px ;
margin : 0 px ;
padding : 0 px ;
cursor : default ;
border : 1 px solid #b3c5cc;
}
. tblColor { display : none ;}
. tdColor { padding : 1 px ;}
. tblContainer { background - color : #b3c5cc;}
. tblGlobal {
position : absolute ;
top : 0 px ;
left : 0 px ;
display : none ;
background - color : #b3c5cc;
border : 2 px outset ;
}
. tdContainer { padding : 5 px ;}
. tdDisplay {
width : 50 % ;
height : 20 px ;
line - height : 20 px ;
border : 1 px outset #ffffff;
}
. tdDisplayTxt {
width : 50 % ;
height : 24 px ;
line - height : 12 px ;
font - family :< ? php print $fontlist ?> ;
font - size : 8 pt ;
color : #333333;
text - align : center ;
}
. btnColor {
width : 100 % ;
font - family :< ? php print $fontlist ?> ;
font - size : 10 pt ;
padding : 0 px ;
margin : 0 px ;
}
. btnPalette {
width : 100 % ;
font - family :< ? php print $fontlist ?> ;
font - size : 8 pt ;
padding : 0 px ;
margin : 0 px ;
}
/* Style to overwrites JQuery styles */
. ui - menu . ui - menu - item a {
text - decoration : none ;
display : block ;
padding :. 2 em . 4 em ;
line - height : 1.5 ;
zoom : 1 ;
font - weight : normal ;
font - family :< ? php echo $fontlist ; ?> ;
font - size : 1 em ;
}
. ui - widget {
font - family :< ? php echo $fontlist ; ?> ;
font - size :< ? php echo $fontsize ; ?> px;
}
2012-04-17 11:50:25 +02:00
2012-12-14 13:01:57 +01:00
. ui - button { margin - left :- 1 px ;}
. ui - button - icon - only . ui - button - text { height : 8 px ;}
. ui - button - icon - only . ui - button - text , . ui - button - icons - only . ui - button - text { padding : 2 px 0 px 6 px 0 px ;}
. ui - button - text { line - height : 1 em ! important ;}
. ui - autocomplete - input { margin : 0 ; padding : 1 px ;}
2012-04-17 11:50:25 +02:00
2012-12-14 13:01:57 +01:00
/* ============================================================================== */
/* CKEditor */
/* ============================================================================== */
2012-04-17 11:50:25 +02:00
2012-12-14 13:01:57 +01:00
. cke_editor table , . cke_editor tr , . cke_editor td { border : 0 px solid #FF0000 !important;}
span . cke_skin_kama { padding : 0 px ! important ;}
2012-04-17 11:50:25 +02:00
2012-12-14 13:01:57 +01:00
/* ============================================================================== */
/* File upload */
/* ============================================================================== */
2012-04-17 11:50:25 +02:00
2012-12-14 13:01:57 +01:00
. template - upload { height : 72 px ! important ;}
2013-01-10 16:06:13 +01:00
/* ============================================================================== */
/* JSGantt */
/* ============================================================================== */
div . scroll2 {
width : < ? php print isset ( $_SESSION [ 'dol_screenwidth' ]) ? max ( $_SESSION [ 'dol_screenwidth' ] - 830 , 450 ) : '450' ; ?> px !important;
}
/* ============================================================================== */
/* jFileTree */
/* ============================================================================== */
. ecmfiletree {
width : 99 % ;
height : 99 % ;
background : #FFF;
padding - left : 2 px ;
font - weight : normal ;
}
. fileview {
width : 99 % ;
height : 99 % ;
background : #FFF;
padding - left : 2 px ;
padding - top : 4 px ;
font - weight : normal ;
}
div . filedirelem {
position : relative ;
display : block ;
text - decoration : none ;
}
ul . filedirelem {
padding : 2 px ;
margin : 0 5 px 5 px 5 px ;
}
ul . filedirelem li {
list - style : none ;
padding : 2 px ;
margin : 0 10 px 20 px 10 px ;
width : 160 px ;
height : 120 px ;
text - align : center ;
display : block ;
float : < ? php print $left ; ?> ;
border : solid 1 px #DDDDDD;
}
ui - layout - north {
}
ul . ecmjqft {
font - size : 11 px ;
line - height : 16 px ;
padding : 0 px ;
margin : 0 px ;
font - weight : normal ;
}
ul . ecmjqft li {
list - style : none ;
padding : 0 px ;
padding - left : 20 px ;
margin : 0 px ;
white - space : nowrap ;
display : block ;
}
ul . ecmjqft a {
line - height : 16 px ;
vertical - align : middle ;
color : #333;
padding : 0 px 0 px ;
font - weight : normal ;
display : inline - block ! important ;
/* float: left;*/
}
ul . ecmjqft a : active {
font - weight : bold ! important ;
}
ul . ecmjqft a : hover {
text - decoration : underline ;
}
div . ecmjqft {
vertical - align : middle ;
display : inline - block ! important ;
text - align : right ;
position : absolute ;
right : 4 px ;
}
/* Core Styles */
. ecmjqft LI . directory { font - weight : normal ; background : url ( < ? php echo dol_buildpath ( $path . '/theme/common/treemenu/folder2.png' , 1 ); ?> ) left top no-repeat; }
. ecmjqft LI . expanded { font - weight : normal ; background : url ( < ? php echo dol_buildpath ( $path . '/theme/common/treemenu/folder2-expanded.png' , 1 ); ?> ) left top no-repeat; }
. ecmjqft LI . wait { font - weight : normal ; background : url ( < ? php echo dol_buildpath ( '/theme/eldy/img/working.gif' , 1 ); ?> ) left top no-repeat; }
/* ============================================================================== */
/* jNotify */
/* ============================================================================== */
. jnotify - container {
position : fixed ! important ;
< ? php if ( ! empty ( $conf -> global -> MAIN_JQUERY_JNOTIFY_BOTTOM )) { ?>
top : auto ! important ;
bottom : 4 px ! important ;
< ? php } ?>
text - align : center ;
min - width : 500 px ;
width : auto ;
padding - left : 10 px ! important ;
padding - right : 10 px ! important ;
}
/* use or not ? */
div . jnotify - background {
opacity : 0.95 ! important ;
- moz - box - shadow : 4 px 4 px 4 px #AAA !important;
- webkit - box - shadow : 4 px 4 px 4 px #AAA !important;
box - shadow : 4 px 4 px 4 px #AAA !important;
}