Chromium Code Reviews| Index: chrome/browser/resources/settings/internet_page/network_property_list.html |
| diff --git a/chrome/browser/resources/settings/internet_page/network_property_list.html b/chrome/browser/resources/settings/internet_page/network_property_list.html |
| index 53176057b158e10ca0b5ee1d8cdca57c3f96a5cd..d50637295591db12757fcc6ee6e4bd6d556a7cd4 100644 |
| --- a/chrome/browser/resources/settings/internet_page/network_property_list.html |
| +++ b/chrome/browser/resources/settings/internet_page/network_property_list.html |
| @@ -13,10 +13,20 @@ |
| margin-bottom: -12px; |
| margin-top: -8px; |
| } |
| + |
| + /* Property lists are embedded; stretch the box and remove the padding. */ |
| + .settings-box { |
| + align-items: stretch; |
| + padding: 0; |
| + } |
| + |
| + .settings-box:first-of-type { |
|
michaelpg
2016/09/15 02:24:28
I suppose I've already argued my case, but it woul
stevenjb
2016/09/15 17:42:17
While I completely agree that we should not do thi
michaelpg
2016/09/15 21:35:16
No, this is my preferred solution! I was just lame
|
| + border-top: none; |
| + } |
| </style> |
| <template is="dom-repeat" items="[[fields]]" |
| filter="[[computeFilter_(propertyDict, editFieldTypes)]]"> |
| - <div class="settings-box single-column"> |
| + <div class="settings-box single-column two-line"> |
| <!-- Propety label --> |
| <div>[[getPropertyLabel_(item, prefix)]]</div> |
| <!-- Uneditable property value --> |