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

Unified Diff: chrome/browser/resources/chromeos/login/bubble.css

Issue 11441008: [web_dev_style] Changing :pseudo-element to ::pseudo-element to match (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years 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/chromeos/login/bubble.css
diff --git a/chrome/browser/resources/chromeos/login/bubble.css b/chrome/browser/resources/chromeos/login/bubble.css
index 97d6535abf9b0a862f506201bc04db78f918ded7..a8bd2ede012ef325c028ef1292b840e1fa31e56b 100644
--- a/chrome/browser/resources/chromeos/login/bubble.css
+++ b/chrome/browser/resources/chromeos/login/bubble.css
@@ -16,7 +16,7 @@
position: absolute;
}
-.bubble:before {
+.bubble::before {
border-style: solid;
border-width: 8px;
content: '';
@@ -24,47 +24,47 @@
position: absolute;
}
-.bubble-top:before {
+.bubble-top::before {
border-color: rgba(0, 0, 0, 0.25) transparent transparent transparent;
bottom: -16px;
}
-html[dir=ltr] .bubble-top:before {
+html[dir=ltr] .bubble-top::before {
left: 17px;
}
-html[dir=rtl] .bubble-top:before {
+html[dir=rtl] .bubble-top::before {
right: 17px;
}
-html[dir=ltr] .bubble-right:before,
-html[dir=rtl] .bubble-left:before {
+html[dir=ltr] .bubble-right::before,
+html[dir=rtl] .bubble-left::before {
border-color: transparent rgba(0, 0, 0, 0.25) transparent transparent;
left: -16px;
top: 17px;
}
-.bubble-bottom:before {
+.bubble-bottom::before {
border-color: transparent transparent rgba(0, 0, 0, 0.25) transparent;
top: -16px;
}
-html[dir=ltr] .bubble-bottom:before {
+html[dir=ltr] .bubble-bottom::before {
left: 17px;
}
-html[dir=rtl] .bubble-bottom:before {
+html[dir=rtl] .bubble-bottom::before {
right: 17px;
}
-html[dir=ltr] .bubble-left:before,
-html[dir=rtl] .bubble-right:before {
+html[dir=ltr] .bubble-left::before,
+html[dir=rtl] .bubble-right::before {
border-color: transparent transparent transparent rgba(0, 0, 0, 0.25);
right: -16px;
top: 17px;
}
-.bubble:after {
+.bubble::after {
border-style: solid;
border-width: 8px;
content: '';
@@ -72,41 +72,41 @@ html[dir=rtl] .bubble-right:before {
position: absolute;
}
-.bubble-top:after {
+.bubble-top::after {
border-color: white transparent transparent transparent;
bottom: -15px;
}
-html[dir=ltr] .bubble-top:after {
+html[dir=ltr] .bubble-top::after {
left: 17px;
}
-html[dir=rtl] .bubble-top:after {
+html[dir=rtl] .bubble-top::after {
right: 17px;
}
-html[dir=ltr] .bubble-right:after,
-html[dir=rtl] .bubble-left:after {
+html[dir=ltr] .bubble-right::after,
+html[dir=rtl] .bubble-left::after {
border-color: transparent white transparent transparent;
left: -15px;
top: 17px;
}
-.bubble-bottom:after {
+.bubble-bottom::after {
border-color: transparent transparent white transparent;
top: -15px;
}
-html[dir=ltr] .bubble-bottom:after {
+html[dir=ltr] .bubble-bottom::after {
left: 17px;
}
-html[dir=rtl] .bubble-bottom:after {
+html[dir=rtl] .bubble-bottom::after {
right: 17px;
}
-html[dir=ltr] .bubble-left:after,
-html[dir=rtl] .bubble-right:after {
+html[dir=ltr] .bubble-left::after,
+html[dir=rtl] .bubble-right::after {
border-color: transparent transparent transparent white;
right: -15px;
top: 17px;
« no previous file with comments | « chrome/browser/resources/chromeos/about_os_credits.html ('k') | chrome/browser/resources/chromeos/login/oobe.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698