Home | History | Annotate | Download | only in extensions
      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 .extension-command-list-command-item-wrapper {
      6   margin-left: 12px;
      7 }
      8 
      9 .command-title {
     10   display: inline-block;
     11   margin-top: 1em;
     12 }
     13 
     14 .command-container {
     15   -webkit-box-orient: horizontal;
     16   display: -webkit-box;
     17   width: 450px;
     18 }
     19 
     20 .command-description {
     21   -webkit-box-flex: 1;
     22   display: -webkit-box;
     23   margin-top: 0.5em;
     24   min-height: 2em;
     25 }
     26 
     27 .command-shortcut-container {
     28   display: -webkit-box;
     29   margin-top: 0.25em;
     30   min-height: 2em;
     31 }
     32 
     33 .command-shortcut {
     34   border: solid 1px #BFBFBF;
     35   border-radius: 2px;
     36   color: rgb(48, 57, 66);
     37   display: inline-block;
     38   height: 1.4em;
     39   min-width: 12.5em;
     40   padding: 3px 0 1px 4px;
     41 }
     42 
     43 .command-shortcut-text {
     44   display: inline-block;
     45   height: 1.4em;
     46   min-width: 11em;
     47   outline: none;
     48 }
     49 
     50 .clearable {
     51   background: white;
     52 }
     53 
     54 .command-clear {
     55   float: right;
     56   margin-top: 1px;
     57 }
     58 
     59 .capturing {
     60   background: rgb(243, 244, 255);
     61   border: solid 1px rgb(140, 147, 255);
     62   color: #999;
     63 }
     64 
     65 .contains-chars {
     66   color: rgb(48, 57, 66);
     67 }
     68 
     69 .inactive-keybinding {
     70   color: #999;
     71 }
     72