3 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
4 <title>Ext JS Themes Example</title>
6 <!-- Standard includes -->
7 <!-- <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" /> -->
8 <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all-notheme.css" />
9 <!-- <link rel="stylesheet" type="text/css" href="../../resources/css/xtheme-blue.css" /> -->
10 <script type="text/javascript" src="../../adapter/ext/ext-base.js"></script>
11 <script type="text/javascript" src="../../ext-all-debug.js"></script>
13 <!-- Theme includes -->
14 <link rel="stylesheet" type="text/css" title="blue" href="../../resources/css/xtheme-blue.css" />
15 <link rel="stylesheet" type="text/css" title="gray" href="../../resources/css/xtheme-gray.css" />
16 <link rel="stylesheet" type="text/css" title="access" href="../../resources/css/xtheme-access.css" />
17 <link rel="stylesheet" type="text/css" title="yourtheme" href="../../resources/css/yourtheme.css" />
19 By default, yourtheme.css is an exact copy of x-themeblue.css.
20 Customize your theme by editing yourtheme.css and customize your
21 own images in the images/yourtheme/ directory.
24 <script type="text/javascript" src="themes.js"></script>
25 <script type="text/javascript" src="styleswitcher.js"></script>
27 <style type="text/css">
29 .x-viewport, .x-viewport body {
33 font-family: Helvetica, Arial, sans-serif;
37 h1 a:link, h1 a:visited {
41 h1 a:hover, h1 a:focus, h1 a:active {
48 padding: 25px 0 10px 0;
52 font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
60 background-color: #f3f3f3;
61 background-color: rgba(243,243,243,.333);
62 border: 1px solid #ddd;
63 border-color: rgba(221,221,221,.333);
65 -moz-border-radius: 8px;
66 -ms-border-radius: 8px;
67 -o-border-radius: 8px;
68 -webkit-border-radius: 8px;
75 form#styleswitcher select {
81 font-family: Helvetica, Arial, sans-serif;
92 <form id="styleswitcher">
93 <label for="styleswitcher_select">Choose Theme: </label>
94 <select name="styleswitcher_select" id="styleswitcher_select">
95 <option value="blue" selected="true">Blue Theme</option>
96 <option value="gray">Gray Theme</option>
97 <option value="access">Accessibility Theme</option>
98 <option value="yourtheme">Your Theme</option>
101 <h1>Ext JS Themes <span>View and test every Ext component against bundled <a href="http://www.extjs.com/products/js/themes.php">Ext Themes</a>, or, your own custom themes.</span></h1>