Skip to content
Snippets Groups Projects
Commit a9c5c19a authored by cfoe's avatar cfoe
Browse files

rc1 of default-v2

parent d7bde08e
No related branches found
No related tags found
No related merge requests found
Showing
with 350 additions and 342 deletions
...@@ -2,6 +2,7 @@ CHANGELOG ...@@ -2,6 +2,7 @@ CHANGELOG
default -> default-v2 default -> default-v2
source: default $3241 07/06/2012 @ 12:00 UTC+2 source: default $3241 07/06/2012 @ 12:00 UTC+2
- changed doctype to <!DOCTYPE html> (HTML5)
- rm yaml/* - rm yaml/*
- rm css/patches/* - rm css/patches/*
- cp yaml/patches/iehacks.css css/* - cp yaml/patches/iehacks.css css/*
...@@ -18,10 +19,10 @@ source: default $3241 07/06/2012 @ 12:00 UTC+2 ...@@ -18,10 +19,10 @@ source: default $3241 07/06/2012 @ 12:00 UTC+2
- mv css media-recognition from css-files to <head>-link tag - mv css media-recognition from css-files to <head>-link tag
- change most div-containers to new html5 tags in main.tpl.htm - change most div-containers to new html5 tags in main.tpl.htm
- rm dom elements from main.tpl.htm - rm dom elements from main.tpl.htm
- add html5shiv.js - add html5shiv.js (https://github.com/aFarkas/html5shiv) for better HTML5-compatibility
- reduction of dom elements - reduction of dom elements
- reduction of css rules - reduction of css rules
- removed all single icons - removed all single icons
- all icons separate: https://github.com/downloads/foe-services/ispc-larry/ispc-default_separate.zip - all icons separate: https://github.com/downloads/foe-services/ispc-larry/ispc-default_separate.zip
- all used icons as layers and sprite as .psd: https://github.com/downloads/foe-services/ispc-larry/ispc-default_psd.zip - all used icons as layers and sprite as .psd: https://github.com/downloads/foe-services/ispc-larry/ispc-default_psd.zip
- added sprites for all used icons - added sprites for (nearly) all used icons where suitable
TODO
- css/print.css is useless in current state - css/print.css is useless in current state
- css/iehacks.css is useless in current state - css/iehacks.css is useless in current state
\ No newline at end of file - some more icons need to be changed into sprites
\ No newline at end of file
This diff is collapsed.
interface/web/themes/default-v2/icons/device_sprite.png

10.3 KiB

interface/web/themes/default-v2/icons/x16/printer__plus.png

715 B

interface/web/themes/default-v2/icons/x64/network.png

5.42 KiB

interface/web/themes/default-v2/icons/x64/server.png

3.44 KiB

interface/web/themes/default-v2/images/loading.gif

1.43 KiB

interface/web/themes/default-v2/images/x64_sprite.png

9.78 KiB

...@@ -4,23 +4,32 @@ ...@@ -4,23 +4,32 @@
<div> <div>
<tmpl_if name='error'> <tmpl_if name='error'>
<div class="systemmonitor-state state-error"> <div class="systemmonitor-state state-error">
<tmpl_loop name="error"> <div class="status"></div>
<p>{tmpl_var name='error_msg'}</p> <div class="statusMsg">
</tmpl_loop> <tmpl_loop name="error">
{tmpl_var name='error_msg'}
</tmpl_loop>
</div>
</div> </div>
</tmpl_if> </tmpl_if>
<tmpl_if name='warning'> <tmpl_if name='warning'>
<div class="systemmonitor-state state-warning"> <div class="systemmonitor-state state-warning">
<tmpl_loop name="warning"> <div class="status"></div>
<p>{tmpl_var name='warning_msg'}</p> <div class="statusMsg">
</tmpl_loop> <tmpl_loop name="warning">
{tmpl_var name='warning_msg'}
</tmpl_loop>
</div>
</div> </div>
</tmpl_if> </tmpl_if>
<tmpl_if name='info'> <tmpl_if name='info'>
<div class="systemmonitor-state state-info"> <div class="systemmonitor-state state-info">
<tmpl_loop name="info"> <div class="status"></div>
<p>{tmpl_var name='info_msg'}</p> <div class="statusMsg">
</tmpl_loop> <tmpl_loop name="info">
{tmpl_var name='info_msg'}
</tmpl_loop>
</div>
</div> </div>
</tmpl_if> </tmpl_if>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment