Commit 0e70474a authored by Ahmad Kharbat's avatar Ahmad Kharbat
Browse files

minor bug fixes

parent ed01937c
Loading
Loading
Loading
Loading

images/vrule.png

0 → 100644
+173 B
Loading image diff...
+9 −3
Original line number Diff line number Diff line
@@ -298,8 +298,14 @@ input.form-submit:hover {
/**
 * Blocks
 */
div.messages,
.block { margin:5px; }
div.messages {
  margin:5px;
  padding: 10px;	
}

.block { 
	margin:5px;
}

.block .block-title {
  background:#08c url(images/cube.png) 0px -190px repeat-x;
@@ -361,7 +367,7 @@ div.node {
  border-width:1px;
  border-color:#ccc #ddd #eee;

  background:#fff url(../images/vrule.png) 65% 0% repeat-y;
  background:#fff url(images/vrule.png) 65% 0% repeat-y;
  margin:0px 0px 10px;

  -moz-box-shadow:#fff 0px 1px 0px;
+1 −1
Original line number Diff line number Diff line
@@ -72,7 +72,7 @@ function _cube_user_links() {
  }
  else {
    $user_links['account'] = array('title' => t('Hello @username', array('@username' => $user->name)), 'href' => 'user', 'html' => TRUE);
    $user_links['logout'] = array('title' => t('Logout'), 'href' => "logout");
    $user_links['logout'] = array('title' => t('Logout'), 'href' => "user/logout");
  }
  return $user_links;
}