Commit 2a47b3addcd7b9544681fb79fa959d0b839af719

Authored by Bryn Divey
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
lib/actions/documentaction.inc.php
@@ -172,12 +172,12 @@ class KTDocumentAction extends KTStandardDispatcher { @@ -172,12 +172,12 @@ class KTDocumentAction extends KTStandardDispatcher {
172 KTBrowseUtil::breadcrumbsForDocument($this->oDocument, $aOptions)); 172 KTBrowseUtil::breadcrumbsForDocument($this->oDocument, $aOptions));
173 173
174 $actions = KTDocumentActionUtil::getDocumentActionsForDocument($this->oDocument, $this->oUser, 'documentinfo'); 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 $oPortlet->setActions($actions, $this->sName); 176 $oPortlet->setActions($actions, $this->sName);
177 $this->oPage->addPortlet($oPortlet); 177 $this->oPage->addPortlet($oPortlet);
178 178
179 $actions = KTDocumentActionUtil::getDocumentActionsForDocument($this->oDocument, $this->oUser); 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 $oPortlet->setActions($actions, $this->sName); 181 $oPortlet->setActions($actions, $this->sName);
182 $this->oPage->addPortlet($oPortlet); 182 $this->oPage->addPortlet($oPortlet);
183 183
resources/css/kt-framing.css
@@ -1518,7 +1518,7 @@ hr { @@ -1518,7 +1518,7 @@ hr {
1518 { 1518 {
1519 float: right; 1519 float: right;
1520 text-align: right; 1520 text-align: right;
1521 - margin-right: 1em; 1521 + margin: 0.75em 0em 0 0;
1522 z-index: 100; 1522 z-index: 100;
1523 } 1523 }
1524 1524
@@ -1564,7 +1564,7 @@ hr { @@ -1564,7 +1564,7 @@ hr {
1564 1564
1565 #content .dashboard_block .action_close 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 /* action effects */ 1570 /* action effects */
resources/graphics/bullet_toggle_minus.png

216 Bytes | W: | H:

172 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
resources/graphics/bullet_toggle_plus.png

221 Bytes | W: | H:

176 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin
view.php
@@ -77,12 +77,12 @@ class ViewDocumentDispatcher extends KTStandardDispatcher { @@ -77,12 +77,12 @@ class ViewDocumentDispatcher extends KTStandardDispatcher {
77 $currentaction = $this->sName; 77 $currentaction = $this->sName;
78 78
79 $actions = KTDocumentActionUtil::getDocumentActionsForDocument($this->oDocument, $this->oUser, 'documentinfo'); 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 $oPortlet->setActions($actions, $currentaction); 81 $oPortlet->setActions($actions, $currentaction);
82 $this->oPage->addPortlet($oPortlet); 82 $this->oPage->addPortlet($oPortlet);
83 83
84 $this->actions = KTDocumentActionUtil::getDocumentActionsForDocument($this->oDocument, $this->oUser); 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 $oPortlet->setActions($this->actions, $currentaction); 86 $oPortlet->setActions($this->actions, $currentaction);
87 $this->oPage->addPortlet($oPortlet); 87 $this->oPage->addPortlet($oPortlet);
88 } 88 }