Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.htm l"> | |
| 5 | |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-card/paper-ca rd.html"> | |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper- button.html"> | |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/typogr aphy.html"> | |
| 9 </head> | |
| 10 <body> | |
| 11 <dom-module id="cr-policy-group"> | |
|
stevenjb
2015/10/06 22:42:03
nit: We've been moving towards not using a cr- pre
fhorschig
2015/10/07 16:37:11
Done.
| |
| 12 <link rel="import" type="css" href="chrome://md-policy/cr_policy_group.css "> | |
| 13 <template> | |
| 14 <paper-card heading="[[riskTag]]" | |
| 15 aria-label="[[riskTag]]"> | |
|
stevenjb
2015/10/06 22:42:03
Use one line when everything fits.
When it doesn't
fhorschig
2015/10/07 16:37:11
Done.
| |
| 16 <div id="content" | |
| 17 class="card-content"></div> | |
| 18 <div class="card-actions"> | |
| 19 <paper-button>Unfold all</paper-button> | |
| 20 </div> | |
| 21 </paper-card> | |
| 22 </template> | |
| 23 <script src="chrome://md-policy/cr_policy_group.js"></script> | |
| 24 </dom-module> | |
| 25 </body> | |
| 26 </html> | |
| 27 | |
| OLD | NEW |