Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(270)

Side by Side Diff: chrome/browser/resources/history/history.css

Issue 2688353003: Remove webkit prefixes for transform and perspective in chrome/ styles (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 html[dir='rtl'] body.uber-frame > .page { 5 html[dir='rtl'] body.uber-frame > .page {
6 -webkit-margin-end: 0; 6 -webkit-margin-end: 0;
7 } 7 }
8 8
9 body.uber-frame > .page.big-topbar-page { 9 body.uber-frame > .page.big-topbar-page {
10 padding-top: 78px; 10 padding-top: 78px;
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 } 113 }
114 114
115 html[dir='rtl'] #range-today, 115 html[dir='rtl'] #range-today,
116 html[dir='rtl'] #range-previous, 116 html[dir='rtl'] #range-previous,
117 html[dir='rtl'] #range-next { 117 html[dir='rtl'] #range-next {
118 float: right; 118 float: right;
119 } 119 }
120 120
121 html[dir='rtl'] #range-next, 121 html[dir='rtl'] #range-next,
122 #range-previous { 122 #range-previous {
123 -webkit-transform: scalex(-1); 123 transform: scalex(-1);
124 } 124 }
125 125
126 html[dir='rtl'] #range-previous { 126 html[dir='rtl'] #range-previous {
127 -webkit-transform: scaleX(1); 127 transform: scaleX(1);
128 } 128 }
129 129
130 #range-today { 130 #range-today {
131 -webkit-margin-end: 10px; 131 -webkit-margin-end: 10px;
132 } 132 }
133 133
134 #range-today, 134 #range-today,
135 #range-previous, 135 #range-previous,
136 #range-next { 136 #range-next {
137 float: left; 137 float: left;
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
473 flex-shrink: 0; 473 flex-shrink: 0;
474 height: 16px; 474 height: 16px;
475 width: 16px; 475 width: 16px;
476 } 476 }
477 477
478 .site-domain button:hover { 478 .site-domain button:hover {
479 text-decoration: none; 479 text-decoration: none;
480 } 480 }
481 481
482 .site-domain-arrow { 482 .site-domain-arrow {
483 -webkit-transform: rotate(0); 483 -webkit-transition: transform 300ms linear;
484 -webkit-transition: -webkit-transform 300ms linear;
485 background: url(../disclosure_triangle_small.png) no-repeat; 484 background: url(../disclosure_triangle_small.png) no-repeat;
486 background-position: 5px 5px; 485 background-position: 5px 5px;
487 color: rgb(143, 143, 143); 486 color: rgb(143, 143, 143);
488 height: 21px; 487 height: 21px;
489 margin-right: 2px; 488 margin-right: 2px;
490 opacity: 0.58; 489 opacity: 0.58;
491 text-align: center; 490 text-align: center;
491 transform: rotate(0);
492 width: 21px; 492 width: 21px;
493 } 493 }
494 494
495 html[dir='rtl'] .site-domain-arrow { 495 html[dir='rtl'] .site-domain-arrow {
496 -webkit-transform: rotate(180deg); 496 transform: rotate(180deg);
497 } 497 }
498 498
499 html .expand .site-domain-arrow { 499 html .expand .site-domain-arrow {
500 -webkit-transform: rotate(90deg); 500 transform: rotate(90deg);
501 } 501 }
502 502
503 .entry .bookmark-section { 503 .entry .bookmark-section {
504 -webkit-margin-end: 3px; 504 -webkit-margin-end: 3px;
505 -webkit-margin-start: 8px; 505 -webkit-margin-start: 8px;
506 background: no-repeat center 506 background: no-repeat center
507 url(../../../../ui/webui/resources/images/star_small.png); 507 url(../../../../ui/webui/resources/images/star_small.png);
508 border: none; 508 border: none;
509 display: inline-block; 509 display: inline-block;
510 height: 15px; 510 height: 15px;
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
631 631
632 #action-menu[data-devicetype='phone']::before { 632 #action-menu[data-devicetype='phone']::before {
633 background-image: url(../../../../ui/webui/resources/images/smartphone.svg); 633 background-image: url(../../../../ui/webui/resources/images/smartphone.svg);
634 background-position: 14px center; 634 background-position: 14px center;
635 padding-left: 43px; 635 padding-left: 43px;
636 } 636 }
637 637
638 #action-menu[data-devicetype='tablet']::before { 638 #action-menu[data-devicetype='tablet']::before {
639 background-image: url(../../../../ui/webui/resources/images/tablet.svg); 639 background-image: url(../../../../ui/webui/resources/images/tablet.svg);
640 } 640 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698