Commit 2a47b3addcd7b9544681fb79fa959d0b839af719
1 parent
d68b794a
Some more CSS
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@6098 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
5 changed files
with
6 additions
and
6 deletions
lib/actions/documentaction.inc.php
| ... | ... | @@ -172,12 +172,12 @@ class KTDocumentAction extends KTStandardDispatcher { |
| 172 | 172 | KTBrowseUtil::breadcrumbsForDocument($this->oDocument, $aOptions)); |
| 173 | 173 | |
| 174 | 174 | $actions = KTDocumentActionUtil::getDocumentActionsForDocument($this->oDocument, $this->oUser, 'documentinfo'); |
| 175 | - $oPortlet = new KTActionPortlet(sprintf(_kt('Info about this document'))); | |
| 175 | + $oPortlet = new KTActionPortlet(sprintf(_kt('Document info'))); | |
| 176 | 176 | $oPortlet->setActions($actions, $this->sName); |
| 177 | 177 | $this->oPage->addPortlet($oPortlet); |
| 178 | 178 | |
| 179 | 179 | $actions = KTDocumentActionUtil::getDocumentActionsForDocument($this->oDocument, $this->oUser); |
| 180 | - $oPortlet = new KTActionPortlet(sprintf(_kt('Actions on this document'))); | |
| 180 | + $oPortlet = new KTActionPortlet(sprintf(_kt('Document actions'))); | |
| 181 | 181 | $oPortlet->setActions($actions, $this->sName); |
| 182 | 182 | $this->oPage->addPortlet($oPortlet); |
| 183 | 183 | ... | ... |
resources/css/kt-framing.css
| ... | ... | @@ -1518,7 +1518,7 @@ hr { |
| 1518 | 1518 | { |
| 1519 | 1519 | float: right; |
| 1520 | 1520 | text-align: right; |
| 1521 | - margin-right: 1em; | |
| 1521 | + margin: 0.75em 0em 0 0; | |
| 1522 | 1522 | z-index: 100; |
| 1523 | 1523 | } |
| 1524 | 1524 | |
| ... | ... | @@ -1564,7 +1564,7 @@ hr { |
| 1564 | 1564 | |
| 1565 | 1565 | #content .dashboard_block .action_close |
| 1566 | 1566 | { |
| 1567 | - background-image: url(../graphics/delete.gif); | |
| 1567 | + background-image: url(../graphics/bullet_toggle_close.png); | |
| 1568 | 1568 | } |
| 1569 | 1569 | |
| 1570 | 1570 | /* action effects */ | ... | ... |
resources/graphics/bullet_toggle_minus.png
resources/graphics/bullet_toggle_plus.png
view.php
| ... | ... | @@ -77,12 +77,12 @@ class ViewDocumentDispatcher extends KTStandardDispatcher { |
| 77 | 77 | $currentaction = $this->sName; |
| 78 | 78 | |
| 79 | 79 | $actions = KTDocumentActionUtil::getDocumentActionsForDocument($this->oDocument, $this->oUser, 'documentinfo'); |
| 80 | - $oPortlet = new KTActionPortlet(sprintf(_kt('Info about this document'))); | |
| 80 | + $oPortlet = new KTActionPortlet(sprintf(_kt('Document info'))); | |
| 81 | 81 | $oPortlet->setActions($actions, $currentaction); |
| 82 | 82 | $this->oPage->addPortlet($oPortlet); |
| 83 | 83 | |
| 84 | 84 | $this->actions = KTDocumentActionUtil::getDocumentActionsForDocument($this->oDocument, $this->oUser); |
| 85 | - $oPortlet = new KTActionPortlet(sprintf(_kt('Actions on this document'), $this->oDocument->getName())); | |
| 85 | + $oPortlet = new KTActionPortlet(sprintf(_kt('Document actions'), $this->oDocument->getName())); | |
| 86 | 86 | $oPortlet->setActions($this->actions, $currentaction); |
| 87 | 87 | $this->oPage->addPortlet($oPortlet); |
| 88 | 88 | } | ... | ... |