index.html 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>Ext JS 4 Themes</title>
  5. <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />
  6. <!-- GC -->
  7. <script type="text/javascript" src="../../ext-all.js"></script>
  8. <script type="text/javascript" src="../../locale/ext-lang-zh_CN.js"></script>
  9. <script type="text/javascript" src="themes.js"></script>
  10. <style>
  11. .add16 {
  12. background-image: url(../shared/icons/fam/add.png);
  13. }
  14. h1 a:link, h1 a:visited {
  15. color: #046BCA;
  16. }
  17. h1 a:hover, h1 a:focus, h1 a:active {
  18. color: #1C417C;
  19. }
  20. div#header {
  21. height: 65px;
  22. padding: 25px 0 10px 0;
  23. width: 1090px;
  24. margin: 0 50px -5px 50px;
  25. }
  26. #main-container {
  27. margin-left: 30px;
  28. }
  29. div#header h1 {
  30. font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  31. font-size: 24px;
  32. font-weight: 600;
  33. }
  34. form#styleswitcher {
  35. background-color: #f3f3f3;
  36. background-color: rgba(243,243,243,.333);
  37. border: 1px solid #ddd;
  38. border-color: rgba(221,221,221,.333);
  39. border-radius: 8px;
  40. -moz-border-radius: 8px;
  41. -ms-border-radius: 8px;
  42. -o-border-radius: 8px;
  43. -webkit-border-radius: 8px;
  44. float: right;
  45. padding: 8px 10px;
  46. width: auto;
  47. }
  48. form#styleswitcher select {
  49. font-size: 13px;
  50. line-height: 13px;
  51. }
  52. div#header h1 span {
  53. color: inherit;
  54. font-family: Helvetica, Arial, sans-serif;
  55. font-size: 13px;
  56. font-weight: normal;
  57. line-height: 30px;
  58. padding-left: 25px;
  59. }
  60. body {
  61. padding-bottom:10px;
  62. }
  63. </style>
  64. </head>
  65. <body>
  66. <div id="header">
  67. <form id="styleswitcher">
  68. <label for="styleswitcher_select">Choose Theme: </label>
  69. <select name="styleswitcher_select" id="styleswitcher_select">
  70. <option value="index.html" selected="true">Classic Theme</option>
  71. <option value="index-gray.html">Gray Theme</option>
  72. <option value="index-access.html">Accessibility Theme</option>
  73. </select>
  74. </form>
  75. <h1>Ext JS Themes <span>View and test every Ext component against bundled <a href="http://www.sencha.com/products/extjs/themes/">Ext Themes</a>, or, your own custom themes.</span></h1>
  76. </div>
  77. </body>
  78. </html>