diff options
| author | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-04-16 21:26:30 +0200 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-04-16 21:26:30 +0200 |
| commit | 451e8410e0b50b25527f20595cf971af41b160b1 (patch) | |
| tree | 98ccdfe17415867acfb92cdaa34e5a36775713c0 /ishtar_common/static | |
| parent | 2f390838f180a67c95ce8670be6ca27db2b91182 (diff) | |
| download | Ishtar-451e8410e0b50b25527f20595cf971af41b160b1.tar.bz2 Ishtar-451e8410e0b50b25527f20595cf971af41b160b1.zip | |
Add a progress visual for research - improve CSS
Diffstat (limited to 'ishtar_common/static')
| -rw-r--r-- | ishtar_common/static/media/style.css | 70 |
1 files changed, 57 insertions, 13 deletions
diff --git a/ishtar_common/static/media/style.css b/ishtar_common/static/media/style.css index fe078fa3c..957619f4c 100644 --- a/ishtar_common/static/media/style.css +++ b/ishtar_common/static/media/style.css @@ -3,11 +3,47 @@ background-color:#ff6e6e; } +a.add-button, a.remove, +#progress-content{ + background-color:#fff; +} + +div.form { + background-color: #EEE; +} + /* color */ -a { +a, a.remove { color:#D14; } +a.add-button{ + color:#61615C; +} +/* borders */ +a.add-button, a.remove, +#progress-content, +div.form { + border:2px solid #CCC; +} + +/* shadows */ +#progress-content, +.sheet{ + -webkit-box-shadow: 0px 0px 20px #444; + -moz-box-shadow: 0px 0px 20px #444; + box-shadow: 0px 0px 20px #444; +} + +/* radius */ +a.add-button, a.remove, +.sheet, +#progress-content, +div.form { + -moz-border-radius:8px; + -webkit-border-radius:8px; + border-radius:8px; +} body{ font-family:Arial, Helvetica, sans-serif; @@ -214,11 +250,6 @@ div.form { padding:1em; display:block; width:740px; - background-color: #EEE; - border:2px solid #CCC; - -moz-border-radius:8px; - -webkit-border-radius:8px; - border-radius:8px; text-align:center; } @@ -506,17 +537,10 @@ td.submit_button{ } a.add-button, a.remove{ - background-color:#FFF; - border:2px solid #CCC; - -moz-border-radius:8px; - -webkit-border-radius:8px; - border-radius:8px; padding:0 4px; - color:#61615C; } a.remove{ - color:#D14; margin:0 6px; } @@ -544,3 +568,23 @@ a.remove{ .widget-parcel{ width:60px; } + +#progress{ + display:none; + position:fixed; + height:50px; + width:100%; + top:40%; + z-index:42000; +} + +#progress-content{ + background-image:url(images/ajax-loader.gif); + background-repeat: no-repeat; + background-position:center center; + margin-left:auto; + margin-right:auto; + width:50px; + height:50px; + padding:10px; +} |
