Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
| 4 | 4 |
| 5 .autocomplete-results-table { | 5 .autocomplete-results-table { |
| 6 font-family: Arial, Helvetica, sans-serif; | |
|
Evan Stade
2012/07/26 03:56:21
the font stuff should be set via SetFontAndTextDir
mrossetti
2012/07/26 23:17:13
I'm sorry but I don't understand: are you saying t
Evan Stade
2012/07/27 00:04:42
they are wrong to do so, but they are older than S
mrossetti
2012/07/27 17:55:36
No problem. I removed the font stuff for now as it
| |
| 7 font-size: small; | |
| 6 margin-bottom: 1.5em; | 8 margin-bottom: 1.5em; |
| 7 } | 9 } |
| 8 | 10 |
| 9 .autocomplete-results-table th { | 11 .autocomplete-results-table th { |
| 10 background-color: #C0C0C0; | 12 background-color: #C0C0C0; |
| 11 } | 13 } |
| 12 | 14 |
| 13 .autocomplete-results-table td { | 15 .autocomplete-results-table td { |
| 14 background-color: #F0F0F0; | 16 background-color: #F0F0F0; |
| 15 } | 17 } |
| (...skipping 17 matching lines...) Expand all Loading... | |
| 33 margin: 0; | 35 margin: 0; |
| 34 } | 36 } |
| 35 | 37 |
| 36 .input-section { | 38 .input-section { |
| 37 margin-bottom: 1em; | 39 margin-bottom: 1em; |
| 38 } | 40 } |
| 39 | 41 |
| 40 .table-header { | 42 .table-header { |
| 41 white-space: nowrap; | 43 white-space: nowrap; |
| 42 } | 44 } |
| 45 | |
| 46 .diagnostic-property { | |
|
arv (Not doing code reviews)
2012/07/26 21:02:00
.diagnostic-property,
.diagnostic-value {
white-
mrossetti
2012/07/26 23:17:13
Done.
| |
| 47 white-space: nowrap; | |
| 48 } | |
| 49 | |
| 50 .diagnostic-value { | |
| 51 white-space: nowrap; | |
| 52 } | |
| OLD | NEW |