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

Unified Diff: ui/webui/resources/css/tabs.css

Issue 2691883002: Uprefix CSS transitions in ui/ and chrome/ styles (Closed)
Patch Set: transitions only 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
« no previous file with comments | « ui/webui/resources/css/overlay.css ('k') | ui/webui/resources/css/trash.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/webui/resources/css/tabs.css
diff --git a/ui/webui/resources/css/tabs.css b/ui/webui/resources/css/tabs.css
index 1a8e975cdbe914a45b3d11000afc0a6d1309ab5f..018c6f1e06947197bbff5035e4eaa512e94ce513 100644
--- a/ui/webui/resources/css/tabs.css
+++ b/ui/webui/resources/css/tabs.css
@@ -29,7 +29,6 @@ tabs.new-style-tabs {
tabs > * {
-webkit-margin-start: 5px;
- -webkit-transition: border-color 150ms, background-color 150ms;
background: rgba(160, 160, 160, .3);
border: 1px solid rgba(160, 160, 160, .3);
border-bottom: 0;
@@ -40,17 +39,18 @@ tabs > * {
min-width: 4em;
padding: 2px 10px;
text-align: center;
+ transition: border-color 150ms, background-color 150ms;
}
tabs.new-style-tabs > * {
-webkit-margin-start: 0;
- -webkit-transition: none;
background: #fbfbfb;
border: 1px solid #fbfbfb;
border-bottom: 0;
border-radius: 0;
min-width: 0;
padding: 4px 9px 4px 10px;
+ transition: none;
}
tabs > :not([selected]) {
@@ -72,11 +72,11 @@ tabs.new-style-tabs > :not([selected]):hover {
}
tabs > [selected] {
- -webkit-transition: none;
background: white;
border-color: rgb(160, 160, 160);
margin-bottom: -1px;
position: relative;
+ transition: none;
z-index: 0;
}
« no previous file with comments | « ui/webui/resources/css/overlay.css ('k') | ui/webui/resources/css/trash.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698