Home | History | Annotate | Download | only in ui
      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
      3  * found in the LICENSE file.
      4  */
      5 
      6 .x-list-view {
      7   -webkit-user-select: none;
      8   display: block;
      9 }
     10 .x-list-view:focus {
     11   outline: none;
     12 }
     13 
     14 .x-list-view * {
     15   -webkit-user-select: none;
     16 }
     17 
     18 .x-list-view > .list-item {
     19   padding: 2px 4px 2px 4px;
     20 }
     21 
     22 .x-list-view:focus > .list-item[selected] {
     23   background-color: rgb(171, 217, 202);
     24   outline: 1px dotted rgba(0,0,0,0.1);
     25   outline-offset: 0;
     26 }
     27 
     28 .x-list-view > .list-item[selected] {
     29   background-color: rgb(103, 199, 165);
     30 }
     31