OLD | NEW |
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 .language-options { | 5 .language-options { |
6 display: -webkit-box; | 6 display: -webkit-box; |
7 margin: 10px 0; | 7 margin: 10px 0; |
8 } | 8 } |
9 | 9 |
10 .language-options-lower-left button, | 10 .language-options-lower-left button, |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 border-top-color: transparent; | 115 border-top-color: transparent; |
116 box-sizing: border-box; | 116 box-sizing: border-box; |
117 display: none; | 117 display: none; |
118 height: 8px; | 118 height: 8px; |
119 overflow: hidden; | 119 overflow: hidden; |
120 pointer-events: none; | 120 pointer-events: none; |
121 position: fixed; | 121 position: fixed; |
122 z-index: 10; | 122 z-index: 10; |
123 } | 123 } |
124 | 124 |
125 <if expr="is_macosx"> | |
126 .language-options[enabled='false'] #language-options-details { | |
127 display: none; | |
128 } | |
129 | |
130 .language-options[enabled='false'] #language-options-languages { | |
131 background-color: transparent !important; | |
132 } | |
133 </if> | |
134 | |
135 /* TODO(kochi): This is temporary copy from new_tab.css */ | 125 /* TODO(kochi): This is temporary copy from new_tab.css */ |
136 /* Notification */ | 126 /* Notification */ |
137 | 127 |
138 #notification { | 128 #notification { |
139 -webkit-transition: opacity 150ms; | 129 -webkit-transition: opacity 150ms; |
140 background-color: hsl(52, 100%, 80%); | 130 background-color: hsl(52, 100%, 80%); |
141 border: 1px solid rgb(211, 211, 211); | 131 border: 1px solid rgb(211, 211, 211); |
142 border-radius: 6px; | 132 border-radius: 6px; |
143 color: black; | 133 color: black; |
144 display: table; | 134 display: table; |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 } | 182 } |
193 | 183 |
194 /* TODO(hshi): Remove this temporary hack once the bug is fixed in Chrome. */ | 184 /* TODO(hshi): Remove this temporary hack once the bug is fixed in Chrome. */ |
195 #add-language-overlay-language-list { | 185 #add-language-overlay-language-list { |
196 width: -webkit-calc(100% - 4px); | 186 width: -webkit-calc(100% - 4px); |
197 } | 187 } |
198 | 188 |
199 .standalone-link-button { | 189 .standalone-link-button { |
200 padding: 0; | 190 padding: 0; |
201 } | 191 } |
OLD | NEW |