feed-viewer.html 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  4. <title id="page-title">MVC Feed Viewer</title>
  5. <link rel="stylesheet" type="text/css" href="../../../resources/css/ext-all.css">
  6. <!-- GC -->
  7. <!-- <x-compile> -->
  8. <!-- <x-bootstrap> -->
  9. <script type="text/javascript" src="../../../ext.js"></script>
  10. <!-- </x-bootstrap> -->
  11. <script type="text/javascript" src="app.js"></script>
  12. <!-- </x-compile> -->
  13. <style type="text/css" media="screen">
  14. /**
  15. * Icons
  16. */
  17. .summary {
  18. background-image: url(images/details.gif) !important;
  19. }
  20. .reading {
  21. background-image: url(images/article.gif) !important;
  22. }
  23. .post-go {
  24. background-image: url(images/post_go.gif) !important;
  25. }
  26. .tab-new {
  27. background-image: url(images/tab_new.gif) !important;
  28. }
  29. .feed-add {
  30. background-image: url(images/rss_add.gif) !important;
  31. }
  32. .feed-remove {
  33. background-image: url(images/rss_delete.gif) !important;
  34. }
  35. .feed-load {
  36. background-image: url(images/rss_load.gif) !important;
  37. }
  38. .details {
  39. background-image: url(images/details.gif) !important;
  40. }
  41. .open-all {
  42. background-image: url(images/tabs.gif) !important;
  43. }
  44. .feed {
  45. width: 16px;
  46. height: 16px;
  47. background-image: url(images/rss.gif) !important;
  48. }
  49. /**
  50. * Other styles
  51. */
  52. .feed-picker-url {
  53. float: left;
  54. width: 425px;
  55. }
  56. .feed-picker-title {
  57. /* float: left;*/
  58. color: #777;
  59. font-size: 10px;
  60. }
  61. .feed-list {
  62. padding: 0 3px 0 3px;
  63. }
  64. .feed-list-item {
  65. margin-top: 3px;
  66. padding-left: 20px;
  67. font-size: 11px;
  68. line-height: 20px;
  69. cursor: pointer;
  70. background: url(images/rss.gif) no-repeat 0 2px;
  71. border: 1px solid #fff;
  72. }
  73. .feed-list .x-item-selected {
  74. font-weight: bold;
  75. color: #15428B;
  76. background-color: #DFE8F6;
  77. border: 1px dotted #A3BAE9;
  78. }
  79. .feed-list-item-hover {
  80. background-color: #eee;
  81. }
  82. .topic {
  83. padding: 2px 0 0 20px;
  84. background:transparent url(images/post.gif) no-repeat;
  85. }
  86. .topic b {
  87. font-family: tahoma, verdana;
  88. display: block;
  89. color: #333;
  90. }
  91. .author {
  92. color: #333
  93. }
  94. .post-date {
  95. font-weight:bold;
  96. color:#333;
  97. }
  98. .feed-grid .x-grid-rowbody {
  99. margin: 5px 20px 10px 25px !important;
  100. color: #555;
  101. font-size: 11px;
  102. }
  103. /* Preview classes */
  104. .articlepreview .x-toolbar {
  105. border-top-width: 1px !important;
  106. }
  107. .preview .x-panel-body {
  108. background:#fff;
  109. color:#222;
  110. font:normal 12px tahoma,verdana,arial,sans-serif;
  111. }
  112. .preview .x-panel-body p {
  113. line-height:18px;
  114. margin:8px 0;
  115. }
  116. .preview .x-panel-body ul {
  117. margin-left:18px;
  118. }
  119. .preview .x-panel-body ul li {
  120. display:list-item;
  121. list-style-image:none !important;
  122. list-style-position:outside !important;
  123. list-style-type:disc !important;
  124. margin-left:18px;
  125. }
  126. .preview .x-panel-body pre, #preview .x-panel-body code {
  127. background:#f1f1f1;
  128. display:block;
  129. }
  130. .preview .x-panel-body h4.post-author {
  131. font-weight:normal;
  132. color:#555;
  133. font-size:11px;
  134. }
  135. .preview .x-panel-body span.post-date {
  136. font-weight:normal;
  137. color:#555;
  138. float:right;
  139. font-size:11px;
  140. }
  141. .preview .x-panel-body div.post-data {
  142. background:#f1f2f4;
  143. padding:5px;
  144. border-bottom:1px solid #dadadb;
  145. }
  146. .preview .x-panel-body div.post-body {
  147. padding:10px;
  148. }
  149. .x-tab-bar-body {
  150. border-width: 1px 1px 0 1px !important;
  151. }
  152. </style>
  153. </head>
  154. <body>
  155. </body>
  156. </html>