phpBB

Development Discussion Board

phpBB's testing ground of bleeding edge code
Advanced search

[RFC|Merged] Rounded corners via css

These requests for comments have lead to an implemented feature that has been successfully merged into the 3.1/Ascraeus branch. Everything listed in this forum will be available in phpBB 3.1.

Re: [RFC] Rounded corners via css

Postby Dragosvr92 » Wed Jan 18, 2012 5:47 am

hm, was my post deleted ? o.O

If the browser isnt supporting the new css3 propertys they will just get ignored, so there wont be any layout problem. Optional, i think you should include that CSS3PIE Project if the forum owners wish so that their users have rounded corners into IE Browsers also. :ugeek:

I dont think you should worry how they see it in IE anyways..... Experienced users will use modern browsers and not IE, If they are un experienced with the web then its their loss, as always with un experienced people :)
Previous username: TheKiller
Avatar on Memberlist 1.0.3
User avatar
Dragosvr92
Registered User
 
Posts: 358
Joined: Tue May 31, 2011 12:08 pm
Location: Romania

Re: [RFC] Rounded corners via css

Postby DavidIQ » Wed Jan 18, 2012 11:42 am

TheKiller wrote:I dont think you should worry how they see it in IE anyways..... Experienced users will use modern browsers and not IE, If they are un experienced with the web then its their loss, as always with un experienced people :)

That's so NOT true...some users are bound to IE because that is what their workplace requires. And let's not forget that the "experienced user" you are talking about is in the minority here. IE is still very relevant in the browser market, more so than some of the other browsers out there, and is no more dangerous than any other browser (speaking of IE9 here of course).

By the time 3.2 is out IE8 might be pretty irrelevant, but the browser share should be looked at when that time comes and we should be prepared to have a way to address this style in those browsers because I don't think we should penalize users for being poor.
Image
User avatar
DavidIQ
MOD Team Leader
MOD Team Leader
 
Posts: 753
Joined: Thu Mar 02, 2006 4:29 pm
Location: Earth

Re: [RFC] Rounded corners via css

Postby MichaelC » Wed Jan 18, 2012 6:15 pm

DavidIQ wrote:By the time 3.2 is out IE8 might be pretty irrelevant, but the browser share should be looked at when that time comes and we should be prepared to have a way to address this style in those browsers because I don't think we should penalize users for being poor.


You say that but look at IE6 after 10 years...
Unknown Bliss
psoTFX wrote:I went with Olympus because as I said to the teams ... "It's been one hell of a hill to climb"

No unsolicited PMs please except for quotes.
User avatar
MichaelC
Website Team
Website Team
 
Posts: 797
Joined: Thu Jan 28, 2010 6:29 pm

Re: [RFC] Rounded corners via css

Postby DavidIQ » Wed Jan 18, 2012 8:15 pm

Unknown Bliss wrote:You say that but look at IE6 after 10 years...

Well yes but at least Microsoft has taken steps to correct this by forcing the Internet Explorer update through Automatic Updates. There's really nothing some user can do if they're using Windows XP and they're stuck using IE other than use IE8. I'm hoping that from here to whenever 3.2 rolls around the IE8 market share will have been reduced enough to be irrelevant but we should be prepared to respond should that not be the case. Maybe by version 4.0 we can definitely ignore those running IE versions less than 9.
Image
User avatar
DavidIQ
MOD Team Leader
MOD Team Leader
 
Posts: 753
Joined: Thu Mar 02, 2006 4:29 pm
Location: Earth

Re: [RFC] Rounded corners via css

Postby Arty » Wed Jan 18, 2012 8:56 pm

I suggest this:
- For now use Pie to implement corners for IE7/8. I'll need to test it to see how well it works. If this RFC will get merged into 3.1, it will be released with IE7/8 support.
- If this RFC will not be merged into 3.1, it will go without IE7/8 support because by the time 3.2 will be released, chances are IE8 will become irrelevant.
Formerly known as CyberAlien.
User avatar
Arty
Styles Team
Styles Team
 
Posts: 789
Joined: Wed Mar 06, 2002 2:36 pm
Location: Mars

Re: [RFC] Rounded corners via css

Postby Dragosvr92 » Thu Jan 19, 2012 7:42 am

It is easy to use.

Here is how i did it.

I specified all the classes separated by commas that use the border-radius property, and then added the behavior line (which is used only by IE Browsers)
Code: Select all
.inner, page-header, .forabg {
   behavior: url({T_TEMPLATE_PATH}/IEFix/PIE.htc);
}


I at first used "*" to specify all the CSS classes/ids, but i've been told that, that makes the page load slower as it has to process the PIE Script on all CSS elements.

The IEFix folder contains the PIE Files....
PIE.htc, PIE.js, PIE.php, PIE_uncompressed.htc, PIE_uncompressed.js
Previous username: TheKiller
Avatar on Memberlist 1.0.3
User avatar
Dragosvr92
Registered User
 
Posts: 358
Joined: Tue May 31, 2011 12:08 pm
Location: Romania

Re: [RFC] Rounded corners via css

Postby naderman » Thu Jan 19, 2012 1:46 pm

DavidIQ wrote:
Unknown Bliss wrote:You say that but look at IE6 after 10 years...

Well yes but at least Microsoft has taken steps to correct this by forcing the Internet Explorer update through Automatic Updates. There's really nothing some user can do if they're using Windows XP and they're stuck using IE other than use IE8.

Use Chrome frame?

I'd rather skip any IE specific workarounds like PIE, and just go with the CSS3 solution. Not having rounded corners is really not the end of the world.
www.naderman.de
Move your forum to Forumatic - we'll take care of maintenance & spam
User avatar
naderman
Development Team Leader
Development Team Leader
 
Posts: 1649
Joined: Sun Jan 11, 2004 2:11 am
Location: Karlsruhe, Germany

Re: [RFC] Rounded corners via css

Postby DavidIQ » Thu Jan 19, 2012 1:54 pm

naderman wrote:Use Chrome frame?
That's fine IF you can actually install software on your computer, which was my point.

naderman wrote:I'd rather skip any IE specific workarounds like PIE, and just go with the CSS3 solution. Not having rounded corners is really not the end of the world.
As long as it doesn't detract TOO much from the user experience then I totally agree, of course. If the site looks like it came from the 90's-era GeoCities then that's taking a step way back. :lol:
Image
User avatar
DavidIQ
MOD Team Leader
MOD Team Leader
 
Posts: 753
Joined: Thu Mar 02, 2006 4:29 pm
Location: Earth

Re: [RFC] Rounded corners via css

Postby Dragosvr92 » Thu Jan 19, 2012 5:26 pm

naderman wrote:Use Chrome frame?

I'd rather skip any IE specific workarounds like PIE, and just go with the CSS3 solution. Not having rounded corners is really not the end of the world.

1+
But maybe you should do the fallowing:
If Google Chrome Frame is not installed, you can direct your users to an installation page.
Previous username: TheKiller
Avatar on Memberlist 1.0.3
User avatar
Dragosvr92
Registered User
 
Posts: 358
Joined: Tue May 31, 2011 12:08 pm
Location: Romania

Re: [RFC] Rounded corners via css

Postby brunoais » Thu Jan 19, 2012 9:08 pm

TheKiller wrote:
naderman wrote:Use Chrome frame?

I'd rather skip any IE specific workarounds like PIE, and just go with the CSS3 solution. Not having rounded corners is really not the end of the world.

1+
But maybe you should do the fallowing:
If Google Chrome Frame is not installed, you can direct your users to an installation page.

nuff said! +5 for this, then.
If we can get symbols and other stuff made purely on HTML+CSS I believe we could get faster to load and render pages and lighter pages without the images and just some figures that almost take no space.
brunoais
Registered User
 
Posts: 626
Joined: Fri Dec 18, 2009 3:55 pm

Previous Next

Return to [3.1/Ascraeus] Merged RFCs

Who is online

Users browsing this forum: No registered users and 9 guests