diff options
Diffstat (limited to 'chrome/browser/resources/filebrowse.html')
-rw-r--r-- | chrome/browser/resources/filebrowse.html | 36 |
1 files changed, 6 insertions, 30 deletions
diff --git a/chrome/browser/resources/filebrowse.html b/chrome/browser/resources/filebrowse.html index e6fb44e..078b7a2 100644 --- a/chrome/browser/resources/filebrowse.html +++ b/chrome/browser/resources/filebrowse.html @@ -15,11 +15,7 @@ div.header { height: 32px; position: absolute; box-sizing: border-box; - background-image: -webkit-gradient(linear, - left top, - left bottom, - from(#D0DAF8), - to(#A6BAF7)); + background-image: -webkit-linear-gradient(#D0DAF8, #A6BAF7); border-bottom-color: #999; border-bottom-width: 1px; border-left-color: #999; @@ -55,11 +51,7 @@ div.header { border-top-width: 1px; padding-top: 6px; padding-left: 10px; - background-image: -webkit-gradient(linear, - left top, - left bottom, - from(#D0DAF8), - to(#A6BAF7)); + background-image: -webkit-linear-gradient(#D0DAF8, #A6BAF7); } .deleteYesNoContainer { display: -webkit-box; @@ -323,20 +315,12 @@ div.controlbutton { cursor: pointer; padding: 4px; padding-bottom: 0; - background: -webkit-gradient(linear, - left top, - left bottom, - from(#F4F6FB), - to(#CCD7F8)); + background: -webkit-linear-gradient(#F4F6FB, #CCD7F8); } div.controlbutton:hover { - background: -webkit-gradient(linear, - left top, - left bottom, - from(#FFF), - to(#D9E0F6)); + background: -webkit-linear-gradient(#FFF, #D9E0F6); } div.column { @@ -457,11 +441,7 @@ div.opencontainer { left: 0; height: 30px; position: absolute; - background-image: -webkit-gradient(linear, - 0% 0%, - 0% 90%, - from(#fcfcfc), - to(#eff1f2)); + background-image: -webkit-linear-gradient(#fcfcfc, #eff1f2 90%); } div.savecontainer { @@ -470,11 +450,7 @@ div.savecontainer { left: 0; height: 60px; position: absolute; - background-image: -webkit-gradient(linear, - 0% 0%, - 0% 90%, - from(#fcfcfc), - to(#eff1f2)); + background-image: -webkit-linear-gradient(#fcfcfc, #eff1f2 90%); } div.container { |