Home | History | Annotate | Download | only in front_end
      1 /*
      2  * Copyright (c) 2014 The Chromium Authors. All rights reserved.
      3  * Use of this source code is governed by a BSD-style license that can be
      4  * found in the LICENSE file.
      5  */
      6 .devices {
      7     padding: 10px;
      8 }
      9 
     10 .devices-info {
     11     flex: none;
     12     padding-bottom: 10px;
     13 }
     14 
     15 .browser {
     16     align-items: baseline;
     17     display: flex;
     18     padding: 1px;
     19 }
     20 
     21 .browser button {
     22     white-space: nowrap;
     23     flex: none;
     24 }
     25 
     26 .device-header {
     27     align-items: baseline;
     28     display: flex;
     29     flex-flow: row wrap;
     30     padding: 2px 0;
     31 }
     32 
     33 .device-name {
     34     color: #222;
     35     font-size: 120%;
     36     font-weight: normal;
     37 }
     38 
     39 .device-serial {
     40     color: #888;
     41     font-size: 80%;
     42     margin-left: 6px;
     43     font-weight: normal;
     44 }
     45 
     46 .browser-name {
     47     overflow: hidden;
     48     padding-left: 20px;
     49     padding-right: 10px;
     50     flex: 0 1 250px;
     51     text-overflow: ellipsis;
     52     white-space: nowrap;
     53 }