Fix: Solve conflict with imgup and imgdown class use for sort fields and
to drag and drop lines.
This commit is contained in:
parent
221d44a4b8
commit
1a1959b52c
@ -2280,15 +2280,16 @@ function img_previous($titlealt = 'default')
|
|||||||
*
|
*
|
||||||
* @param string $titlealt Text on alt and title of image. Alt only if param notitle is set to 1. If text is "TextA:TextB", use Text A on alt and Text B on title.
|
* @param string $titlealt Text on alt and title of image. Alt only if param notitle is set to 1. If text is "TextA:TextB", use Text A on alt and Text B on title.
|
||||||
* @param int $selected Selected
|
* @param int $selected Selected
|
||||||
|
* @param string $moreclass Add more CSS classes
|
||||||
* @return string Return img tag
|
* @return string Return img tag
|
||||||
*/
|
*/
|
||||||
function img_down($titlealt = 'default', $selected = 0)
|
function img_down($titlealt = 'default', $selected = 0, $moreclass='')
|
||||||
{
|
{
|
||||||
global $conf, $langs;
|
global $conf, $langs;
|
||||||
|
|
||||||
if ($titlealt == 'default') $titlealt = $langs->trans('Down');
|
if ($titlealt == 'default') $titlealt = $langs->trans('Down');
|
||||||
|
|
||||||
return img_picto($titlealt, ($selected ? '1downarrow_selected.png' : '1downarrow.png'), 'class="imgdown"');
|
return img_picto($titlealt, ($selected ? '1downarrow_selected.png' : '1downarrow.png'), 'class="imgdown'.($moreclass?" ".$moreclass:"").'"');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -2296,15 +2297,16 @@ function img_down($titlealt = 'default', $selected = 0)
|
|||||||
*
|
*
|
||||||
* @param string $titlealt Text on alt and title of image. Alt only if param notitle is set to 1. If text is "TextA:TextB", use Text A on alt and Text B on title.
|
* @param string $titlealt Text on alt and title of image. Alt only if param notitle is set to 1. If text is "TextA:TextB", use Text A on alt and Text B on title.
|
||||||
* @param int $selected Selected
|
* @param int $selected Selected
|
||||||
|
* @param string $moreclass Add more CSS classes
|
||||||
* @return string Return img tag
|
* @return string Return img tag
|
||||||
*/
|
*/
|
||||||
function img_up($titlealt = 'default', $selected = 0)
|
function img_up($titlealt = 'default', $selected = 0, $moreclass='')
|
||||||
{
|
{
|
||||||
global $conf, $langs;
|
global $conf, $langs;
|
||||||
|
|
||||||
if ($titlealt == 'default') $titlealt = $langs->trans('Up');
|
if ($titlealt == 'default') $titlealt = $langs->trans('Up');
|
||||||
|
|
||||||
return img_picto($titlealt, ($selected ? '1uparrow_selected.png' : '1uparrow.png'), 'class="imgup"');
|
return img_picto($titlealt, ($selected ? '1uparrow_selected.png' : '1uparrow.png'), 'class="imgup'.($moreclass?" ".$moreclass:"").'"');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -2622,7 +2624,7 @@ function print_liste_field_titre($name, $file="", $field="", $begin="", $morepar
|
|||||||
* Get title line of an array
|
* Get title line of an array
|
||||||
*
|
*
|
||||||
* @param string $name Label of field
|
* @param string $name Label of field
|
||||||
* @param int $thead 0=To use with standard table forat, 1=To use inside <thead><tr>, 2=To use with <div>
|
* @param int $thead 0=To use with standard table format, 1=To use inside <thead><tr>, 2=To use with <div>
|
||||||
* @param string $file Url used when we click on sort picto
|
* @param string $file Url used when we click on sort picto
|
||||||
* @param string $field Field to use for new sorting. Empty if this field is not sortable.
|
* @param string $field Field to use for new sorting. Empty if this field is not sortable.
|
||||||
* @param string $begin ("" by defaut)
|
* @param string $begin ("" by defaut)
|
||||||
|
|||||||
@ -33,8 +33,8 @@ $tagidfortablednd=(empty($tagidfortablednd)?'tablelines':$tagidfortablednd);
|
|||||||
if (GETPOST('action') != 'editline' && $nboflines > 1) { ?>
|
if (GETPOST('action') != 'editline' && $nboflines > 1) { ?>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
$(".imgup").hide();
|
$(".imgupforline").hide();
|
||||||
$(".imgdown").hide();
|
$(".imgdownforline").hide();
|
||||||
$(".lineupdown").removeAttr('href');
|
$(".lineupdown").removeAttr('href');
|
||||||
$(".tdlineupdown").css("background-image",'url(<?php echo DOL_URL_ROOT.'/theme/'.$conf->theme.'/img/grip.png'; ?>)');
|
$(".tdlineupdown").css("background-image",'url(<?php echo DOL_URL_ROOT.'/theme/'.$conf->theme.'/img/grip.png'; ?>)');
|
||||||
$(".tdlineupdown").css("background-repeat","no-repeat");
|
$(".tdlineupdown").css("background-repeat","no-repeat");
|
||||||
@ -78,8 +78,8 @@ $(document).ready(function(){
|
|||||||
<?php } else { ?>
|
<?php } else { ?>
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
$(".imgup").hide();
|
$(".imgupforline").hide();
|
||||||
$(".imgdown").hide();
|
$(".imgdownforline").hide();
|
||||||
$(".lineupdown").removeAttr('href');
|
$(".lineupdown").removeAttr('href');
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@ -203,12 +203,12 @@ if (empty($usemargins)) $usemargins=0;
|
|||||||
<td align="center" class="tdlineupdown"><?php $coldisplay++; ?>
|
<td align="center" class="tdlineupdown"><?php $coldisplay++; ?>
|
||||||
<?php if ($i > 0) { ?>
|
<?php if ($i > 0) { ?>
|
||||||
<a class="lineupdown" href="<?php echo $_SERVER["PHP_SELF"].'?id='.$this->id.'&action=up&rowid='.$line->id; ?>">
|
<a class="lineupdown" href="<?php echo $_SERVER["PHP_SELF"].'?id='.$this->id.'&action=up&rowid='.$line->id; ?>">
|
||||||
<?php echo img_up(); ?>
|
<?php echo img_up('default',0,'imgupforline'); ?>
|
||||||
</a>
|
</a>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php if ($i < $num-1) { ?>
|
<?php if ($i < $num-1) { ?>
|
||||||
<a class="lineupdown" href="<?php echo $_SERVER["PHP_SELF"].'?id='.$this->id.'&action=down&rowid='.$line->id; ?>">
|
<a class="lineupdown" href="<?php echo $_SERVER["PHP_SELF"].'?id='.$this->id.'&action=down&rowid='.$line->id; ?>">
|
||||||
<?php echo img_down(); ?>
|
<?php echo img_down('default',0,'imgdownforline'); ?>
|
||||||
</a>
|
</a>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</td>
|
</td>
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
define("NOLOGIN",1); // This means this output page does not require to be logged.
|
//define("NOLOGIN",1); // This means this output page does not require to be logged.
|
||||||
define("NOCSRFCHECK",1); // We accept to go on this page from external web site.
|
define("NOCSRFCHECK",1); // We accept to go on this page from external web site.
|
||||||
|
|
||||||
|
|
||||||
@ -12,7 +12,7 @@ if ($_SERVER['REMOTE_ADDR'] != '127.0.0.1')
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
$usedolheader=0; // 1 = Test inside a dolibarr page, 0 = Use hard coded header
|
$usedolheader=1; // 1 = Test inside a dolibarr page, 0 = Use hard coded header
|
||||||
|
|
||||||
|
|
||||||
// HEADER
|
// HEADER
|
||||||
@ -21,39 +21,41 @@ $usedolheader=0; // 1 = Test inside a dolibarr page, 0 = Use hard coded header
|
|||||||
if (empty($usedolheader))
|
if (empty($usedolheader))
|
||||||
{
|
{
|
||||||
header("Content-type: text/html; charset=UTF8");
|
header("Content-type: text/html; charset=UTF8");
|
||||||
?>
|
?>
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta name="robots" content="noindex,nofollow" />
|
<meta name="robots" content="noindex,nofollow" />
|
||||||
<meta name="author" content="Dolibarr Development Team">
|
<meta name="author" content="Dolibarr Development Team">
|
||||||
<link rel="shortcut icon" type="image/x-icon" href="<?php echo DOL_URL_ROOT ?>/theme/eldy/img/favicon.ico"/>
|
<link rel="shortcut icon" type="image/x-icon" href="<?php echo DOL_URL_ROOT ?>/theme/eldy/img/favicon.ico"/>
|
||||||
<title>Test page</title>
|
<title>Test page</title>
|
||||||
<!-- Includes for JQuery (Ajax library) -->
|
<!-- Includes for JQuery (Ajax library) -->
|
||||||
<link rel="stylesheet" type="text/css" href="<?php echo DOL_URL_ROOT ?>/includes/jquery/css/smoothness/jquery-ui-latest.custom.css" />
|
<link rel="stylesheet" type="text/css" href="<?php echo DOL_URL_ROOT ?>/includes/jquery/css/smoothness/jquery-ui-latest.custom.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="<?php echo DOL_URL_ROOT ?>/includes/jquery/plugins/datatables/css/jquery.dataTables.css" />
|
<link rel="stylesheet" type="text/css" href="<?php echo DOL_URL_ROOT ?>/includes/jquery/plugins/datatables/css/jquery.dataTables.css" />
|
||||||
<?php if ($_GET["dol_use_jmobile"] == 1) { ?>
|
<?php if ($_GET["dol_use_jmobile"] == 1) { ?>
|
||||||
<link rel="stylesheet" type="text/css" href="<?php echo DOL_URL_ROOT ?>/includes/jquery/plugins/mobile/jquery.mobile-latest.min.css" />
|
<link rel="stylesheet" type="text/css" href="<?php echo DOL_URL_ROOT ?>/includes/jquery/plugins/mobile/jquery.mobile-latest.min.css" />
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<link rel="stylesheet" type="text/css" title="default" href="<?php echo DOL_URL_ROOT ?>/theme/eldy/style.css.php<?php echo ($_GET["dol_use_jmobile"] == 1)?'?dol_use_jmobile=1&dol_optimize_smallscreen=1':''; ?>" />
|
<link rel="stylesheet" type="text/css" title="default" href="<?php echo DOL_URL_ROOT ?>/theme/eldy/style.css.php<?php echo ($_GET["dol_use_jmobile"] == 1)?'?dol_use_jmobile=1&dol_optimize_smallscreen=1':''; ?>" />
|
||||||
<!-- Includes JS for JQuery -->
|
<!-- Includes JS for JQuery -->
|
||||||
<script type="text/javascript" src="<?php echo DOL_URL_ROOT ?>/includes/jquery/js/jquery-latest.min.js"></script>
|
<script type="text/javascript" src="<?php echo DOL_URL_ROOT ?>/includes/jquery/js/jquery-latest.min.js"></script>
|
||||||
<script type="text/javascript" src="<?php echo DOL_URL_ROOT ?>/includes/jquery/plugins/tablednd/jquery.tablednd.0.6.min.js"></script>
|
<script type="text/javascript" src="<?php echo DOL_URL_ROOT ?>/includes/jquery/plugins/tablednd/jquery.tablednd.0.6.min.js"></script>
|
||||||
<script type="text/javascript" src="<?php echo DOL_URL_ROOT ?>/includes/jquery/plugins/datatables/js/jquery.dataTables.js"></script>
|
<script type="text/javascript" src="<?php echo DOL_URL_ROOT ?>/includes/jquery/plugins/datatables/js/jquery.dataTables.js"></script>
|
||||||
<?php if ($_GET["dol_use_jmobile"] == 1) { ?>
|
<?php if ($_GET["dol_use_jmobile"] == 1) { ?>
|
||||||
<script type="text/javascript" src="<?php echo DOL_URL_ROOT ?>/includes/jquery/plugins/mobile/jquery.mobile-latest.min.js"></script>--
|
<script type="text/javascript" src="<?php echo DOL_URL_ROOT ?>/includes/jquery/plugins/mobile/jquery.mobile-latest.min.js"></script>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body style="padding: 10px;">
|
<body style="padding: 10px;">
|
||||||
|
|
||||||
<div data-role="page">
|
<div data-role="page">
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
llxHeader();
|
$arraycss=array('/includes/jquery/plugins/datatables/css/jquery.dataTables.css');
|
||||||
|
$arrayjs=array('/includes/jquery/plugins/datatables/js/jquery.dataTables.js');
|
||||||
|
llxHeader('','','','',0,0,$arrayjs,$arraycss);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -64,7 +66,7 @@ else
|
|||||||
<h1>
|
<h1>
|
||||||
This page is a sample of page using tables. It is designed to make test with<br>
|
This page is a sample of page using tables. It is designed to make test with<br>
|
||||||
- css (edit page to change to test another css)<br>
|
- css (edit page to change to test another css)<br>
|
||||||
- jmobile (add parameter dol_use_jmobile=1 to enable view with jmobile)<br>
|
- jmobile (add parameter dol_use_jmobile=1&dol_optimize_smallscreen=1 to enable view with jmobile)<br>
|
||||||
- dataTables<br>
|
- dataTables<br>
|
||||||
- tablednd<br>
|
- tablednd<br>
|
||||||
</h1>
|
</h1>
|
||||||
@ -111,7 +113,7 @@ This page is a sample of page using tables. It is designed to make test with<br>
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<br><hr><br>Example 1 : Table using tags: div.tagtable+div.tagtr+div or div.tagtable+div.tagtr+div.tagtd => Use this for tables that are edited forms<br><br>
|
<br><hr><br>Example 1 : Table using tags: div.tagtable+div.tagtr+div or div.tagtable+div.tagtr+div.tagtd => Use this for tables that are edited forms (drag and drop of lines does not work for this case, also height of title can't be forced to a minimum)<br><br>
|
||||||
|
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
@ -238,7 +240,7 @@ $('xxxth').replaceWith(
|
|||||||
|
|
||||||
<table id="idtableexample2" class="centpercent">
|
<table id="idtableexample2" class="centpercent">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr class="liste_titre">
|
||||||
<th>snake</th>
|
<th>snake</th>
|
||||||
<th><label><input type="checkbox" name="hidedetails" value="2"> A checkbox inside a cell</label></th>
|
<th><label><input type="checkbox" name="hidedetails" value="2"> A checkbox inside a cell</label></th>
|
||||||
<?php print getTitleFieldOfList($langs->trans('zzz'),1,$_SERVER["PHP_SELF"],'','','','align="center" class="tagtd"',$sortfield,$sortorder); ?>
|
<?php print getTitleFieldOfList($langs->trans('zzz'),1,$_SERVER["PHP_SELF"],'','','','align="center" class="tagtd"',$sortfield,$sortorder); ?>
|
||||||
@ -248,62 +250,62 @@ $('xxxth').replaceWith(
|
|||||||
<tr>
|
<tr>
|
||||||
<td>line1</td>
|
<td>line1</td>
|
||||||
<td>dfsdf</td>
|
<td>dfsdf</td>
|
||||||
<td> xxx </td>
|
<td align="center"> xxx </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>line2</td>
|
<td>line2</td>
|
||||||
<td>dfsdf</td>
|
<td>dfsdf</td>
|
||||||
<td> xxx </td>
|
<td align="center"> xxx </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>line3</td>
|
<td>line3</td>
|
||||||
<td>dfsdf</td>
|
<td>dfsdf</td>
|
||||||
<td> xxx </td>
|
<td align="center"> xxx </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>line4</td>
|
<td>line4</td>
|
||||||
<td>dfsdf</td>
|
<td>dfsdf</td>
|
||||||
<td> xxx </td>
|
<td align="center"> xxx </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>line5</td>
|
<td>line5</td>
|
||||||
<td>dfsdf</td>
|
<td>dfsdf</td>
|
||||||
<td> xxx </td>
|
<td align="center"> xxx </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>line6</td>
|
<td>line6</td>
|
||||||
<td>dfsdf</td>
|
<td>dfsdf</td>
|
||||||
<td> xxx </td>
|
<td align="center"> xxx </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>line7</td>
|
<td>line7</td>
|
||||||
<td>dfsdf</td>
|
<td>dfsdf</td>
|
||||||
<td> xxx </td>
|
<td align="center"> xxx </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>line8</td>
|
<td>line8</td>
|
||||||
<td>dfsdf</td>
|
<td>dfsdf</td>
|
||||||
<td> xxx </td>
|
<td align="center"> xxx </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>line9</td>
|
<td>line9</td>
|
||||||
<td>dfsdf</td>
|
<td>dfsdf</td>
|
||||||
<td> xxx </td>
|
<td align="center"> xxx </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>line10</td>
|
<td>line10</td>
|
||||||
<td>dfsdf</td>
|
<td>dfsdf</td>
|
||||||
<td> xxx </td>
|
<td align="center"> xxx </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>line11</td>
|
<td>line11</td>
|
||||||
<td>dfsdf</td>
|
<td>dfsdf</td>
|
||||||
<td> xxx </td>
|
<td align="center"> xxx </td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>line12</td>
|
<td>line12</td>
|
||||||
<td>dfsdf</td>
|
<td>dfsdf</td>
|
||||||
<td> xxx </td>
|
<td align="center"> xxx </td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
@ -313,14 +315,20 @@ $('xxxth').replaceWith(
|
|||||||
<br><hr><br>Example 3 : Standard table => Use this if you need the drag and drop for lines<br>
|
<br><hr><br>Example 3 : Standard table => Use this if you need the drag and drop for lines<br>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
$tasksarray=array(1,2,3); // To force having several lines
|
$sortfield='aaa';
|
||||||
$tagidfortablednd='tablelines3';
|
$sortorder='ASC';
|
||||||
if (! empty($conf->use_javascript_ajax)) include DOL_DOCUMENT_ROOT.'/core/tpl/ajaxrow.tpl.php';
|
$tasksarray=array(1,2,3); // To force having several lines
|
||||||
|
$tagidfortablednd='tablelines3';
|
||||||
|
if (! empty($conf->use_javascript_ajax)) include DOL_DOCUMENT_ROOT.'/core/tpl/ajaxrow.tpl.php';
|
||||||
?>
|
?>
|
||||||
<table class="tagtable centpercent centpercent" id="tablelines3">
|
<table class="liste noborder tagtable centpercent" id="tablelines3">
|
||||||
<tr class="liste_titre"><td>title1</td><td>title2</td></tr>
|
<tr class="liste_titre">
|
||||||
<tr class="pair"><td class="pair">a1</td><td class="tdlineupdown pair">b1</td></tr>
|
<?php print getTitleFieldOfList($langs->trans('title1'),0,$_SERVER["PHP_SELF"],'aaa','','','align="left"',$sortfield,$sortorder); ?>
|
||||||
<tr class="impair"><td class="impair">a2</td><td class="tdlineupdown impair">b2</td></tr>
|
<?php print getTitleFieldOfList($langs->trans('title2'),0,$_SERVER["PHP_SELF"],'bbb','','','align="right"',$sortfield,$sortorder); ?>
|
||||||
|
<?php print getTitleFieldOfList($langs->trans('title3'),0,$_SERVER["PHP_SELF"],'ccc','','','align="center"',$sortfield,$sortorder); ?>
|
||||||
|
</tr>
|
||||||
|
<tr class="pair"><td class="pair">a1</td><td class="pair" align="right">b1</td><td class="tdlineupdown pair" align="left">c1</td></tr>
|
||||||
|
<tr class="impair"><td class="impair">a2</td><td class="impair" align="right">b2</td><td class="tdlineupdown impair" align="left">c2</td></tr>
|
||||||
</table>
|
</table>
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
|
|||||||
@ -443,11 +443,13 @@ textarea.centpercent {
|
|||||||
.movable {
|
.movable {
|
||||||
cursor: move;
|
cursor: move;
|
||||||
}
|
}
|
||||||
|
|
||||||
.borderrightlight
|
.borderrightlight
|
||||||
{
|
{
|
||||||
border-right: 1px solid #DDD;
|
border-right: 1px solid #DDD;
|
||||||
}
|
}
|
||||||
|
#formuserfile_link {
|
||||||
|
margin-left: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
/* ============================================================================== */
|
/* ============================================================================== */
|
||||||
/* Styles to hide objects */
|
/* Styles to hide objects */
|
||||||
@ -1906,7 +1908,12 @@ table.liste td {
|
|||||||
color: #202020;
|
color: #202020;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.liste_titre .tagtd {
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
div.liste_titre {
|
||||||
|
min-height: 26px !important; /* We cant use height because it's a div and it should be higher if content is more. but min-height doe not work either for div */
|
||||||
|
}
|
||||||
tr.liste_titre, tr.liste_titre_sel, form.liste_titre, form.liste_titre_sel, table.dataTable.tr
|
tr.liste_titre, tr.liste_titre_sel, form.liste_titre, form.liste_titre_sel, table.dataTable.tr
|
||||||
{
|
{
|
||||||
height: 26px !important;
|
height: 26px !important;
|
||||||
@ -2921,7 +2928,10 @@ div.dolEventError h1, div.dolEventError h2 {
|
|||||||
{
|
{
|
||||||
text-decoration: underline !important;
|
text-decoration: underline !important;
|
||||||
}
|
}
|
||||||
|
.paginate_button
|
||||||
|
{
|
||||||
|
font-weight: normal !important;
|
||||||
|
}
|
||||||
/* For jquery plugin combobox */
|
/* For jquery plugin combobox */
|
||||||
/* Disable this. It breaks wrapping of boxes
|
/* Disable this. It breaks wrapping of boxes
|
||||||
.ui-corner-all { white-space: nowrap; } */
|
.ui-corner-all { white-space: nowrap; } */
|
||||||
|
|||||||
@ -455,6 +455,10 @@ textarea.centpercent {
|
|||||||
{
|
{
|
||||||
border-right: 1px solid #DDD;
|
border-right: 1px solid #DDD;
|
||||||
}
|
}
|
||||||
|
#formuserfile_link {
|
||||||
|
margin-left: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* ============================================================================== */
|
/* ============================================================================== */
|
||||||
/* Styles to hide objects */
|
/* Styles to hide objects */
|
||||||
@ -1990,6 +1994,12 @@ table.liste td {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
div.liste_titre .tagtd {
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
div.liste_titre {
|
||||||
|
min-height: 26px !important;
|
||||||
|
}
|
||||||
tr.liste_titre, tr.liste_titre_sel, form.liste_titre, form.liste_titre_sel, table.dataTable.tr
|
tr.liste_titre, tr.liste_titre_sel, form.liste_titre, form.liste_titre_sel, table.dataTable.tr
|
||||||
{
|
{
|
||||||
height: 26px !important;
|
height: 26px !important;
|
||||||
@ -3019,6 +3029,10 @@ div.dolEventError h1, div.dolEventError h2 {
|
|||||||
{
|
{
|
||||||
text-decoration: underline !important;
|
text-decoration: underline !important;
|
||||||
}
|
}
|
||||||
|
.paginate_button
|
||||||
|
{
|
||||||
|
font-weight: normal !important;
|
||||||
|
}
|
||||||
|
|
||||||
/* For jquery plugin combobox */
|
/* For jquery plugin combobox */
|
||||||
/* Disable this. It breaks wrapping of boxes
|
/* Disable this. It breaks wrapping of boxes
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user