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

Unified Diff: chrome/browser/resources/history/history.css

Issue 544903002: history: update some deprecated flexbox CSS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/history/history.css
diff --git a/chrome/browser/resources/history/history.css b/chrome/browser/resources/history/history.css
index 95c5133ff450a5d7ee97bd6b037be9b067eacfc3..ef539b916f956c67b86e5815bb7b3478b40fc792 100644
--- a/chrome/browser/resources/history/history.css
+++ b/chrome/browser/resources/history/history.css
@@ -157,9 +157,9 @@ html[dir='rtl'] .display-filter-button {
}
#display-filter-controls label span {
- -webkit-align-items: flex-start;
-webkit-appearance: none;
-webkit-user-select: none;
+ align-items: flex-start;
background-color: buttonface;
background-image: -webkit-linear-gradient(rgb(237, 237, 237),
rgb(237, 237, 237) 38%,
@@ -246,9 +246,9 @@ html[dir='rtl'] #display-filter-controls label span.first-button-component,
.entry-box,
.site-domain-row {
- -webkit-align-items: center;
+ align-items: center;
cursor: default;
- display: -webkit-flex;
+ display: flex;
/* An odd line-height ensures a consistent baseline on all platforms. */
line-height: 1.75em;
margin-bottom: 6px;
@@ -260,7 +260,7 @@ html[dir='rtl'] #display-filter-controls label span.first-button-component,
.site-domain-wrapper {
cursor: pointer;
- display: -webkit-flex;
+ display: flex;
width: 100%;
}
@@ -366,7 +366,7 @@ html[dir='rtl'] .site-domain {
}
.filter-status > div {
- -webkit-flex: 0 0 auto;
+ flex: 0 0 auto;
-webkit-transition: background-color 150ms;
border-radius: 3px;
display: none;
@@ -429,11 +429,11 @@ html[dir='rtl'] .site-domain {
}
.entry-box-container {
- display: -webkit-flex;
+ display: flex;
}
.entry .visit-entry {
- display: -webkit-flex;
+ display: flex;
min-width: 0;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698