# HG changeset patch # User Pawel Solyga # Date 1221987412 0 # Node ID 72f193fb56336cda7a814538057fed0052fc924c # Parent fdd29818a954295bf8fc1ca5af13ffa6b881842a Add rounded corners graphics. Add .notice class and rounded corners classes to soc.css file, those will be used to better visualize submit_message like "Profile saved.". diff -r fdd29818a954 -r 72f193fb5633 app/soc/content/css/soc.css --- a/app/soc/content/css/soc.css Sun Sep 21 08:50:42 2008 +0000 +++ b/app/soc/content/css/soc.css Sun Sep 21 08:56:52 2008 +0000 @@ -344,3 +344,13 @@ .error { color: red; } + +.notice { + background:#fad163; + font-weight: bold; +} + +.rounded_ul { background: url(/soc/content/images/ul.gif) no-repeat top left; } +.rounded_ur { background: url(/soc/content/images/ur.gif) no-repeat top right; } +.rounded_ll { background: url(/soc/content/images/ll.gif) no-repeat bottom left; } +.rounded_lr { background: url(/soc/content/images/lr.gif) no-repeat bottom right; } \ No newline at end of file diff -r fdd29818a954 -r 72f193fb5633 app/soc/content/images/ll.gif Binary file app/soc/content/images/ll.gif has changed diff -r fdd29818a954 -r 72f193fb5633 app/soc/content/images/lr.gif Binary file app/soc/content/images/lr.gif has changed diff -r fdd29818a954 -r 72f193fb5633 app/soc/content/images/ul.gif Binary file app/soc/content/images/ul.gif has changed diff -r fdd29818a954 -r 72f193fb5633 app/soc/content/images/ur.gif Binary file app/soc/content/images/ur.gif has changed