diff options
| author | Bharat Mediratta <bharat@menalto.com> | 2009-01-13 04:56:29 +0000 | 
|---|---|---|
| committer | Bharat Mediratta <bharat@menalto.com> | 2009-01-13 04:56:29 +0000 | 
| commit | 16bebdca068eebedb1eea71e04d986936561e8fc (patch) | |
| tree | d05e749eae20ae07aa74a94f1f518f1fc09569d4 /themes/admin_default/css/screen.css | |
| parent | ac59df23958d206956e92b4761c70214f8ffee8e (diff) | |
Make the admin/graphics UI mimic admin/themes with a single selected
toolkit above, and other available ones below.
Diffstat (limited to 'themes/admin_default/css/screen.css')
| -rw-r--r-- | themes/admin_default/css/screen.css | 36 | 
1 files changed, 24 insertions, 12 deletions
| diff --git a/themes/admin_default/css/screen.css b/themes/admin_default/css/screen.css index 02a0aeca..a1ea09a4 100644 --- a/themes/admin_default/css/screen.css +++ b/themes/admin_default/css/screen.css @@ -7,7 +7,7 @@  /** *******************************************************************   *  Reusable content blocks   **********************************************************************/ -  +  .gBlock {    border: 1px solid #e7e7e7;    margin-bottom: 1em; @@ -102,16 +102,25 @@   *  Stuff that needs a home or needs to be organized   *********************************************************************/ +#gAdminGraphics #gSelectedToolkit img,  #gAdminThemes #gSelectedTheme img { -  float: left; +  float: right;    margin-right: 1em;  } +#gAdminGraphics #gSelectedToolkit div.gBlock { +  width: 700px; +  height: 140px; +  background: #cfc; +} + +#gAdminGraphics .gBlock,  #gAdminThemes .gBlock {    background: #fff;    padding: 1em;  } +#gAdminGraphics #gAvailableToolkits .gBlock,  #gAdminThemes #gAvailableThemes .gBlock {    clear: none;    cursor: pointer; @@ -121,23 +130,26 @@    width: 250px;  } +#gAdminGraphics #gAvailableToolkits .gBlock { +  width: 328px; +  height: 300px; +} + +#gAdminGraphics #gAvailableToolkits .unavailable { +  background-color: #fee !important; +  cursor: default !important; +} + +#gAdminGraphics #gAvailableToolkits .gBlock:hover,  #gAdminThemes #gAvailableThemes .gBlock:hover {    background: #eee;  } +#gAdminGraphics a,  #gAdminThemes a {    color: #333;  } -#gAdminGraphics tr { +#gAdminGraphics #gAvailableToolkits .gBlock {    cursor: pointer;  } - -#gAdminGraphics tr.selected { -  background-color: #cfc !important; -  cursor: default; -} - -#gAdminGraphics tr:hover { -  background-color: #eee; -} | 
