Copybara bot | be50d49 | 2023-11-30 00:16:42 +0100 | [diff] [blame] | 1 | <!doctype html> |
| 2 | <html lang="en"> |
| 3 | <head> |
| 4 | <meta charset="utf-8"> |
| 5 | <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 6 | <meta name="description" content="A front-end template that helps you build fast, modern mobile web apps."> |
| 7 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 8 | <title>chip test</title> |
| 9 | |
| 10 | <!-- Fonts --> |
| 11 | <link href='https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,thin,light,bolditalic,black,medium&lang=en' rel='stylesheet' type='text/css'> |
| 12 | <link href="https://fonts.googleapis.com/icon?family=Material+Icons" |
| 13 | rel="stylesheet"> |
| 14 | |
| 15 | <!-- Page styles --> |
| 16 | <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/0.0.1/prism.min.css"> |
| 17 | <link rel="stylesheet" href="../../material.min.css"> |
| 18 | <link rel="stylesheet" href="../../components/demos.css"> |
| 19 | <script src="../../material.min.js"></script> |
| 20 | |
| 21 | |
| 22 | <style> |
| 23 | |
| 24 | </style> |
| 25 | |
| 26 | </head> |
| 27 | <body> |
| 28 | |
| 29 | <div style="padding-top: 24px;"> |
| 30 | |
| 31 | |
| 32 | <!-- Basic Chip --> |
| 33 | <span class="mdl-chip"> |
| 34 | <span class="mdl-chip__text">Basic Chip</span> |
| 35 | </span> |
| 36 | <!-- Button Chip --> |
| 37 | <button type="button" class="mdl-chip"> |
| 38 | <span class="mdl-chip__text">Button Chip</span> |
| 39 | </button> |
| 40 | <!-- Contact Chip --> |
| 41 | <span class="mdl-chip mdl-chip--contact"> |
| 42 | <span class="mdl-chip__contact mdl-color--teal mdl-color-text--white">A</span> |
| 43 | <span class="mdl-chip__text">Contact Chip</span> |
| 44 | </span> |
| 45 | |
| 46 | <!-- Deletable Contact Chip --> |
| 47 | <span class="mdl-chip mdl-chip--contact mdl-chip--deletable"> |
| 48 | <img class="mdl-chip__contact" src="/templates/dashboard/images/user.jpg"></img> |
| 49 | <span class="mdl-chip__text">Deletable Contact Chip</span> |
| 50 | <a href="#" class="mdl-chip__action"><i class="material-icons">cancel</i></a> |
| 51 | </span> |
| 52 | <!-- Deletable Chip --> |
| 53 | <span class="mdl-chip mdl-chip--deletable"> |
| 54 | <span class="mdl-chip__text">Deletable Chip</span> |
| 55 | <button type="button" class="mdl-chip__action"><i class="material-icons">cancel</i></button> |
| 56 | </span> |
| 57 | |
| 58 | </div> |
| 59 | <!-- Built with love using Material Design Lite --> |
| 60 | |
| 61 | |
| 62 | <script> |
| 63 | |
| 64 | </script> |
| 65 | </body> |
| 66 | </html> |