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

Unified Diff: chrome/browser/resources/settings/settings_shared_css.html

Issue 2535573002: Reduce usage of webkit CSS prefixes in chrome/browser/resources (Closed)
Patch Set: CSSOM Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/settings_shared_css.html
diff --git a/chrome/browser/resources/settings/settings_shared_css.html b/chrome/browser/resources/settings/settings_shared_css.html
index 0f852d067ed7cbcdf75804a98e58a101b6c268c0..6f8849f45f14174ac253772a15dafc897d11b7a7 100644
--- a/chrome/browser/resources/settings/settings_shared_css.html
+++ b/chrome/browser/resources/settings/settings_shared_css.html
@@ -423,13 +423,13 @@
/* Provides the arrow which points at the anchor element. */
.search-bubble-innards::after {
- -webkit-transform: rotate(-45deg);
background-color: var(--paper-yellow-500);
content: '';
height: 10px;
left: 55px;
position: absolute;
top: -5px;
+ transform: rotate(-45deg);
width: 10px;
z-index: -1;
}
@@ -437,9 +437,9 @@
/* Turns the arrow direction downwards, when the bubble is placed above
* the anchor element */
.search-bubble-innards.above::after {
- -webkit-transform: rotate(-135deg);
bottom: -5px;
top: auto;
+ transform: rotate(-135deg);
}
</style>
</template>

Powered by Google App Engine
This is Rietveld 408576698