Change CSS
This commit is contained in:
parent
47958e3dc9
commit
3b7cd65e2c
6 changed files with 1355 additions and 1045 deletions
|
|
@ -2221,8 +2221,8 @@ function action_tag_select(p_dossier, ag_id)
|
|||
var code_html = getNodeText(html[0]);
|
||||
code_html = unescape_xml(code_html);
|
||||
add_div({id: 'tag_div', style: '', cssclass: 'inner_box', drag: 1});
|
||||
$('tag_div').style.top = posY - 70;
|
||||
$('tag_div').style.left = posX - 70;
|
||||
$('tag_div').style.top = (posY - 70)+"px";
|
||||
$('tag_div').style.left = (posX - 70)+"px";
|
||||
remove_waiting_box();
|
||||
$('tag_div').innerHTML = code_html;
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -282,12 +282,13 @@ span.even {
|
|||
}
|
||||
|
||||
tr.odd {
|
||||
background-color:#DDE6FF;
|
||||
background-color: #DDE6FF;
|
||||
}
|
||||
tr.highlight {
|
||||
font-weight: bold;
|
||||
}
|
||||
tr.even {
|
||||
background-color: #F7F8FC;
|
||||
}
|
||||
td.odd{
|
||||
background-color:#DDE6FF;
|
||||
|
|
@ -584,7 +585,7 @@ td.num {
|
|||
text-align:right;
|
||||
}
|
||||
tr.priority1 {
|
||||
background-color: coral;
|
||||
background-color: #FF7F50;
|
||||
}
|
||||
span.action a.action {
|
||||
border:2px outset ;
|
||||
|
|
@ -828,6 +829,7 @@ a#smallanchorbutton, .smallbutton, a.smallbutton,div.content a.smallbutton {
|
|||
background-image: url("image/bg-submit2.gif");
|
||||
background-repeat: repeat-x;
|
||||
background-position: left;
|
||||
font-size:0.75rem;
|
||||
|
||||
border-style: outset ;
|
||||
border-color: #0000FF;
|
||||
|
|
@ -881,6 +883,7 @@ div.topmenu {
|
|||
text-align:left;
|
||||
z-index:1;
|
||||
width:30rem;
|
||||
height:auto;
|
||||
}
|
||||
div.welcome {
|
||||
|
||||
|
|
@ -908,7 +911,7 @@ box-shadow: 10px 10px 5px #888;
|
|||
|
||||
}
|
||||
div.inner_box {
|
||||
background-color: #F2F6FD;
|
||||
background-color: #DDE6FF;
|
||||
font-family: Arial, Helvetica, "Liberation Sans", FreeSans, sans-serif;
|
||||
padding:2px;
|
||||
margin:0px;
|
||||
|
|
@ -1108,7 +1111,7 @@ a.line:hover,div_content a.line
|
|||
}
|
||||
#close_div:hover
|
||||
{
|
||||
background-color: #F93;
|
||||
background-color: #F93;
|
||||
}
|
||||
#popmeout
|
||||
{
|
||||
|
|
@ -1118,6 +1121,7 @@ a.line:hover,div_content a.line
|
|||
border:1px solid #0000FF;
|
||||
margin-left: 2px;
|
||||
margin-right:18px;
|
||||
font-size:12px;
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
#popmeout:hover
|
||||
|
|
@ -1411,6 +1415,17 @@ div.box {
|
|||
|
||||
height: 380px;
|
||||
}
|
||||
}
|
||||
div.box table{
|
||||
border-spacing:0px;
|
||||
}
|
||||
div.box tr.odd {
|
||||
background-color: #F2F6FD;
|
||||
|
||||
}
|
||||
div.box tr.even {
|
||||
background-color:#e4e7ed;
|
||||
|
||||
}
|
||||
#jrn_name_div h2{
|
||||
font-size: 2.4rem;
|
||||
|
|
@ -1420,4 +1435,7 @@ div.box {
|
|||
}
|
||||
fieldset {
|
||||
border-width: 1px;
|
||||
}
|
||||
}
|
||||
#tva_select table {
|
||||
border-spacing: 0px;
|
||||
}
|
||||
|
|
|
|||
745
html/style.css
745
html/style.css
File diff suppressed because it is too large
Load diff
|
|
@ -9,7 +9,7 @@ $uos=new Tool_Uos('tag');
|
|||
echo $uos->hidden();
|
||||
$t_tag=new IText('t_tag',$data->t_tag);
|
||||
$t_description=new ITextarea('t_description',$data->t_description);
|
||||
$t_description->style=' class="itextarea" style="width:50em;height:5em;vertical-align: top;"';
|
||||
$t_description->style=' class="itextarea" style="height:5em;vertical-align: top;"';
|
||||
?>
|
||||
<p>
|
||||
Etiquette (tag) : <?php echo $t_tag->input(); ?>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue