diff options
author | arv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-08 21:27:21 +0000 |
---|---|---|
committer | arv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-08 21:27:21 +0000 |
commit | 03ac7747b8185a508ad89ff87f64c4e3b1c5a8d3 (patch) | |
tree | 2aa44093007195db1a330edf2079ddbe176bfe43 /chrome/browser/resources/ntp | |
parent | e40f5a0b82006e487aada4559c2704dc1211f041 (diff) | |
download | chromium_src-03ac7747b8185a508ad89ff87f64c4e3b1c5a8d3.zip chromium_src-03ac7747b8185a508ad89ff87f64c4e3b1c5a8d3.tar.gz chromium_src-03ac7747b8185a508ad89ff87f64c4e3b1c5a8d3.tar.bz2 |
Remove CSS vendor prefixes where not needed.
The following css properties where updated.
-webkit-background-size
-webkit-box-sizing
-webkit-border-radius
-webkit-border-top-left-radius
-webkit-border-top-right-radius
-webkit-border-bottom-left-radius
-webkit-border-bottom-right-radius
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/5672001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68637 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources/ntp')
-rw-r--r-- | chrome/browser/resources/ntp/apps.css | 2 | ||||
-rw-r--r-- | chrome/browser/resources/ntp/most_visited.css | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/resources/ntp/apps.css b/chrome/browser/resources/ntp/apps.css index 95d51f5..2d03d58 100644 --- a/chrome/browser/resources/ntp/apps.css +++ b/chrome/browser/resources/ntp/apps.css @@ -24,7 +24,7 @@ html.apps-promo-visible #apps-content { .app, .app[new=installed] { - -webkit-box-sizing: border-box; + box-sizing: border-box; -webkit-perspective: 400; border-radius: 10px; color: black; diff --git a/chrome/browser/resources/ntp/most_visited.css b/chrome/browser/resources/ntp/most_visited.css index 27f2958..44933b1 100644 --- a/chrome/browser/resources/ntp/most_visited.css +++ b/chrome/browser/resources/ntp/most_visited.css @@ -195,8 +195,8 @@ html[dir=rtl] .thumbnail-container > .title > div { .thumbnail-container:hover .thumbnail { border-color: hsl(213, 66%, 57%); -webkit-box-shadow: 0px 2px 2px hsla(0, 0%, 0%, 0); - -webkit-border-top-left-radius: 0; - -webkit-border-top-right-radius: 0; + border-top-left-radius: 0; + border-top-right-radius: 0; background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 0%, 0)), |