[css-d] Will -{moz, webkit}-border-radius ever be replaced by border-radius?

2010-06-14 Thread Paul Menzel
Dear css-discuss folks, does anyone know if and when `border-radius` will be supported by default, so `{moz,webkit}-border-radius` will be replaced? I could not figure out a good search term and just found the tutorials and for example [1], where they say, that there are also some differences

Re: [css-d] Will -{moz, webkit}-border-radius ever be replaced by border-radius?

2010-06-14 Thread Philippe Wittenbergh
On Jun 14, 2010, at 5:39 PM, Paul Menzel wrote: does anyone know if and when `border-radius` will be supported by default, so `{moz,webkit}-border-radius` will be replaced? Opera 10.5 and Safari 5/Chrome 5 already support the CSS3 syntax (not vendor prefix). Firefox.next will almost

Re: [css-d] css won't show in chrome, IEX

2010-06-14 Thread Thijs Hakkenberg
I've tried it, but no avail. I think the script is actually working, but for some reason chrome and IE still show no css... On 13-6-2010 23:03, Thierry Koblentz wrote: I made a site with a js which substitues css for different resolutions. But, IEX and Chrome won't show any css at all:

[css-d] :: focus ring ::

2010-06-14 Thread David Laakso
On this page http://chelseacreekstudio.com/site/resources/ there are a set of 12 underlined links in the right column. The left side of the focus-ring box is missing. What to do? relevant css lines 17 through 29 http://chelseacreekstudio.com/site/css/sisu.css Thanks. Best, ~d -- desktop

Re: [css-d] :: focus ring ::

2010-06-14 Thread Jukka K. Korpela
David Laakso wrote: On this page http://chelseacreekstudio.com/site/resources/ there are a set of 12 underlined links in the right column. The left side of the focus-ring box is missing. I think it's more commonly called focus rectangle, and in CSS terms, it's outline, rendered by default

Re: [css-d] Pure CSS fisheye menu with icons: a demo

2010-06-14 Thread Tim White
Hi all! I'm pretty inspired this time: http://onwebdev.blogspot.com/2010/06/pure-css-fisheye-menu-with-icons.html Gabriele Or, we can do it with just one image and a little bit of CSS3 magic: http://tjameswhite.com/demos/fisheye/ My demo uses Gabriele's original code, minus all the extra

Re: [css-d] Pure CSS fisheye menu with icons: a demo

2010-06-14 Thread Gabriele Romanato
Cool! Very smooth. I like it. Could you please post a comment to my post with the link of your nice demo? thanks! ps. your demo is really much more future-friendly! fantastic! :-) Gabriele http://www.css-zibaldone.com http://www.css-zibaldone.com/test/ (English)

Re: [css-d] :: focus ring ::

2010-06-14 Thread Philippe Wittenbergh
On Jun 14, 2010, at 11:03 PM, Jukka K. Korpela wrote: I think it's more commonly called focus rectangle, and in CSS terms, it's outline, rendered by default by popular browsers when a focusable element is focused on. as far as Safari goes (on OS X), it is really a focussing ring, also seen

Re: [css-d] :: focus ring ::

2010-06-14 Thread David Laakso
Philippe Wittenbergh wrote: On Jun 14, 2010, at 10:04 PM, David Laakso wrote: On this page http://chelseacreekstudio.com/site/resources/ there are a set of 12 underlined links in the right column. The left side of the focus-ring box is missing. It is clipped by the parent div.

Re: [css-d] css won't show in chrome, IEX

2010-06-14 Thread Thierry Koblentz
David is right, it's the script. Try these two lines: if(a.title == description){a.disabled = false;} else if(a.title != default){a.disabled = true;} I've tried it, but no avail. I think the script is actually working, but for some reason chrome and IE still show no css... Check

[css-d] vert position question

2010-06-14 Thread Matthew P. Johnson
If you open the link if ff and ie you will see Beautiful Luxurious Green Home on the Applegate River It positions correctly in ff but ie Why is this and how can I fix this? http://www.applegateelements.com/test.html line 56 margin-top : 10px; BTW I want

Re: [css-d] vert position question

2010-06-14 Thread Jay Tanna
There is a contradiction in your CSS. For example the CSS for #container is as follows: #container { margin : 0 auto; width : 800px; text-align : left; margin-top : 38px; } I suggest comment out the margin-top to show this: /* margin-top : 38px; */ Save the file file and

Re: [css-d] vert position question

2010-06-14 Thread Matthew P. Johnson
That did not do anything but I did remove the redundancy. Thank you for the tip. I did not realize what I was doing. Sincerely, Matthew P. Johnson | Eco I.T. 320 Warwick Avenue Oakland CA 94610 | 415.254.1563 | ecoitsf.com  Please consider the environment before printing this email.

Re: [css-d] vert position question

2010-06-14 Thread David Laakso
Matthew P. Johnson wrote: If you open the link if ff and ie you will see Beautiful Luxurious Green Home on the Applegate River It positions correctly in ff but ie Why is this and how can I fix this? http://www.applegateelements.com/test.html Matthew P. Johnson Not trying to

Re: [css-d] Will -{moz, webkit}-border-radius ever be replaced by border-radius?

2010-06-14 Thread Jay Tanna
--- On Mon, 6/14/10, Philippe Wittenbergh e...@l-c-n.com wrote: Opera 10.5 and Safari 5/Chrome 5 already support the CSS3 syntax (not vendor prefix). Firefox.next will almost certainly also support that syntax. I suspect IE 9 preview also support the vendor-prefix-less syntax (but I've no

Re: [css-d] css won't show in chrome, IEX

2010-06-14 Thread Thijs Hakkenberg
Thanks, that did the trick! On 14-6-2010 18:11, Thierry Koblentz wrote: David is right, it's the script. Try these two lines: if(a.title == description){a.disabled = false;} else if(a.title != default){a.disabled = true;} I've tried it, but no avail. I think the script is

Re: [css-d] vert position question

2010-06-14 Thread Matthew P. Johnson
Not trying to blow you out of the water but I'd seriously consider starting over with a clean sheet. Make a big box and put smaller boxes in it. Put stuff in the boxes. Find a menu that is known to work cross-browser: put it in a box. Validate the markup and CSS frequently. Test it

[css-d] Keeping an image visible yet constrained

2010-06-14 Thread Jim
Say I want to have an image located at the near the top of an element... maybe a table cell, but that's probably not that important. I always want that image to be visible and near the uppermost visible portion of that cell. What sort of styles should I be looking at to help accomplish that?

Re: [css-d] vert position question - FIXED

2010-06-14 Thread Matthew P. Johnson
Matthew P. Johnson wrote: If you open the link if ff and ie you will see Beautiful Luxurious Green Home on the Applegate River It positions correctly in ff but ie Why is this and how can I fix this? http://www.applegateelements.com/test.html Matthew P. Johnson Not trying to