Fix infinite recursion on hiding panel when created during fullscreen mode.
[chromium-blink-merge.git] / chrome / browser / resources / chromeos / nfc_debug.css
blobee23a5cb8d6017e302d0abc141708b33cf733c7f
1 /* Copyright 2014 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 */
6 body {
7 margin: 0
10 p {
11 white-space: pre-wrap;
14 label {
15 display: block;
18 h1 {
19 margin: 1%;
22 div.entity-div {
23 -webkit-box-shadow: 0 0 20px 2px #aaa;
24 box-shadow: 0 0 20px 2px #aaa;
25 display: inline-block;
26 margin: 10px 5px;
27 overflow: hidden;
28 padding: 10px;
29 vertical-align: top;
32 #nfc-adapter-info {
33 width: 165px;
36 #ndef-record-form {
37 width: 300px;
40 #nfc-tag-info,
41 #nfc-peer-info {
42 width: 270px;
43 word-wrap: break-word;
46 #ndef-record-form input {
47 width: 99%;
50 .parameters-table td {
51 padding: 0 10px 10px 0;
54 .transition-in {
55 -webkit-transition: opacity 250ms ease-in-out;
56 opacity: 1;
57 transition: opacity 250ms ease-in-out;
60 .transition-out {
61 -webkit-transition: opacity 250ms ease-in-out;
62 opacity: 0.25;
63 transition: opacity 250ms ease-in-out;
66 hr {
67 background: #888;
68 border: 0;
69 border-bottom: 1px dashed #ccc;
72 div.record-key-value-div {
73 margin-bottom: 10px;
76 span.record-key-span,
77 div.record-key-div {
78 font-style: italic;
79 font-weight: bold;
80 margin-right: 10px;
83 .record-value-div > * {
84 margin: 10px;