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

Unified Diff: chrome/browser/resources/about_conflicts.html

Issue 5640001: Polish the about:conflicts page.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years 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/about_conflicts.html
===================================================================
--- chrome/browser/resources/about_conflicts.html (revision 68156)
+++ chrome/browser/resources/about_conflicts.html (working copy)
@@ -143,6 +143,20 @@
margin-top: -1em;
margin-bottom: 1em;
}
+
+.clearing {
+ clear: left;
+ float: left;
+}
+
+html[dir=rtl] .clearing {
+ clear: right;
+ float: right;
+}
Nico 2010/12/03 18:51:01 does .extra-info-block > * { display:block; } wo
Finnur 2010/12/06 11:35:05 I tried many variations of this and couldn't get i
+
+.datacell {
+ border-bottom: 1px solid #aaa;
+}
</style>
<script>
@@ -245,31 +259,37 @@
<td valign="top">
<table cellpadding="2" cellspacing="0" border="0">
<tr jsselect="moduleList">
- <td valign="top">
+ <td valign="top" class="datacell">
<span dir="ltr"
- jsvalues=".innerHTML:description" class="nowrap"></span>
+ jsvalues=".innerHTML:description"
+ class="clearing nowrap"></span>
<div jsdisplay="status == 2 || status == 3"
- class="extra-info-text"><br>
- <span jsdisplay="status == 2"
- i18n-content="moduleSuspectedBad"
- class="suspected-bad">SUSPECTED_BAD</span>
- <span jsdisplay="status == 3"
- i18n-content="moduleConfirmedBad"
- class="confirmed-bad">CONFIRMED_BAD</span>
- <a jsdisplay="help_url.length &gt; 0"
- jsvalues=".href:help_url"><span
- i18n-content="helpCenterLink">HELP_CENTER</span></a>
- <span jsdisplay="possibleResolution.length &gt; 0"><br>
- <span jscontent="possibleResolution"
+ class="extra-info-text">
+ <span class="clearing">
+ <span jsdisplay="status == 2"
+ i18n-content="moduleSuspectedBad"
+ class="suspected-bad">SUSPECTED_BAD</span>
+ <span jsdisplay="status == 3"
+ i18n-content="moduleConfirmedBad"
+ class="confirmed-bad">CONFIRMED_BAD</span>
+ <a jsdisplay="help_url.length &gt; 0"
+ jsvalues=".href:help_url"><span
+ i18n-content="helpCenterLink">HELP_CENTER</span></a>
Nico 2010/12/03 18:51:01 do you need the span in the a, or can you put the
Finnur 2010/12/06 11:35:05 Nope, I don't need the span. Removed. Thanks. On
+ </span>
+ <span jsdisplay="possibleResolution.length &gt; 0">
+ <span jscontent="possibleResolution" class="clearing"
>POSSIBLE_RESOLUTION</span>
</span>
</div>
</td>
- <td valign="top"><span dir="ltr" jscontent="digital_signer"
+ <td valign="top" class="datacell"><span dir="ltr"
+ jscontent="digital_signer"
class="nowrap">SIGNER</span></td>
- <td valign="top"><span dir="ltr" jscontent="version"
- class="nowrap">VERSION</span></td>
- <td valign="top">
+ <td valign="top" class="datacell"><span dir="ltr"
+ jscontent="version"
+ class="nowrap">VERSION</span
+ ></td>
+ <td valign="top" class="datacell">
<span class="nowrap">
<span dir="ltr" jscontent="location">LOCATION</span><strong
><span dir="ltr" jscontent="name">NAME</span></strong>
« 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