-moz specific styling without -webkit or CSS3

Bug #585968 reported by Evan Boldt
22
This bug affects 5 people
Affects Status Importance Assigned to Milestone
ubuntu-website-content
Fix Released
Medium
Anthony Dillon

Bug Description

The new site does not look nearly as good in chrome/ium

I'd think there should be -webkit and the plain CSS3 styling in there too.

Example:

#header-top {
  height: 64px;
  width: 976px;
  float: left;
  -moz-border-radius: 0px 0px 4px 4px;
}

would be

#header-top {
  height: 64px;
  width: 976px;
  float: left;
  -moz-border-radius: 0px 0px 4px 4px;
  -webkit-border-radius: 0px 0px 4px 4px;
  border-radius: 0px 0px 4px 4px;
}

Maybe -webkit isn't necessary, but the CSS3 lines should be a good idea, since it'll make Opera and most webkits work, and in the near future IE9.

Tags: css
Leo Iannacone (l3on)
Changed in ubuntu-website:
status: New → Confirmed
Revision history for this message
Adnane Belmadiaf (daker) wrote :

it should be like this :

.round {
       -moz-border-radius: 0px 0px 4px 4px;
       -webkit-border-radius: 0px 0px 4px 4px;
       -khtml-border-radius: 0px 0px 4px 4px;
       border-radius: 0px 0px 4px 4px;
}

then just call the class every time you want

Matthew Nuzum (newz)
affects: ubuntu-website → ubuntu-website-content
Revision history for this message
Inayaili de León (yaili) wrote :

Some versions of Webkit don't support shorthand yet. We have to add the -webkit- vendor extension corner by corner.

Changed in ubuntu-website-content:
milestone: none → feb2011
importance: Undecided → Medium
Changed in ubuntu-website-content:
assignee: nobody → Inayaili de León (yaili)
tags: added: css
Revision history for this message
Inayaili de León (yaili) wrote :

We've included these vendor specific properties in the new CSS, but will need to update the old CSS later on.

Changed in ubuntu-website-content:
milestone: feb2011 → may2011
Revision history for this message
Inayaili de León (yaili) wrote :

We'll need to revisit this after uploading the new CSS as some sections won't be updated now.

Changed in ubuntu-website-content:
milestone: may2011 → none
Changed in ubuntu-website-content:
assignee: Inayaili de León (yaili) → Anthony Dillon (ya-bo-ng)
status: Confirmed → In Progress
Revision history for this message
Anthony Dillon (ya-bo-ng) wrote :

Full work over of all CSS files to include all cross browser CSS3 syntax. I've committed and pushed the fix which will be released in the next cycle.

Changed in ubuntu-website-content:
status: In Progress → Fix Committed
Changed in ubuntu-website-content:
status: Fix Committed → Fix Released
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.