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

Side by Side Diff: chrome/browser/resources/extensions/extensions.css

Issue 196413028: Promote Apps Developer Tools in the chrome:extensions page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nits Created 6 years, 8 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
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 html.loading * { 5 html.loading * {
6 -webkit-transition-duration: 0 !important; 6 -webkit-transition-duration: 0 !important;
7 } 7 }
8 8
9 html:not(.focus-outline-visible) 9 html:not(.focus-outline-visible)
10 :enabled:focus:-webkit-any(input[type='checkbox'], input[type='radio']) { 10 :enabled:focus:-webkit-any(input[type='checkbox'], input[type='radio']) {
(...skipping 23 matching lines...) Expand all
34 34
35 #dev-controls .buttons-container { 35 #dev-controls .buttons-container {
36 display: -webkit-box; 36 display: -webkit-box;
37 padding-top: 13px; 37 padding-top: 13px;
38 } 38 }
39 39
40 #dev-controls button { 40 #dev-controls button {
41 white-space: nowrap; 41 white-space: nowrap;
42 } 42 }
43 43
44 #apps-developer-tools-promo {
45 -webkit-margin-before: 15px;
46 -webkit-padding-before: 5px;
47 align-items: center;
48 border-top: 1px solid #eee;
49 display: flex;
50 font-size: 13px;
51 }
52
53 #apps-developer-tools-promo img {
54 content: url(apps_developer_tools_promo_48.png);
55 }
56
57 #apps-developer-tools-promo-text,
58 #apps-developer-tools-promo-link {
59 -webkit-margin-start: 5px;
60 }
61
62 #apps-developer-tools-promo-close-wrapper {
63 display: flex;
64 flex-grow: 1;
65 justify-content: flex-end;
66 }
67
68 #apps-developer-tools-promo .close-button {
69 background: url(chrome://theme/IDR_CLOSE_DIALOG) no-repeat center center;
70 height: 14px;
71 width: 14px;
72 z-index: 1;
73 }
74
75 #apps-developer-tools-promo .close-button:hover {
76 background-image: url(chrome://theme/IDR_CLOSE_DIALOG_H);
77 }
78
79 #apps-developer-tools-promo .close-button:active {
80 background-image: url(chrome://theme/IDR_CLOSE_DIALOG_P);
81 }
82
44 #extension-settings.dev-mode #dev-controls { 83 #extension-settings.dev-mode #dev-controls {
45 -webkit-transition-duration: 250ms; 84 -webkit-transition-duration: 250ms;
46 height: 45px; 85 height: 45px;
47 opacity: 1; 86 opacity: 1;
48 padding-bottom: 7px; 87 padding-bottom: 7px;
49 } 88 }
50 89
90 #extension-settings.dev-mode.adt-promo #dev-controls {
91 height: 105px; /* Allow more height for the Apps Developer Tools promo. */
92 }
93
51 #dev-controls-spacer { 94 #dev-controls-spacer {
52 -webkit-box-flex: 1; 95 -webkit-box-flex: 1;
53 } 96 }
54 97
55 #dev-toggle { 98 #dev-toggle {
56 margin-top: 0; 99 margin-top: 0;
57 text-align: end; 100 text-align: end;
58 } 101 }
59 102
60 #extension-settings:not(.dev-mode) .developer-extras { 103 #extension-settings:not(.dev-mode) .developer-extras {
(...skipping 19 matching lines...) Expand all
80 123
81 #no-extensions-message { 124 #no-extensions-message {
82 font-weight: bold; 125 font-weight: bold;
83 } 126 }
84 127
85 #suggest-gallery { 128 #suggest-gallery {
86 -webkit-padding-start: 10px; 129 -webkit-padding-start: 10px;
87 } 130 }
88 131
89 #footer-section { 132 #footer-section {
90 background: url('chrome://theme/IDR_WEBSTORE_ICON_32') no-repeat left center; 133 background: url(chrome://theme/IDR_WEBSTORE_ICON_32) no-repeat left center;
91 font-size: 1.25em; 134 font-size: 1.25em;
92 } 135 }
93 136
94 html[dir=rtl] #footer-section { 137 html[dir=rtl] #footer-section {
95 background: url('chrome://theme/IDR_WEBSTORE_ICON_32') no-repeat right center; 138 background: url(chrome://theme/IDR_WEBSTORE_ICON_32) no-repeat right center;
96 } 139 }
97 140
98 #footer-section > a { 141 #footer-section > a {
99 -webkit-margin-start: 42px; 142 -webkit-margin-start: 42px;
100 line-height: 32px; 143 line-height: 32px;
101 } 144 }
102 145
103 .empty-extension-list { 146 .empty-extension-list {
104 height: 3em; 147 height: 3em;
105 } 148 }
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 } 353 }
311 354
312 /* Managed mode */ 355 /* Managed mode */
313 356
314 .page:not(.profile-is-managed) .profile-is-managed-banner, 357 .page:not(.profile-is-managed) .profile-is-managed-banner,
315 .profile-is-managed .more-extensions-link { 358 .profile-is-managed .more-extensions-link {
316 display: none; 359 display: none;
317 } 360 }
318 361
319 .profile-is-managed-banner .page-banner-text { 362 .profile-is-managed-banner .page-banner-text {
320 background-image: url('chrome://theme/IDR_WARNING'); 363 background-image: url(chrome://theme/IDR_WARNING);
321 } 364 }
322 365
323 /* Sideload Wipeout */ 366 /* Sideload Wipeout */
324 367
325 .sideload-wipeout-learn-more { 368 .sideload-wipeout-learn-more {
326 text-decoration: none; 369 text-decoration: none;
327 } 370 }
328 371
329 .sideload-wipeout-banner .page-banner-text { 372 .sideload-wipeout-banner .page-banner-text {
330 -webkit-padding-start: 8px; 373 -webkit-padding-start: 8px;
331 background-image: none; 374 background-image: none;
332 } 375 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698