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

Unified Diff: chrome/browser/resources/settings/search_engines_page/search_engine_entry.css

Issue 1713283002: MD Settings: Manage search engines, polish to match latest mocks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@extract_listener_behavior
Patch Set: again Created 4 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/search_engines_page/search_engine_entry.css
diff --git a/chrome/browser/resources/settings/search_engines_page/search_engine_entry.css b/chrome/browser/resources/settings/search_engines_page/search_engine_entry.css
index 0a643fef3ff5e58192fafe4a81bb4aceab2a239b..9d8e9b95175e978bf0a29dffda2ec16d9a6c4315 100644
--- a/chrome/browser/resources/settings/search_engines_page/search_engine_entry.css
+++ b/chrome/browser/resources/settings/search_engines_page/search_engine_entry.css
@@ -2,6 +2,10 @@
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
+:host([is-default]) {
+ font-weight: 500;
+}
+
.name-column,
.keyword-column {
flex: 3;
@@ -12,27 +16,27 @@
}
.url-column {
- flex: 3.5;
+ flex: 4;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.icon-container {
- flex: 1;
- margin: auto;
- text-align: center;
+ -webkit-margin-end: 8px;
+ flex: 0.5;
Dan Beam 2016/02/23 22:19:47 why is the icon flexing at all? that doesn't make
dpapad 2016/02/23 22:40:24 Removed. I was using display:flex in name-column,
+ text-align: left;
Dan Beam 2016/02/23 02:45:12 RTL?
dpapad 2016/02/23 21:27:04 Removed, this ended up being not needed. There are
}
.name {
- flex: 3;
+ flex: 3.5;
Dan Beam 2016/02/23 02:45:12 why are you using .5 here and previously?
dpapad 2016/02/23 21:27:04 For two reasons, 1) It seems to work in the dev co
Dan Beam 2016/02/23 22:08:38 right, but where are these widths coming from? be
margin: auto;
}
#container {
border-top: 1px solid lightgray;
display: flex;
- padding: 10px 0;
+ padding: 2px 0;
}
.dropdown-content {
@@ -43,3 +47,7 @@
paper-item:hover {
background-color: #f0f0f0;
}
+
+paper-icon-button {
+ -webkit-padding-end: 0;
+}

Powered by Google App Engine
This is Rietveld 408576698