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

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

Issue 2664503004: MD Settings: Make all HTML import href's relative. (Closed)
Patch Set: Fix wrong path. Created 3 years, 10 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 /* Included here so we don't have to include "iron-positioning" in every 8 /* Included here so we don't have to include "iron-positioning" in every
9 * stylesheet. See crbug.com/498405. */ 9 * stylesheet. See crbug.com/498405. */
10 [hidden] { 10 [hidden] {
11 display: none !important; 11 display: none !important;
12 } 12 }
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 /* Turns the arrow direction downwards, when the bubble is placed above 381 /* Turns the arrow direction downwards, when the bubble is placed above
382 * the anchor element */ 382 * the anchor element */
383 .search-bubble-innards.above::after { 383 .search-bubble-innards.above::after {
384 -webkit-transform: rotate(-135deg); 384 -webkit-transform: rotate(-135deg);
385 bottom: -5px; 385 bottom: -5px;
386 top: auto; 386 top: auto;
387 } 387 }
388 </style> 388 </style>
389 </template> 389 </template>
390 </dom-module> 390 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698