| Index: ui/webui/resources/css/trash.css
|
| diff --git a/ui/webui/resources/css/trash.css b/ui/webui/resources/css/trash.css
|
| index fb06e9aa5b71e2cffc749ba2c96e17533471a96a..dfe66dc0c3ffe41738eaab3583e3dcf258e9a764 100644
|
| --- a/ui/webui/resources/css/trash.css
|
| +++ b/ui/webui/resources/css/trash.css
|
| @@ -29,7 +29,7 @@
|
|
|
| .trash > .lid {
|
| -webkit-transform-origin: -7% 100%;
|
| - -webkit-transition: -webkit-transform 150ms;
|
| + -webkit-transition: transform 150ms;
|
| height: 6px;
|
| width: 14px;
|
| }
|
| @@ -39,12 +39,12 @@ html[dir='rtl'] .trash > .lid {
|
| }
|
|
|
| .trash:-webkit-any(:focus, :hover, .open) > .lid {
|
| - -webkit-transform: rotate(-45deg);
|
| - -webkit-transition: -webkit-transform 250ms;
|
| + transform: rotate(-45deg);
|
| + -webkit-transition: transform 250ms;
|
| }
|
|
|
| html[dir='rtl'] .trash:-webkit-any(:focus, :hover, .open) > .lid {
|
| - -webkit-transform: rotate(45deg);
|
| + transform: rotate(45deg);
|
| }
|
|
|
| .trash > .can {
|
|
|