| Index: chrome/browser/resources/history/history.css
|
| diff --git a/chrome/browser/resources/history/history.css b/chrome/browser/resources/history/history.css
|
| index 1d4da44ec7672f5e199aa365134f0080816ce637..9d95abb6faac97382ace8eabfb79cdc8133b2930 100644
|
| --- a/chrome/browser/resources/history/history.css
|
| +++ b/chrome/browser/resources/history/history.css
|
| @@ -120,11 +120,11 @@ html[dir='rtl'] #range-next {
|
|
|
| html[dir='rtl'] #range-next,
|
| #range-previous {
|
| - -webkit-transform: scalex(-1);
|
| + transform: scalex(-1);
|
| }
|
|
|
| html[dir='rtl'] #range-previous {
|
| - -webkit-transform: scaleX(1);
|
| + transform: scaleX(1);
|
| }
|
|
|
| #range-today {
|
| @@ -287,11 +287,11 @@ html[dir='rtl'] #timeframe-controls input[type='radio']:first-of-type {
|
| }
|
|
|
| .site-results {
|
| - -webkit-transition: height 350ms ease-in-out;
|
| clear: left;
|
| margin: 0;
|
| overflow: hidden;
|
| padding: 0;
|
| + transition: height 350ms ease-in-out;
|
| }
|
|
|
| .site-results.grouped {
|
| @@ -381,12 +381,12 @@ html[dir='rtl'] .number-visits {
|
|
|
| .filter-status > div {
|
| flex: 0 0 auto;
|
| - -webkit-transition: background-color 150ms;
|
| border-radius: 3px;
|
| display: none;
|
| font-size: 11px;
|
| height: 14px;
|
| line-height: 12px;
|
| + transition: background-color 150ms;
|
| white-space: nowrap;
|
| }
|
|
|
| @@ -480,8 +480,6 @@ html[dir='rtl'] .number-visits {
|
| }
|
|
|
| .site-domain-arrow {
|
| - -webkit-transform: rotate(0);
|
| - -webkit-transition: -webkit-transform 300ms linear;
|
| background: url(../disclosure_triangle_small.png) no-repeat;
|
| background-position: 5px 5px;
|
| color: rgb(143, 143, 143);
|
| @@ -489,15 +487,17 @@ html[dir='rtl'] .number-visits {
|
| margin-right: 2px;
|
| opacity: 0.58;
|
| text-align: center;
|
| + transform: rotate(0);
|
| + transition: transform 300ms linear;
|
| width: 21px;
|
| }
|
|
|
| html[dir='rtl'] .site-domain-arrow {
|
| - -webkit-transform: rotate(180deg);
|
| + transform: rotate(180deg);
|
| }
|
|
|
| html .expand .site-domain-arrow {
|
| - -webkit-transform: rotate(90deg);
|
| + transform: rotate(90deg);
|
| }
|
|
|
| .entry .bookmark-section {
|
| @@ -541,8 +541,8 @@ html .expand .site-domain-arrow {
|
| }
|
|
|
| .fade-out {
|
| - -webkit-transition: opacity 200ms;
|
| opacity: 0;
|
| + transition: opacity 200ms;
|
| }
|
|
|
| button.menu-button.drop-down {
|
|
|