update: the wrap-around happens/can happen when resizing the browser
window (reversible: it appears and goes away, depending on window width).
this is thus not firefox specific (at least I know see it myself in the
above described way with opera). so the suggestion to enter an unbreakable
space probably is the way to go? the dynamic wrapping of the date/time
info is not good in my view. I have no idea how to insert an unbreakable
(html-)space here so I've tried this:
--- src/timeline.c
+++ src/timeline.c
@@ -336,5 +336,5 @@
zTime[pos++] = zDate[5]; zTime[pos++] = zDate[6]; /* MM */
zTime[pos++] = zDate[8]; zTime[pos++] = zDate[9]; /* DD */
- zTime[pos++] = ' ';
+ zTime[pos++] = '_';
zTime[pos++] = zDate[11]; zTime[pos++] = zDate[12]; /* HH */
zTime[pos++] = ':';
@@ -344,4 +344,5 @@
/* YYYY-MM-DD HH:MM */
sqlite3_snprintf(sizeof(zTime), zTime, "%.16s", zDate);
+ zTime[10]='_';
}
if( rid == vid ){
which is OK, but a real white space would be nicer, probably.
On Fri, 18 Oct 2013 19:52:16 +0200, Stephan Beal <[email protected]>
wrote:
That can be done in css. In chrome, be SURE to forcibly empty the cache
or
it may hold the old CSS for ages. Chrome's cache is annoyingly
aggressive.
(sent from a mobile device - please excuse brevity, typos, and
top-posting)
----- stephan beal
http://wanderinghorse.net
On Oct 18, 2013 7:17 PM, "Ron Wilson" <[email protected]> wrote:
On Fri, Oct 18, 2013 at 1:06 PM, j. van den hoff <
[email protected]> wrote:
follow up: a colleague has tested it with firefox and chromium under
ubuntu: only the latter showed the "inlined date" as expected. firefox
put
the time right adjusted under the date in YYYY-MM-DD HH:MM(:SS?)
format.
no idea way, just wanted to point this out.
Maybe Firefox's internal logic prioritizes conserving horizontal space
instead of vertical space so wrapped the text at the space between the
date
and time.
A possible workaround would be to use a non-breaking space instead of a
"normal" space.
_______________________________________________
fossil-users mailing list
[email protected]
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
--
Using Opera's revolutionary email client: http://www.opera.com/mail/
_______________________________________________
fossil-users mailing list
[email protected]
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users