Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / browser / resources / supervised_user_internals.css
blob97a8c205fb94a89bc2ebaaae0c85183ad951d7c4
1 /* Copyright 2015 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. */
5 #info {
6 -webkit-column-width: 350px;
9 #info > div {
10 -webkit-column-break-inside: avoid;
11 width: 350px;
14 #info h2 {
15 color: rgb(74, 142, 230);
16 font-size: 100%;
17 margin-bottom: 0;
20 #info .err {
21 color: red;
24 #info .section {
25 display: inline-block;
26 margin-left: auto;
27 margin-right: auto;
30 #info .section.hidden {
31 display: none;
34 .section-details {
35 width: 100%;
38 .section-details .detail,
39 .section-details .value {
40 width: 50%;
43 .section-details tr:nth-child(odd) {
44 background: rgb(239, 243, 255);
47 @-webkit-keyframes highlight1 {
48 0% {
49 background: rgb(255, 255, 0);
51 100% {
52 background: #fff;
56 @-webkit-keyframes highlight2 {
57 0% {
58 background: rgb(155, 158, 166);
60 100% {
61 background: rgb(239, 243, 255);
65 .section-details [highlighted] {
66 -webkit-animation-duration: 3s;
67 -webkit-animation-name: highlight1;
68 -webkit-animation-timing-function: linear;
71 .section-details [highlighted]:nth-child(odd) {
72 -webkit-animation-duration: 3s;
73 -webkit-animation-name: highlight2;
74 -webkit-animation-timing-function: linear;
77 .section-details .uninitialized {
78 color: #7f7f7f;
81 #filtering-results-container {
82 border: 1px solid;
83 height: 500px;
84 max-width: 500px;
85 overflow-y: auto;
88 .filtering-results-entry {
89 border: 2px outset;
90 padding: 0.5em;
93 .filtering-results-entry:hover {
94 background-color: #eee;
97 .filtering-results-entry .url {
98 font-weight: bold;
99 margin: 0.5em;
102 .filtering-results-entry .result {
103 margin: 0.5em;
106 .filtering-results-entry .reason {
107 margin: 0.5em;