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

Side by Side Diff: chrome/browser/resources/settings/settings_shared_css.html

Issue 2237823003: Site Settings Desktop: Implement USB devices section. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
1 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> 1 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html">
2 <link rel="import" href="/settings_vars_css.html"> 2 <link rel="import" href="/settings_vars_css.html">
3 3
4 <!-- Common styles for Material Design settings. --> 4 <!-- Common styles for Material Design settings. -->
5 <dom-module id="settings-shared"> 5 <dom-module id="settings-shared">
6 <template> 6 <template>
7 <style include="cr-shared-style"> 7 <style include="cr-shared-style">
8 h2 { 8 h2 {
9 align-items: center; 9 align-items: center;
10 display: flex; 10 display: flex;
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 --paper-slider-pin-start-color: var(--google-blue-700); 337 --paper-slider-pin-start-color: var(--google-blue-700);
338 } 338 }
339 339
340 .favicon-image { 340 .favicon-image {
341 background-repeat: no-repeat; 341 background-repeat: no-repeat;
342 background-size: contain; 342 background-size: contain;
343 height: 16px; 343 height: 16px;
344 width: 16px; 344 width: 16px;
345 } 345 }
346 346
347 .site-settings-header {
348 -webkit-margin-start: 20px;
349 margin-bottom: 15px;
350 margin-top: 15px;
351 }
dschuyler 2016/08/11 23:28:07 If this is only used in site settings, please move
Finnur 2016/08/12 13:11:25 Sorry, I interpreted your words at our encounter i
dschuyler 2016/08/12 20:58:48 Oh, that's correct. If it's used in more places th
Finnur 2016/08/15 11:54:33 Fair enough. I'll leave it as is for now and if I
352
347 .search-bubble { 353 .search-bubble {
348 pointer-events: none; 354 pointer-events: none;
349 position: absolute; 355 position: absolute;
350 } 356 }
351 357
352 .search-bubble-innards { 358 .search-bubble-innards {
353 align-items: center; 359 align-items: center;
354 background-color: var(--paper-yellow-500); 360 background-color: var(--paper-yellow-500);
355 border-radius: 2px; 361 border-radius: 2px;
356 display: flex; 362 display: flex;
(...skipping 12 matching lines...) Expand all
369 top: 10px; 375 top: 10px;
370 width: 10px; 376 width: 10px;
371 } 377 }
372 378
373 .search-highlight-hit { 379 .search-highlight-hit {
374 background-color: var(--paper-yellow-500); 380 background-color: var(--paper-yellow-500);
375 } 381 }
376 </style> 382 </style>
377 </template> 383 </template>
378 </dom-module> 384 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698