diff options
Diffstat (limited to 'themes')
| -rw-r--r-- | themes/admin_default/css/screen.css | 4 | ||||
| -rw-r--r-- | themes/admin_default/views/block.html.php | 9 | 
2 files changed, 9 insertions, 4 deletions
| diff --git a/themes/admin_default/css/screen.css b/themes/admin_default/css/screen.css index 6c369b54..edc1beab 100644 --- a/themes/admin_default/css/screen.css +++ b/themes/admin_default/css/screen.css @@ -65,12 +65,12 @@    margin-bottom: 0;  } -#gContent .gBlock h2 { -  background-color: #e8e8e8; +#gContent .gBlock .ui-dialog-titlebar {    margin: -.8em -.3em 0 -.3em;  }  #gSidebar .gBlock h2 { +  background: none;    margin: -.9em -.4em 0 -.3em;    cursor: move;  } diff --git a/themes/admin_default/views/block.html.php b/themes/admin_default/views/block.html.php index 42d09196..7f14353a 100644 --- a/themes/admin_default/views/block.html.php +++ b/themes/admin_default/views/block.html.php @@ -1,6 +1,11 @@  <?php defined("SYSPATH") or die("No direct script access.") ?> -<div id="<?= $id ?>" class="gBlock"> -  <h2><?= $title ?></h2> +<div id="<?= $id ?>" class="gBlock ui-widget-dialog"> +  <div class="ui-dialog-titlebar ui-widget-header"> +    <a href="#" class="ui-dialog-titlebar-close"> +      <span class="ui-icon ui-icon-closethick">close</span> +    </a> +    <?= $title ?> +  </div>    <div class="gBlockContent">      <?= $content ?>    </div> | 
