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

Side by Side Diff: chrome/browser/resources/options/search_engine_manager.css

Issue 6303003: DOMUI Prefs: Implement inline editability for startup pages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: CSS tweak Created 9 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #searchEngineList { 1 #searchEngineList {
2 -webkit-border-radius: 2px; 2 -webkit-border-radius: 2px;
3 border-bottom: 1px solid #d9d9d9; 3 border-bottom: 1px solid #d9d9d9;
4 height: auto; 4 height: auto;
5 } 5 }
6 6
7 #searchEngineManagerPage .left-side-table { 7 #searchEngineManagerPage .left-side-table {
8 margin-top: 12px; 8 margin-top: 12px;
9 } 9 }
10 10
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 74
75 #searchEngineList .name-column :last-child { 75 #searchEngineList .name-column :last-child {
76 -webkit-box-flex: 1; 76 -webkit-box-flex: 1;
77 } 77 }
78 78
79 #searchEngineList input { 79 #searchEngineList input {
80 box-sizing: border-box; 80 box-sizing: border-box;
81 margin: 0; 81 margin: 0;
82 width: 100%; 82 width: 100%;
83 } 83 }
84
85 #searchEngineList .static-text {
86 overflow: hidden;
87 text-overflow: ellipsis;
88 white-space: nowrap;
89 }
90
91 #searchEngineList > :not([editing]) [editmode=true] {
92 display: none;
93 }
94
95 #searchEngineList > [editing] [editmode=false] {
96 display: none;
97 }
98
99 #searchEngineList input.invalid {
100 /* TODO(stuartmorgan): Replace with actual badging */
101 background-color: pink;
102 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698