From fa9e1a9abba4e116a24f5df3680dcf1a6f8b3f72 Mon Sep 17 00:00:00 2001 From: Friendika Date: Sun, 16 Jan 2011 15:23:34 -0800 Subject: apply date translation to birthday in profiles --- view/en/profile_advanced.php | 4 ++-- view/it/profile_advanced.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'view') diff --git a/view/en/profile_advanced.php b/view/en/profile_advanced.php index 82c66adec..9aee6c262 100644 --- a/view/en/profile_advanced.php +++ b/view/en/profile_advanced.php @@ -39,8 +39,8 @@ EOT; $o .= '
' . ((intval($a->profile['dob'])) - ? datetime_convert('UTC',date_default_timezone_get(),$a->profile['dob'],'j F, Y') - : datetime_convert('UTC',date_default_timezone_get(),'2001-' . substr($a->profile['dob'],6),'j F')) + ? day_translate(datetime_convert('UTC',date_default_timezone_get(),$a->profile['dob'],'j F, Y')) + : day_translate(datetime_convert('UTC',date_default_timezone_get(),'2001-' . substr($a->profile['dob'],6),'j F'))) . "
\r\n"; $o .= '
'; diff --git a/view/it/profile_advanced.php b/view/it/profile_advanced.php index 50bb0dd28..899fd56b2 100644 --- a/view/it/profile_advanced.php +++ b/view/it/profile_advanced.php @@ -39,8 +39,8 @@ EOT; $o .= '
' . ((intval($a->profile['dob'])) - ? datetime_convert('UTC',date_default_timezone_get(),$a->profile['dob'],'j F, Y') - : datetime_convert('UTC',date_default_timezone_get(),'2001-' . substr($a->profile['dob'],6),'j F')) + ? day_translate(datetime_convert('UTC',date_default_timezone_get(),$a->profile['dob'],'j F, Y')) + : day_translate(datetime_convert('UTC',date_default_timezone_get(),'2001-' . substr($a->profile['dob'],6),'j F'))) . "
\r\n"; $o .= '
'; -- cgit v1.2.3 From 2e0a3e06938f159ebe3729a8d488de928e3230a5 Mon Sep 17 00:00:00 2001 From: Friendika Date: Sun, 16 Jan 2011 17:56:26 -0800 Subject: birthday notifications: missing div close --- view/theme/default/style.css | 2 +- view/theme/duepuntozero/style.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'view') diff --git a/view/theme/default/style.css b/view/theme/default/style.css index fd14c6bdd..d9e93bbe6 100644 --- a/view/theme/default/style.css +++ b/view/theme/default/style.css @@ -1979,5 +1979,5 @@ a.mail-list-link { } #birthday-wrapper { - margin-bottom: 15px; + margin-bottom: 20px; } diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index 37670df01..7453ce212 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -1876,5 +1876,5 @@ a.mail-list-link { } #birthday-wrapper { - margin-bottom: 15px; + margin-bottom: 20px; } -- cgit v1.2.3 From bb2130ca7f0166a4a0fc171d130590977936445c Mon Sep 17 00:00:00 2001 From: Fabio Comuni Date: Mon, 17 Jan 2011 11:45:06 +0100 Subject: Mods to duepuntozero .shiny class --- view/theme/duepuntozero/shiny.jpg | Bin 338 -> 0 bytes view/theme/duepuntozero/shiny.png | Bin 0 -> 362 bytes view/theme/duepuntozero/style.css | 27 +++++++-------------------- 3 files changed, 7 insertions(+), 20 deletions(-) delete mode 100644 view/theme/duepuntozero/shiny.jpg create mode 100644 view/theme/duepuntozero/shiny.png (limited to 'view') diff --git a/view/theme/duepuntozero/shiny.jpg b/view/theme/duepuntozero/shiny.jpg deleted file mode 100644 index 17c978816..000000000 Binary files a/view/theme/duepuntozero/shiny.jpg and /dev/null differ diff --git a/view/theme/duepuntozero/shiny.png b/view/theme/duepuntozero/shiny.png new file mode 100644 index 000000000..994c0d05d Binary files /dev/null and b/view/theme/duepuntozero/shiny.png differ diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index 7453ce212..b2bdb6e87 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -3,23 +3,10 @@ * Fabio Comuni */ -@font-face { - font-family: FreeSans; - font-style: normal; - font-weight: bold; - src: local('FreeSansBold'), url('FreeSansBold.otf'); -} -@font-face { - font-family: FreeSans; - font-style: normal; - font-weight: normal; - src: local('FreeSans'), url('FreeSans.otf'); -} - /* generals */ body { - font-family: /*FreeSans,*/ helvetica,arial,clean,sans-serif; + font-family: helvetica,arial,freesans,clean,sans-serif; font-size: 12px; background-color: #ffffff; background-image: url(head.jpg); @@ -209,10 +196,10 @@ footer { } -.shiny { - background-image: url(shiny.jpg); - background-repeat: repeat-x; - background-position: left bottom; +div.wall-item-content-wrapper.shiny { + background-image: url('shiny.png'); + background-position: -5px 30px; + background-repeat:no-repeat; } /* from defautlt */ @@ -801,7 +788,7 @@ input#dfrn-url { .wall-item-content-wrapper.comment { margin-left: 50px; - background: #CCCCCC; + background: #EEEEEE; } .wall-item-photo-wrapper { @@ -879,7 +866,7 @@ input#dfrn-url { .comment-edit-wrapper { margin-top: 15px; - background: #CCCCCC; + background: #f3f3f3; margin-left: 50px; } -- cgit v1.2.3