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

Side by Side Diff: chrome/browser/resources/shared/css/tree.css

Issue 9794016: [webui] get rid of more html[os=] rules (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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 tree { 1 tree {
2 outline: none; 2 outline: none;
3 overflow: auto; 3 overflow: auto;
4 display: block; 4 display: block;
5 } 5 }
6 6
7 .tree-item > .tree-row { 7 .tree-item > .tree-row {
8 color: black; 8 color: black;
9 -webkit-user-select: none; 9 -webkit-user-select: none;
10 border: 1px solid rgba(255,255,255,0); /* transparent white */ 10 border: 1px solid rgba(255,255,255,0); /* transparent white */
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 color: black; 150 color: black;
151 outline: 1px solid black; 151 outline: 1px solid black;
152 } 152 }
153 153
154 .tree-item[editing] input { 154 .tree-item[editing] input {
155 /* Do not inherit the line-height */ 155 /* Do not inherit the line-height */
156 font-family: inherit; 156 font-family: inherit;
157 font-size: inherit; 157 font-size: inherit;
158 font-weight: inherit; 158 font-weight: inherit;
159 margin: -2px -8px -2px -3px; 159 margin: -2px -8px -2px -3px;
160 <if expr="not is_macosx">
161 outline: none;
162 </if>
160 padding: 1px 7px 1px 1px; 163 padding: 1px 7px 1px 1px;
161 } 164 }
162 165
163 html:not([os=mac]) .tree-item[editing] input {
164 outline: none;
165 }
166
167 html[dir=rtl] .tree-item[editing] input { 166 html[dir=rtl] .tree-item[editing] input {
168 margin: -2px -3px -2px -8px; 167 margin: -2px -3px -2px -8px;
169 padding: 1px 1px 1px 7px; 168 padding: 1px 1px 1px 7px;
170 } 169 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698