Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Zvonimir
ISPConfig 3
Commits
a9c5c19a
Commit
a9c5c19a
authored
Jul 11, 2012
by
cfoe
Browse files
rc1 of default-v2
parent
d7bde08e
Changes
13
Expand all
Show whitespace changes
Inline
Side-by-side
interface/web/themes/default-v2/CHANGELOG
View file @
a9c5c19a
...
@@ -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
interface/web/themes/default-v2/TODO
View file @
a9c5c19a
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
- some more icons need to be changed into sprites
\ No newline at end of file
interface/web/themes/default-v2/css/styles.css
View file @
a9c5c19a
This diff is collapsed.
Click to expand it.
interface/web/themes/default-v2/i
mage
s/button_sprite.png
→
interface/web/themes/default-v2/i
con
s/button_sprite.png
View file @
a9c5c19a
File moved
interface/web/themes/default-v2/icons/device_sprite.png
0 → 100644
View file @
a9c5c19a
10.3 KB
interface/web/themes/default-v2/icons/x16/printer__plus.png
deleted
100644 → 0
View file @
d7bde08e
715 Bytes
interface/web/themes/default-v2/i
mage
s/x16_sprite.png
→
interface/web/themes/default-v2/i
con
s/x16_sprite.png
View file @
a9c5c19a
File moved
interface/web/themes/default-v2/i
mage
s/x32_sprite.png
→
interface/web/themes/default-v2/i
con
s/x32_sprite.png
View file @
a9c5c19a
File moved
interface/web/themes/default-v2/icons/x64/network.png
deleted
100644 → 0
View file @
d7bde08e
5.42 KB
interface/web/themes/default-v2/icons/x64/server.png
deleted
100644 → 0
View file @
d7bde08e
3.44 KB
interface/web/themes/default-v2/images/loading.gif
0 → 100644
View file @
a9c5c19a
1.43 KB
interface/web/themes/default-v2/images/x64_sprite.png
deleted
100644 → 0
View file @
d7bde08e
9.78 KB
interface/web/themes/default-v2/templates/dashboard/dashboard.htm
View file @
a9c5c19a
...
@@ -4,24 +4,33 @@
...
@@ -4,24 +4,33 @@
<div>
<div>
<tmpl_if
name=
'error'
>
<tmpl_if
name=
'error'
>
<div
class=
"systemmonitor-state state-error"
>
<div
class=
"systemmonitor-state state-error"
>
<div
class=
"status"
></div>
<div
class=
"statusMsg"
>
<tmpl_loop
name=
"error"
>
<tmpl_loop
name=
"error"
>
<p>
{tmpl_var name='error_msg'}
</p>
{tmpl_var name='error_msg'}
</tmpl_loop>
</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"
>
<div
class=
"status"
></div>
<div
class=
"statusMsg"
>
<tmpl_loop
name=
"warning"
>
<tmpl_loop
name=
"warning"
>
<p>
{tmpl_var name='warning_msg'}
</p>
{tmpl_var name='warning_msg'}
</tmpl_loop>
</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"
>
<div
class=
"status"
></div>
<div
class=
"statusMsg"
>
<tmpl_loop
name=
"info"
>
<tmpl_loop
name=
"info"
>
<p>
{tmpl_var name='info_msg'}
</p>
{tmpl_var name='info_msg'}
</tmpl_loop>
</tmpl_loop>
</div>
</div>
</div>
</tmpl_if>
</tmpl_if>
</div>
</div>
<div
style=
"float:left; width:350px;"
>
<div
style=
"float:left; width:350px;"
>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment