Added metadata editor title and ellipsis
This commit is contained in:
parent
a08d5b71cf
commit
8c90fbe4eb
|
@ -460,7 +460,9 @@ class LibraryController extends Zend_Controller_Action
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->view->form = $form;
|
$this->view->form = $form;
|
||||||
|
Logging::info($this->view->form);
|
||||||
$this->view->id = $file_id;
|
$this->view->id = $file_id;
|
||||||
|
$this->view->title = $file->getPropelOrm()->getDbTrackTitle();
|
||||||
$this->view->type = "md";
|
$this->view->type = "md";
|
||||||
$this->view->html = $this->view->render('library/edit-file-md.phtml');
|
$this->view->html = $this->view->render('library/edit-file-md.phtml');
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
<div class="ui-widget ui-widget-content block-shadow simple-formblock clearfix padded-strong" id="edit-md-dialog">
|
<div class="ui-widget ui-widget-content block-shadow simple-formblock clearfix padded-strong" id="edit-md-dialog">
|
||||||
|
<div class="inner_editor_title">
|
||||||
|
<H2><?php echo(_("Editing "));?>"<span class="title_obj_name"><?php echo($this->title); ?></span>"</H2>
|
||||||
|
</div>
|
||||||
<?php echo $this->form; ?>
|
<?php echo $this->form; ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -423,6 +423,10 @@ li.ui-state-default {
|
||||||
|
|
||||||
.inner_editor_title h2 {
|
.inner_editor_title h2 {
|
||||||
margin: 10px 0 0 10px;
|
margin: 10px 0 0 10px;
|
||||||
|
width: 85%;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
.inner_editor_title span {
|
.inner_editor_title span {
|
||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
|
|
Loading…
Reference in New Issue