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

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: rebase 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 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 2cc33ce5ac0f6a9b511c53678c2e3909f599124b..61a8dbecf535c7af670bb344c910625b2266f80b 100644
--- a/chrome/browser/resources/settings/settings_shared_css.html
+++ b/chrome/browser/resources/settings/settings_shared_css.html
@@ -350,13 +350,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;
}
@@ -364,9 +364,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