cdm.css 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  1. div.cdmHeader img, div.cdmHeader input, div.cdmFooter img {
  2. vertical-align : middle;
  3. }
  4. div.cdmHeader, div.cdmFooter {
  5. display : table;
  6. }
  7. div.cdmHeader > * {
  8. display : table-cell;
  9. padding : 5px;
  10. }
  11. div.cdmFooter > * {
  12. display : table-cell;
  13. vertical-align : middle;
  14. }
  15. div.cdmHeader > div, div.cdmFooter > div {
  16. white-space : nowrap;
  17. }
  18. div.cdmHeader > span, div.cdmFooter > span.left {
  19. width : 100%;
  20. }
  21. div.cdmHeader span.updated {
  22. color : #555;
  23. font-weight : normal;
  24. font-size : 11px;
  25. white-space : nowrap;
  26. vertical-align : middle;
  27. }
  28. div.cdmHeader input {
  29. margin-right : 5px;
  30. }
  31. div.cdmHeader div.updPic {
  32. width : 25px;
  33. display : inline-block;
  34. text-align : center;
  35. }
  36. div.cdmHeader div.updPic img {
  37. vertical-align : middle;
  38. }
  39. div.cdmHeader img, div.cdmFooter img {
  40. margin : 0px 4px;
  41. }
  42. div.cdmHeader input {
  43. margin-left : 4px;
  44. margin-right : 4px;
  45. }
  46. div.cdmIntermediate {
  47. margin : 10px;
  48. }
  49. div.cdmContentInner {
  50. margin : 10px;
  51. line-height : 1.5;
  52. font-size : 16px;
  53. }
  54. div.cdmIntermediate img,
  55. div.cdmIntermediate video,
  56. div.cdmContentInner img,
  57. div.cdmContentInner video {
  58. border-width : 0px;
  59. max-width : 98%;
  60. height : auto;
  61. }
  62. div.cdmContentInner h1 {
  63. font-size : 16px;
  64. }
  65. div.cdmContentInner h2,
  66. div.cdmContentInner h3,
  67. div.cdmContentInner h4 {
  68. font-size : 15px;
  69. }
  70. div.cdmFooter {
  71. height : 30px;
  72. padding-left : 5px;
  73. font-weight : normal;
  74. color : #555;
  75. clear : both;
  76. }
  77. div.cdm {
  78. margin-right : 4px;
  79. }
  80. div.cdm.expanded {
  81. margin-top : 4px;
  82. margin-bottom : 4px;
  83. }
  84. div.cdm.expanded div.cdmFooter {
  85. border-style : solid;
  86. border-width : 0px 0px 1px 0px;
  87. border-color : #ddd;
  88. }
  89. div.cdm.expandable {
  90. background-color : #f0f0f0;
  91. border-width : 0px 0px 1px 0px;
  92. border-color : #ddd;
  93. border-style : solid;
  94. }
  95. div.cdm.expandable > hr {
  96. display : none;
  97. }
  98. div.cdm.expanded > hr {
  99. margin-top : 0px;
  100. margin-bottom : 0px;
  101. }
  102. div.cdm.expandable.Unread {
  103. background : white;
  104. }
  105. div.cdm.expandable.Selected {
  106. background : #f9fbff;
  107. }
  108. div.cdm.expandable.active {
  109. background : white ! important;
  110. }
  111. div.cdm.expandable div.cdmHeader span.titleWrap {
  112. white-space : nowrap;
  113. text-overflow : ellipsis;
  114. overflow : hidden;
  115. max-width : 500px;
  116. }
  117. div.cdm.expandable.active div.cdmHeader span.titleWrap {
  118. white-space : normal;
  119. }
  120. div.cdm.expandable div.cdmHeader a.title {
  121. font-weight : 600;
  122. color : #555;
  123. font-size : 14px;
  124. -webkit-transition : color 0.2s;
  125. transition : color 0.2s;
  126. text-rendering: optimizelegibility;
  127. font-family : "Segoe WP Semibold", "Segoe UI Semibold",
  128. "Segoe UI Web Semibold", "Segoe UI", Ubuntu, "DejaVu Sans", "Helvetica Neue",
  129. Helvetica, Arial, sans-serif;
  130. }
  131. div.cdm.expandable.Unread div.cdmHeader a.title {
  132. color : black;
  133. }
  134. div.cdm.expandable.active div.cdmHeader a.title {
  135. color : #0088cc;
  136. font-size : 16px;
  137. font-weight : 600;
  138. text-rendering: optimizelegibility;
  139. font-family : "Segoe WP Semibold", "Segoe UI Semibold",
  140. "Segoe UI Web Semibold", "Segoe UI", Ubuntu, "DejaVu Sans", "Helvetica Neue",
  141. Helvetica, Arial, sans-serif;
  142. }
  143. div.cdm.expanded div.cdmHeader {
  144. background : transparent ! important;
  145. }
  146. div.cdm.expanded div.cdmHeader a.title {
  147. font-size : 16px;
  148. color : #999;
  149. font-weight : 600;
  150. -webkit-transition : color 0.2s;
  151. transition : color 0.2s;
  152. text-rendering: optimizelegibility;
  153. font-family : "Segoe WP Semibold", "Segoe UI Semibold",
  154. "Segoe UI Web Semibold", "Segoe UI", Ubuntu, "DejaVu Sans", "Helvetica Neue",
  155. Helvetica, Arial, sans-serif;
  156. }
  157. div.cdm.expanded.active {
  158. background : white;
  159. }
  160. div.cdm.expanded.active div.cdmHeader a.title {
  161. color : #0088cc;
  162. }
  163. div.cdm.expanded.Unread div.cdmHeader a.title {
  164. color : black;
  165. }
  166. div.cdm.expanded div.cdmContent {
  167. color : #555;
  168. }
  169. div.cdm.expanded.Unread div.cdmContent {
  170. color : black;
  171. }
  172. div.cdm.active div.cdmContent {
  173. color : black;
  174. }
  175. span.cdmExcerpt {
  176. white-space : nowrap;
  177. font-size : 11px;
  178. color : #999;
  179. font-weight : normal;
  180. cursor : pointer;
  181. }
  182. div.cdmContent div.postEnclosures {
  183. margin-top : 1em;
  184. color : #555;
  185. }
  186. div.cdmFeedTitle {
  187. border-color : #0088cc;
  188. border-width : 0px 0px 1px 0px;
  189. border-style : solid;
  190. padding : 5px 3px 5px 5px;
  191. }
  192. div.cdmFeedTitle a.title {
  193. color : #555;
  194. font-weight : bold;
  195. }
  196. div.cdmFeedTitle a {
  197. color : #555;
  198. }
  199. div.cdmFeedTitle a:hover {
  200. color : #0088cc;
  201. }
  202. div.cdmHeader span.hlFeed {
  203. float : right;
  204. font-weight : normal;
  205. font-style : italic;
  206. }
  207. div.cdmHeader div.hlFeed, div.cdmHeader div.hlFeed a {
  208. vertical-align : middle;
  209. color : #555;
  210. font-weight : normal;
  211. font-style : italic;
  212. font-size : 11px;
  213. }
  214. div.cdm .hlFeed a {
  215. border-radius : 4px;
  216. display : inline-block;
  217. padding : 1px 4px 1px 4px;
  218. }
  219. div.cdmContentInner p {
  220. /*max-width : 650px;*/
  221. -webkit-hyphens: auto;
  222. -moz-hyphens: auto;
  223. hyphens: auto;
  224. }
  225. div.cdmContentInner iframe {
  226. min-width : 50%;
  227. max-width : 98%;
  228. }
  229. div.cdmHeader span.author {
  230. white-space : nowrap;
  231. color : #555;
  232. font-size : 11px;
  233. font-weight : normal;
  234. }
  235. div#floatingTitle {
  236. position : absolute;
  237. z-index : 5;
  238. top : 0px;
  239. right : 0px;
  240. left : 0px;
  241. border-color : #ddd;
  242. border-width : 0px 0px 1px 0px;
  243. border-style : solid;
  244. background : white;
  245. color : #555;
  246. box-shadow : 0px 1px 1px -1px rgba(0,0,0,0.1);
  247. }
  248. div#floatingTitle > * {
  249. display : table-cell;
  250. white-space : nowrap;
  251. vertical-align : middle;
  252. padding : 9px 5px;
  253. }
  254. div#floatingTitle img {
  255. margin-right : 4px;
  256. margin-left : 4px;
  257. }
  258. div#floatingTitle span.author {
  259. color : #555;
  260. font-size : 11px;
  261. font-weight : normal;
  262. }
  263. div#floatingTitle a.title {
  264. font-size : 16px;
  265. color : #999;
  266. -webkit-transition : color 0.2s;
  267. transition : color 0.2s;
  268. font-weight : 600;
  269. text-rendering: optimizelegibility;
  270. font-family : "Segoe WP Semibold", "Segoe UI Semibold",
  271. "Segoe UI Web Semibold", "Segoe UI", Ubuntu, "DejaVu Sans", "Helvetica Neue",
  272. Helvetica, Arial, sans-serif;
  273. }
  274. div#floatingTitle.Unread a.title {
  275. color : black;
  276. }
  277. div#floatingTitle img.anchor {
  278. margin-left : 0px;
  279. }
  280. div#floatingTitle div.hlFeed {
  281. padding-right : 10px;
  282. color : #555;
  283. font-weight : normal;
  284. font-style : italic;
  285. font-size : 11px;
  286. white-space : nowrap;
  287. }
  288. div#floatingTitle div.hlFeed a {
  289. border-radius : 4px;
  290. display : inline-block;
  291. padding : 1px 4px 1px 4px;
  292. }
  293. div#floatingTitle span.updated {
  294. padding-right : 10px;
  295. white-space : nowrap;
  296. color : #555;
  297. font-size : 11px;
  298. }
  299. div#floatingTitle div.hlFeed a {
  300. color : #555;
  301. }
  302. div#floatingTitle span.titleWrap {
  303. width : 100%;
  304. white-space : normal;
  305. }
  306. div#floatingTitle .dijit,
  307. div#floatingTitle img.hlScorePic {
  308. display : none;
  309. }
  310. .cdm.high .cdmHeader a.title.high, .cdm.high .cdmHeader .cdmExcerpt,
  311. .cdm.high .cdmHeader span.author {
  312. color : #00aa00;
  313. }
  314. .cdm.Unread.high .cdmHeader a.title.high, .cdm.Unread.high .cdmHeader .cdmExcerpt,
  315. .cdm.Unread.high .cdmHeader span.author {
  316. color : #00dd00;
  317. }
  318. .cdm .cdmHeader a.title.low, .cdm.low .cdmHeader .cdmExcerpt,
  319. .cdm.Unread .cdmHeader a.title.low, .cdm.Unread.low .cdmHeader .cdmExcerpt,
  320. .cdm.low .cdmHeader span.author {
  321. color : #909090;
  322. text-decoration : line-through;
  323. }
  324. div.cdmFeedTitle > * {
  325. display : table-cell;
  326. vertical-align : middle;
  327. }
  328. div.cdmFeedTitle a.title {
  329. width : 100%;
  330. }
  331. div.cdmFeedTitle a.catchup {
  332. text-align : right;
  333. color : #555;
  334. padding-right : 10px;
  335. font-size : 11px;
  336. white-space : nowrap;
  337. }
  338. div.cdmFeedTitle a.catchup:hover {
  339. color : #0088cc;
  340. }