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

Side by Side Diff: chrome/browser/resources/bluetooth_internals/bluetooth_internals.css

Issue 2627243002: bluetooth: Add control for reading/writing of characteristics to internals page. (Closed)
Patch Set: Merge upstream, add comment detail for type converter Created 3 years, 10 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
OLDNEW
1 /* Copyright 2016 The Chromium Authors. All rights reserved. 1 /* Copyright 2016 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 5
6 :root { 6 :root {
7 --expandable-list-item-border: 1px solid gray; 7 --expandable-list-item-border: 1px solid gray;
8 --fade-duration: 225ms; 8 --fade-duration: 225ms;
9 --header-height: 48px; 9 --header-height: 48px;
10 --md-timing-function: cubic-bezier(.4, 0, .6, 1); 10 --md-timing-function: cubic-bezier(.4, 0, .6, 1);
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 .flex { 392 .flex {
393 display: flex; 393 display: flex;
394 } 394 }
395 } 395 }
396 396
397 /* Device Details Page */ 397 /* Device Details Page */
398 .device-details-page section, 398 .device-details-page section,
399 .info-container fieldset { 399 .info-container fieldset {
400 -webkit-margin-start: 1em; 400 -webkit-margin-start: 1em;
401 } 401 }
402
403 /* Value Control */
404 .value-control > div {
405 display: flex;
406 margin: 4px 0;
407 }
408
409 .value-control > div > input {
410 flex-grow: 1;
411 }
412
413 .value-control > div:nth-of-type(2) {
414 justify-content: flex-end;
415 }
OLDNEW
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/bluetooth_internals/bluetooth_internals.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698