OLD | NEW |
1 /* | 1 /* |
2 Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. | 4 found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 | 7 |
8 /* Dev */ | 8 /* Dev */ |
9 | 9 |
10 .dev-open { | 10 .dev-open { |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 for users who click, by hiding some focus outlines when the user | 64 for users who click, by hiding some focus outlines when the user |
65 clicks anywhere, but showing them when the user presses any key. */ | 65 clicks anywhere, but showing them when the user presses any key. */ |
66 body.hide-some-focus-outlines .extension-zippy-container { | 66 body.hide-some-focus-outlines .extension-zippy-container { |
67 outline: none; | 67 outline: none; |
68 } | 68 } |
69 | 69 |
70 /**************************************************************************/ | 70 /**************************************************************************/ |
71 /* TODO(estade): rules above this line are old and should probably be | 71 /* TODO(estade): rules above this line are old and should probably be |
72 * retired.*/ | 72 * retired.*/ |
73 | 73 |
74 body { | |
75 color: rgb(151, 156, 160); | |
76 margin-left: 27px; | |
77 } | |
78 | |
79 .extension-list-item-wrapper { | 74 .extension-list-item-wrapper { |
80 margin: 23px 0; | 75 margin: 23px 0; |
81 } | 76 } |
82 | 77 |
83 .extension-list-item { | 78 .extension-list-item { |
84 background-repeat: no-repeat; | 79 background-repeat: no-repeat; |
85 display: -webkit-box; | 80 display: -webkit-box; |
86 min-height: 48px; | 81 min-height: 48px; |
87 } | 82 } |
88 | 83 |
89 html[dir="rtl"] .extension-list-item { | 84 html[dir="rtl"] .extension-list-item { |
90 background-position: right; | 85 background-position: right; |
91 } | 86 } |
92 | 87 |
93 .extension-title { | 88 .extension-title { |
94 -webkit-padding-end: 20px; | 89 -webkit-padding-end: 20px; |
95 color: rgb(48, 57, 66); | 90 color: rgb(48, 57, 66); |
96 font-size: 14px; | 91 font-size: 14px; |
97 font-weight: 500; | 92 font-weight: 500; |
98 } | 93 } |
99 | 94 |
100 .extension-version { | 95 .extension-version { |
101 -webkit-padding-end: 7px; | 96 -webkit-padding-end: 7px; |
102 font-size: 13px; | 97 font-size: 13px; |
103 font-weight: 400; | 98 font-weight: 400; |
104 } | 99 } |
105 | 100 |
106 .extension-description { | 101 .extension-description { |
107 -webkit-padding-end: 5px; | 102 -webkit-padding-end: 5px; |
| 103 color: rgb(151, 156, 160); |
108 font-size: 13px; | 104 font-size: 13px; |
109 margin: 5px 0; | 105 margin: 5px 0; |
110 white-space: normal; | 106 white-space: normal; |
111 } | 107 } |
112 | 108 |
113 .extension-details { | 109 .extension-details { |
114 -webkit-box-flex: 1; | 110 -webkit-box-flex: 1; |
115 -webkit-padding-start: 55px; | 111 -webkit-padding-start: 55px; |
116 } | 112 } |
117 | 113 |
(...skipping 27 matching lines...) Expand all Loading... |
145 .trash { | 141 .trash { |
146 -webkit-transition: opacity 200ms; | 142 -webkit-transition: opacity 200ms; |
147 height: 22px; | 143 height: 22px; |
148 opacity: 0.8; | 144 opacity: 0.8; |
149 vertical-align: middle; | 145 vertical-align: middle; |
150 } | 146 } |
151 | 147 |
152 .extension-list-item:not(:hover) .trash:not(:focus) { | 148 .extension-list-item:not(:hover) .trash:not(:focus) { |
153 opacity: 0; | 149 opacity: 0; |
154 } | 150 } |
OLD | NEW |