Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Side by Side Diff: chrome/common/extensions/docs/examples/api/record/page_cycler/page_cycler.css

Issue 21854002: Remove experimental.record api completely (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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 body {
6 font-family:sans-serif;
7 font-size:85%;
8 }
9
10 .control-label {
11 margin-right:1em;
12 font-style:bold;
13 }
14
15 .url-list {
16 width:100%;
17 height:20em;
18 border: 1px solid;
19 }
20
21 .entry-field {
22 margin:10px;
23 }
24
25 .error-list-show {
26 color:red;
27 }
28
29 .error-list-hide {
30 display:none;
31 }
32
33 button,input {
34 }
35
36 .command-button {
37 position:relative;
38 top:2em;
39 text-align:center;
40 }
41
42 h1 {
43 text-align:center;
44 }
45
46 .dir-choice {
47 display:inline-block;
48 border: 1px solid;
49 width:40em;
50 }
51
52 .tab-menu {
53 position:absolute;
54 left:0;
55 width:15em;
56 }
57
58 .tab-label {
59 margin:1px;
60 padding:1px;
61 }
62
63 .enabled-tab-label {
64 border: 1px solid;
65 border-color:#888;
66 border-radius:2px;
67 background:#EFF;
68 }
69
70 .disabled-tab-label {
71 background-color:#FFF;
72 }
73
74 body, html, #page {
75 height:100%;
76 }
77
78 div#tab-navigator {
79 position:relative;
80 float:left;
81 width:19%;
82 }
83
84 div#tab-wrapper {
85 position:relative;
86 float:right;
87 width:79%;
88 }
89
90 .splitter {
91 position:relative;
92 float:left;
93 width:5px;
94 height:100%;
95 background-color:#CCC;
96 }
97
98 .tab {
99 position:absolute;
100 top:0px;
101 left:0px;
102 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698