diff options
Diffstat (limited to 'themes')
| -rw-r--r-- | themes/default_admin/dashboard.html | 78 | 
1 files changed, 69 insertions, 9 deletions
diff --git a/themes/default_admin/dashboard.html b/themes/default_admin/dashboard.html index f3d5c557..28820d9f 100644 --- a/themes/default_admin/dashboard.html +++ b/themes/default_admin/dashboard.html @@ -12,17 +12,34 @@      <script src="../default/jquery/superfish.js"></script>      <script src="../default/js/ui.init.js"></script>      <style type="text/css"> +      #gContent { +        font-size: 1.1em; +      }        .gBlock {          border: 1px solid #e7e7e7; +        margin-bottom: 1em; +        padding: .4em;        }        .gBlock h2 {          background-color: #e7e7e7; -        padding: .1em .4em; -      } -      .gDraggable h2 { +        margin: -.4em; +        padding: .2em .6em;          background: #f4f4f4 url('../default/images/ico-draggable.png') no-repeat center right;          cursor: move;        } +      .gClose { +        background-color: #f1f1f1; +        border: 1px solid #ccc; +        color: #ccc; +        display: block; +        float: right; +        padding: .1em .2em; +      } +      a.gClose:hover { +        border-color: #999; +        color: #999; +        text-decoration: none; +      }        #gPhotoStream .gBlockContent {          overflow: scroll;         } @@ -33,6 +50,11 @@      <div id="doc4" class="yui-t5 gView">        <div id="hd">          <div id="gHeader"> +          <ul id="gLoginMenu"> +            <li><a href="/index.php/album/1">View the Gallery</a></li> +            <li id="gLoginLink"><a href="/index.php/logout">Logout</a></li> +          </ul> +          <img src="../default/images/logo.png" id="gLogo" alt="Gallery 3: Your Photos on Your Web Site" />            <ul id="gSiteMenu" class="sf-menu">              <li><a href="#">Dashboard</a><li>              <li><a href="#">General Settings</a><li> @@ -61,7 +83,7 @@                </ul>              </li>              <li><a href="#">Maintenance</a><li> -            <li><a href="#">Logs</a><li> +            <li><a href="#">Statistics</a><li>            </ul>            <!--ul id="gBreadcrumbs" class="gClearFix">              <li><a href="#">Dashboard</a></li> @@ -73,9 +95,26 @@            <div class="yui-b">              <div id="gContent" class="yui-g"> -              <div class="gBlock gMessages"> +              <div class="gBlock"> +                <a href="" class="gClose">X</a> +                <h2>Welcome to Gallery 3!</h2> +                <div class="gBlockContent"> +                  <p>This is your administration dashboard and it provides a quick overview of status messages, +                  recent updates, and frequently used options. Add or remove blocks and rearrange them  +                  to tailor to your needs. The admin menu provides quick access to all of Gallery 3's options +                  and settings. Here are a few of the most used options to get you started.</p>  +                  <ul> +                    <li><a href="#">General Settings</a> - General configuation options for your Gallery.</li> +                    <li><a href="#">Modules</a> - Manage available and installed modules.</li> +                    <li><a href="#">Presentation</a> - Choose a theme, set image sizes.</li> +                  </ul> +                </div> +              </div> +               +              <div class="gBlock"> +                <a href="" class="gClose">X</a>                  <h2>Status Messages</h2> -                <ul class="gBlockContent"> +                <ul class="gBlockContent gMessages">                    <li class="gWarning"><a href="#" title="">Gallery 3.1 is available, you're running Gallery 3.0. Update now!</a></li>                    <li class="gError"><a href="#" title="">Unable to write to /home/username/gallery3/var</a></li>                    <li class="gSuccess"><a href="#" title="">Permissions issues fixed</a></li> @@ -84,15 +123,18 @@                  </ul>                </div> -              <div id="gPhotoStream" class="gBlock gDraggable"> +              <div id="gPhotoStream" class="gBlock"> +                <a href="" class="gClose">X</a>                  <h2>Photo Stream</h2>                  <div class="gBlockContent">                    <p>Recent photos added to your Gallery</p>                    <img src="images/photostream.png" alt="" /> +                  <p class="gWarning">Slider type of display. Show titles underneath or on hover. Draw a keyline around albums, or differentiate some how. Each will be linked to item view</p>                  </div>                </div> -              <div id="gLogEntries" class="gBlock gDraggable"> +              <div id="gLogEntries" class="gBlock"> +                <a href="" class="gClose">X</a>                  <h2>Recent Comments</h2>                  <ul class="gBlockContent">                    <li><a href="">username</a> 2008-12-10 23:02:23 Something happened</li> @@ -103,7 +145,8 @@                  </ul>                </div> -              <div id="gLogEntries" class="gBlock gDraggable"> +              <div id="gLogEntries" class="gBlock"> +                <a href="" class="gClose">X</a>                  <h2>Log Entries</h2>                  <ul class="gBlockContent">                    <li>2008-12-10 23:02:23 Something happened</li> @@ -119,7 +162,22 @@          </div>          <div id="gSidebar" class="yui-b"> +          <div id="gAvailableBlocks" class="gBlock"> +            <a href="" class="gClose">X</a> +            <form class="gBlockContent"> +              <fieldset> +                <legend>Add Dashboard Blocks</legend> +                <label for="">Available blocks</label> +                <select name="" id=""> +                  <option>Somthing</option> +                  <option>Somthing else</option> +                </select> +              </fieldset> +            </form> +          </div> +                      <div id="gPlatform" class="gBlock"> +            <a href="" class="gClose">X</a>              <h2>Gallery Stats</h2>              <ul class="gBlockContent">                <li>Version: 3.0</li> @@ -128,6 +186,7 @@            </div>            <div id="gPlatform" class="gBlock"> +            <a href="" class="gClose">X</a>              <h2>Platform Information</h2>              <ul class="gBlockContent">                <li>Platform @@ -159,6 +218,7 @@            </div>            <div id="gProjectNews" class="gBlock"> +            <a href="" class="gClose">X</a>              <h2>Gallery Project News</h2>              <ul class="gBlockContent">                <li>10-Apr <a href="#">Gallery 3.1 released!</a></li>  | 
