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

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

Issue 2640073004: bluetooth: Add descriptor list to DeviceDetailsPage on internals page. (Closed)
Patch Set: Add comment to differentiate descriptor return value Created 3 years, 11 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 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 .snackbar.error { 360 .snackbar.error {
361 background-color: rgb(244, 67, 54); 361 background-color: rgb(244, 67, 54);
362 } 362 }
363 363
364 .snackbar.open { 364 .snackbar.open {
365 opacity: 1; 365 opacity: 1;
366 transform: translate3d(0, 0, 0); 366 transform: translate3d(0, 0, 0);
367 visibility: visible; 367 visibility: visible;
368 } 368 }
369 369
370 /* Adapter Page */
371 @media screen and (min-width: 601px) {
372 #adapter {
373 display: flex;
374 }
375 }
376
377 /* Object Fieldset */ 370 /* Object Fieldset */
378 .object-fieldset .status { 371 .object-fieldset .status {
379 align-items: center; 372 align-items: center;
380 display: flex; 373 display: flex;
381 margin-bottom: 0.8em; 374 margin-bottom: 0.8em;
382 } 375 }
383 376
384 .object-fieldset .status div:first-child { 377 .object-fieldset .status div:first-child {
385 -webkit-margin-end: 1em; 378 -webkit-margin-end: 1em;
386 white-space: nowrap; 379 white-space: nowrap;
(...skipping 12 matching lines...) Expand all
399 .flex { 392 .flex {
400 display: flex; 393 display: flex;
401 } 394 }
402 } 395 }
403 396
404 /* Device Details Page */ 397 /* Device Details Page */
405 .device-details-page section, 398 .device-details-page section,
406 .info-container fieldset { 399 .info-container fieldset {
407 -webkit-margin-start: 1em; 400 -webkit-margin-start: 1em;
408 } 401 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698