diff options
| author | Simon | 2011-03-16 12:07:20 +0100 |
|---|---|---|
| committer | Simon | 2011-03-16 12:07:20 +0100 |
| commit | 4833ec55bbe8c7696cc4c75a0793950ced840418 (patch) | |
| tree | 09d6237e0d4ca5932ca0a33f05e1366b60bf759d /public | |
| parent | session erstellen in fbgui verschoben, library kann von überall verwendet we... (diff) | |
| download | pbs2-4833ec55bbe8c7696cc4c75a0793950ced840418.tar.gz pbs2-4833ec55bbe8c7696cc4c75a0793950ced840418.tar.xz pbs2-4833ec55bbe8c7696cc4c75a0793950ced840418.zip | |
controller und actions für Client und Pool hinzugefügt
Diffstat (limited to 'public')
| -rw-r--r-- | public/media/css/style.css | 35 | ||||
| -rw-r--r-- | public/media/img/box_check.png | bin | 0 -> 652 bytes | |||
| -rw-r--r-- | public/media/img/box_error.png | bin | 0 -> 1083 bytes | |||
| -rw-r--r-- | public/media/img/box_info.png | bin | 0 -> 623 bytes | |||
| -rw-r--r-- | public/media/img/box_warning.png | bin | 0 -> 670 bytes |
5 files changed, 35 insertions, 0 deletions
diff --git a/public/media/css/style.css b/public/media/css/style.css index 183baac..57b3552 100644 --- a/public/media/css/style.css +++ b/public/media/css/style.css @@ -235,3 +235,38 @@ tr td.action{ td.action img{border:none;} .clear{clear:both;} .footer{text-align:right;font-size:10px;font-family:Verdana, Arial;padding:10px 0px 10px 0px;} + +/* boxes */ +.checkbox, .warningbox, .errorbox, .infobox { + margin:10px 0px; + padding:10px 10px 10px 40px; + border-width:1px; + color:#555; +} +.checkbox a, .warningbox a, .errorbox a{ + color:#555; +} +.infobox a{ + color:#777; +} +.warningbox{ + border:1px solid #CCC; + background: #FFFFAA url('/media/img/box_warning.png') no-repeat; + background-position:10px center; +} +.errorbox{ + border:1px solid #990000; + background: #FF9999 url('/media/img/box_error.png') no-repeat; + background-position:10px center; +} +.checkbox{ + border:1px solid #339933; + background: #BBFFBB url('/media/img/box_check.png') no-repeat; + background-position:10px center; +} +.infobox{ + border:1px solid #CCC; + background: #FFFFFF url('/media/img/box_info.png') no-repeat; + background-position:10px center; + color:#777; +} diff --git a/public/media/img/box_check.png b/public/media/img/box_check.png Binary files differnew file mode 100644 index 0000000..65aaea6 --- /dev/null +++ b/public/media/img/box_check.png diff --git a/public/media/img/box_error.png b/public/media/img/box_error.png Binary files differnew file mode 100644 index 0000000..a5186cb --- /dev/null +++ b/public/media/img/box_error.png diff --git a/public/media/img/box_info.png b/public/media/img/box_info.png Binary files differnew file mode 100644 index 0000000..a31fb3e --- /dev/null +++ b/public/media/img/box_info.png diff --git a/public/media/img/box_warning.png b/public/media/img/box_warning.png Binary files differnew file mode 100644 index 0000000..57df115 --- /dev/null +++ b/public/media/img/box_warning.png |
