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

Side by Side Diff: chrome/browser/resources/options/language_options.css

Issue 8680003: Clean-up: Change chrome/browser's CSS time units from s to ms. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 .language-options { 1 .language-options {
2 display: -webkit-box; 2 display: -webkit-box;
3 margin: 10px 0; 3 margin: 10px 0;
4 } 4 }
5 5
6 .language-options-lower-left button, 6 .language-options-lower-left button,
7 .language-options-right button { 7 .language-options-right button {
8 min-width: 70px; 8 min-width: 70px;
9 } 9 }
10 10
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 padding: 7px 15px; 158 padding: 7px 15px;
159 white-space: nowrap; 159 white-space: nowrap;
160 display: table; 160 display: table;
161 /* Set the height and margin so that the element does not use any vertical 161 /* Set the height and margin so that the element does not use any vertical
162 space */ 162 space */
163 height: 16px; 163 height: 16px;
164 margin: -44px auto 12px auto; 164 margin: -44px auto 12px auto;
165 font-weight: bold; 165 font-weight: bold;
166 opacity: 0; 166 opacity: 0;
167 pointer-events: none; 167 pointer-events: none;
168 -webkit-transition: opacity .15s; 168 -webkit-transition: opacity 150ms;
169 z-index: 1; 169 z-index: 1;
170 color: black; 170 color: black;
171 } 171 }
172 172
173 #notification > * { 173 #notification > * {
174 display: table-cell; 174 display: table-cell;
175 max-width: 500px; 175 max-width: 500px;
176 overflow: hidden; 176 overflow: hidden;
177 text-overflow: ellipsis; 177 text-overflow: ellipsis;
178 } 178 }
179 179
180 #notification.show { 180 #notification.show {
181 opacity: 1; 181 opacity: 1;
182 pointer-events: all; 182 pointer-events: all;
183 -webkit-transition: opacity 1s; 183 -webkit-transition: opacity 1000ms;
184 } 184 }
185 185
186 #notification .link { 186 #notification .link {
187 cursor: pointer; 187 cursor: pointer;
188 text-decoration: underline; 188 text-decoration: underline;
189 -webkit-appearance: none; 189 -webkit-appearance: none;
190 border: 0; 190 border: 0;
191 background: none; 191 background: none;
192 color: rgba(0, 102, 204, 0.3); 192 color: rgba(0, 102, 204, 0.3);
193 -webkit-padding-start: 20px; 193 -webkit-padding-start: 20px;
(...skipping 24 matching lines...) Expand all
218 218
219 button[disabled].text-button, 219 button[disabled].text-button,
220 button[disabled].text-button:active, 220 button[disabled].text-button:active,
221 button[disabled].text-button:focus, 221 button[disabled].text-button:focus,
222 button[disabled].text-button:hover { 222 button[disabled].text-button:hover {
223 -webkit-box-shadow: none; 223 -webkit-box-shadow: none;
224 background: transparent none; 224 background: transparent none;
225 border-color: transparent; 225 border-color: transparent;
226 color: #AAA; 226 color: #AAA;
227 } 227 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698