mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
N°330 Fix first column not centered when creating attachment on new ticket
This commit is contained in:
@@ -3851,7 +3851,14 @@ input:checked + .slider:before {
|
||||
.pull-left { float: left; }
|
||||
|
||||
|
||||
table.attachmentsList tr>td:nth-child(3) {
|
||||
text-align: right;
|
||||
padding-right: 0.5em;
|
||||
}
|
||||
table.attachmentsList {
|
||||
&>tbody{
|
||||
&>tr>td:first-child {
|
||||
text-align: center;
|
||||
}
|
||||
&>tr>td:nth-child(3) {
|
||||
text-align: right;
|
||||
padding-right: 0.5em;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -385,13 +385,6 @@ JS
|
||||
{
|
||||
$this->oPage->add_script($this->GetDeleteAttachmentJs());
|
||||
}
|
||||
$this->oPage->add_style(
|
||||
<<<CSS
|
||||
table.attachmentsList>tbody>tr>td:first-child {
|
||||
text-align: center;
|
||||
}
|
||||
CSS
|
||||
);
|
||||
|
||||
$bIsEven = false;
|
||||
$aAttachmentsDate = AttachmentsHelper::GetAttachmentsDateAddedFromDb($this->sObjClass, $this->iObjKey);
|
||||
|
||||
Reference in New Issue
Block a user