From 4284c6f9ee471d253354b8ba9508281b98976f52 Mon Sep 17 00:00:00 2001 From: Friendika Date: Sun, 5 Jun 2011 17:32:56 -0700 Subject: use icon for language selector instead of hotkey --- view/theme/duepuntozero/style.css | 12 ++++++++++-- view/theme/loozah/style.css | 10 +++++++++- 2 files changed, 19 insertions(+), 3 deletions(-) (limited to 'view') diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index 58cf8646c..2aa0eb2e9 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -2298,8 +2298,8 @@ a.mail-list-link { #language-selector { position: absolute; - top: 0; - left: 0; + top: 0px; + left: 16px; } #group-members { @@ -2403,6 +2403,13 @@ a.mail-list-link { margin: 5px 0px 0px 0px; } +#lang-select-icon { + cursor: pointer; + position: absolute; + left: 0px; + top: 0px; +} + /** * ICONS @@ -2439,6 +2446,7 @@ a.mail-list-link { .video { background-position: -48px -32px;} .youtube { background-position: -64px -32px;} .attach { background-position: -80px -32px; } +.language { background-position: -96px -32px; } .attachtype { diff --git a/view/theme/loozah/style.css b/view/theme/loozah/style.css index 7c9697b4d..0f9e1e956 100644 --- a/view/theme/loozah/style.css +++ b/view/theme/loozah/style.css @@ -2319,7 +2319,7 @@ a.mail-list-link { #language-selector { position: absolute; top: 0; - left: 0; + left: 16px; } @@ -2419,6 +2419,13 @@ a.mail-list-link { margin: 5px 0px 0px 0px; } +#lang-select-icon { + cursor: pointer; + position: absolute; + left: 0px; + top: 0px; +} + /** * ICONS */ @@ -2454,6 +2461,7 @@ a.mail-list-link { .video { background-position: -48px -32px;} .youtube { background-position: -64px -32px;} .attach { background-position: -80px -32px; } +.language { background-position: -96px -32px; } .attachtype { display: block; width: 20px; height: 23px; -- cgit v1.2.3 From c4cec593ba4551069d442bf46d87bb0c952ebdab Mon Sep 17 00:00:00 2001 From: Friendika Date: Sun, 5 Jun 2011 17:51:39 -0700 Subject: position language selector in dispy --- view/theme/dispy/style.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'view') diff --git a/view/theme/dispy/style.css b/view/theme/dispy/style.css index 51cb6dd4a..5cedf4118 100644 --- a/view/theme/dispy/style.css +++ b/view/theme/dispy/style.css @@ -170,6 +170,20 @@ nav .nav-link { #notify-update { background-position: -60px 0px; } #home-update { background-position: -90px 0px; } +#lang-select-icon { + cursor: pointer; + position: absolute; + left: 0px; + top: 0px; +} + +#language-selector { + position: absolute; + top: 0; + left: 16px; +} + + /** sysmsg **/ #sysmsg_info{ position:fixed; @@ -776,6 +790,7 @@ section { margin: 10px 11% 0px 11%; font-size: 0.8em; padding-right: 230px;} border-bottom: 0px; }*/ + .border { border: 1px solid #babdb6; -webkit-border-radius: 3px; -- cgit v1.2.3 From edbad772bacb25e23f4a8e26379e26b13e5765cd Mon Sep 17 00:00:00 2001 From: Friendika Date: Sun, 5 Jun 2011 18:05:25 -0700 Subject: add flag for experimental themes --- view/theme/dispy/experimental | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 view/theme/dispy/experimental (limited to 'view') diff --git a/view/theme/dispy/experimental b/view/theme/dispy/experimental new file mode 100644 index 000000000..e69de29bb -- cgit v1.2.3 From 89fc56723de3be45daaebbadf81f52552c3e4682 Mon Sep 17 00:00:00 2001 From: Fabio Comuni Date: Mon, 6 Jun 2011 15:38:21 +0200 Subject: Add 'attach' and 'language' icons and enable file upload in dispy template --- view/theme/dispy/icons.png | Bin 16306 -> 17101 bytes view/theme/dispy/jot-header.tpl | 11 +++++++++++ view/theme/dispy/jot.tpl | 7 +++++-- view/theme/dispy/style.css | 8 +++++--- 4 files changed, 21 insertions(+), 5 deletions(-) (limited to 'view') diff --git a/view/theme/dispy/icons.png b/view/theme/dispy/icons.png index 43228bb9d..b016fe33b 100644 Binary files a/view/theme/dispy/icons.png and b/view/theme/dispy/icons.png differ diff --git a/view/theme/dispy/jot-header.tpl b/view/theme/dispy/jot-header.tpl index 245957808..eab3af700 100644 --- a/view/theme/dispy/jot-header.tpl +++ b/view/theme/dispy/jot-header.tpl @@ -81,6 +81,17 @@ tinyMCE.init({ } } ); + var file_uploader = new window.AjaxUpload( + 'wall-file-upload', + { action: 'wall_attach/$nickname', + name: 'userfile', + onSubmit: function(file,ext) { $('#profile-rotator').show(); }, + onComplete: function(file,response) { + tinyMCE.execCommand('mceInsertRawHTML',false,response); + $('#profile-rotator').hide(); + } + } + ); $('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() { var selstr; $('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() { diff --git a/view/theme/dispy/jot.tpl b/view/theme/dispy/jot.tpl index ab121db31..f87b6fbb3 100644 --- a/view/theme/dispy/jot.tpl +++ b/view/theme/dispy/jot.tpl @@ -26,8 +26,11 @@
-
-
+
+ +
+
+
diff --git a/view/theme/dispy/style.css b/view/theme/dispy/style.css index 5cedf4118..36702b3e8 100644 --- a/view/theme/dispy/style.css +++ b/view/theme/dispy/style.css @@ -815,9 +815,9 @@ section { margin: 10px 11% 0px 11%; font-size: 0.8em; padding-right: 230px;} .pause { background-position: -110px -20px;} .play { background-position: -130px -20px;} .pencil { background-position: -150px -20px;} -.small-pencil{ background-position: -170px -20px;} +.small-pencil { background-position: -170px -20px;} .recycle { background-position: -190px -20px;} -.remote-link{ background-position: -210px -20px;} +.remote-link { background-position: -210px -20px;} .share { background-position: -230px -20px;} .tools { background-position: -50px -40px;} @@ -825,7 +825,9 @@ section { margin: 10px 11% 0px 11%; font-size: 0.8em; padding-right: 230px;} .unlock { background-position: -90px -40px;} .video { background-position: -110px -40px;} .youtube { background-position: -130px -40px;} - + +.attach { background-position: -190px -40px;} +.language { background-position: -210px -40px;} .attachtype { display: block; width: 20px; height: 23px; -- cgit v1.2.3 From 9f51233451ad6392b61083cf61f5670bcce9d935 Mon Sep 17 00:00:00 2001 From: Friendika Date: Mon, 6 Jun 2011 20:17:36 -0700 Subject: event listings --- view/theme/duepuntozero/style.css | 3 +++ 1 file changed, 3 insertions(+) (limited to 'view') diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index 2aa0eb2e9..f837112b6 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -2223,6 +2223,9 @@ a.mail-list-link { cursor: pointer; } +.eventcal { + font-size: 24px; +} .calendar { font-family: Courier, monospace; -- cgit v1.2.3