tt-rss.css 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470
  1. body {
  2. background : white;
  3. color : black;
  4. margin : 0px;
  5. padding : 0px;
  6. font-family : "Lucida Grande", sans-serif;
  7. }
  8. blockquote {
  9. margin : 5px;
  10. border-width : 0px 0px 0px 4px;
  11. border-color : #f0f0f0;
  12. border-style : solid;
  13. padding : 2px 0px 2px 5px;
  14. }
  15. div.postReply {
  16. padding : 10px;
  17. }
  18. div.postReply a {
  19. color : #4684ff;
  20. }
  21. div.postReply a:hover {
  22. color : black;
  23. }
  24. div.postReply div.postHeader {
  25. background : #ecf4ff;
  26. border : 1px solid #88b0f0;
  27. }
  28. div.postReply > div.postHeader {
  29. padding : 5px;
  30. }
  31. div.postReply div.postContent {
  32. padding : 10px;
  33. font-size : 10pt;
  34. }
  35. div.postReply div.postIcon {
  36. float : right;
  37. border : 0px;
  38. margin : 10px 0px 10px 10px;
  39. }
  40. ul.feedList {
  41. list-style-type : none;
  42. margin : 5px;
  43. padding : 0px 0px 0px 5px;
  44. font-size : 9pt;
  45. font-family : "Lucida Grande", Tahoma, sans-serif;
  46. }
  47. ul.feedList li.feedCat {
  48. margin : 0px;
  49. padding : 3px 0px 3px 0px;
  50. color : #707070;
  51. font-size : 9pt;
  52. }
  53. ul.feedList li.feedCat a {
  54. color : #707070;
  55. }
  56. ul.feedList li.feedCat a:hover {
  57. color : #4684ff;
  58. }
  59. ul.feedCatList {
  60. list-style-type : none;
  61. margin : 0px 0px 0px 15px;
  62. padding : 0px;
  63. }
  64. ul.feedCatList li {
  65. margin : 0px;
  66. padding : 0px 0px 2px 0px;
  67. color : black;
  68. }
  69. ul.feedList li {
  70. margin : 0px;
  71. font-size : 10pt;
  72. }
  73. ul.feedCatList img {
  74. vertical-align : bottom;
  75. }
  76. li.feedUnread,
  77. li.errorUnread,
  78. li.labelUnread,
  79. li.virtUnread,
  80. li.tagUnread {
  81. font-weight : bold;
  82. }
  83. li.errorSelected a,
  84. li.error a,
  85. li.errorUnread a,
  86. li.errorUnreadSelected a {
  87. color : #f04040;
  88. }
  89. li.feedSelected a,
  90. li.labelSelected a,
  91. li.virtSelected a,
  92. li.tagSelected a {
  93. color : #4684ff;
  94. }
  95. li.feedUnreadSelected a,
  96. li.labelUnreadSelected a,
  97. li.virtUnreadSelected a,
  98. li.tagUnreadSelected a {
  99. color : #4684ff;
  100. }
  101. li.feedUnreadSelected,
  102. li.errorUnreadSelected,
  103. li.labelUnreadSelected,
  104. li.virtUnreadSelected,
  105. li.tagUnreadSelected {
  106. font-weight : bold;
  107. }
  108. li.feed {
  109. display : block;
  110. }
  111. ul.feedList img, img.tinyFeedIcon {
  112. margin : 0px 3px 0px 0px;
  113. width : 16px;
  114. height : 16px;
  115. border-width : 0px;
  116. }
  117. h1 {
  118. font-size : 16pt;
  119. }
  120. h2 {
  121. font-size : 14pt;
  122. font-weight : bold;
  123. border-width : 0px 0px 1px 0px;
  124. border-style : solid;
  125. border-color : #ecf4ff;
  126. }
  127. h3 {
  128. font-size : 12pt;
  129. font-weight : bold;
  130. border-width : 0px 0px 1px 0px;
  131. border-style : solid;
  132. border-color : #ecf4ff;
  133. }
  134. hr {
  135. border-width : 0px 0px 1px 0px;
  136. border-style : dashed;
  137. border-color : #e0e0e0;
  138. }
  139. a {
  140. color : black;
  141. text-decoration : none;
  142. }
  143. a:hover {
  144. color : #4684ff;
  145. }
  146. #piggie {
  147. width : 400;
  148. height : 400;
  149. right : 0;
  150. top : -400;
  151. background-color : white;
  152. display : none;
  153. z-index : 999;
  154. background-image : url("images/piggie.png");
  155. background-position : center center;
  156. background-repeat : no-repeat;
  157. position : absolute;
  158. border : 1px solid pink;
  159. margin-left : auto;
  160. margin-right : auto;
  161. -moz-border-radius : 10px;
  162. opacity : 0.8;
  163. }
  164. #iedit_title, #iedit_link, #iedit_regexp, #iedit_descr, #iedit_expr, #iedit_updintl,
  165. #iedit_purgintl, #iedit_ulogin, #iedit_ulevel, #iedit_match, #iedit_feed,
  166. #iedit_fcat, #iedit_filter_action, #iedit_login, #iedit_pass, #iedit_email,
  167. #iedit_parent_feed {
  168. width : 100%;
  169. padding-left : 2px;
  170. background-color : #f0fff0;
  171. }
  172. textarea.iedit {
  173. width : 100%;
  174. }
  175. input.iedit {
  176. width : 100%;
  177. padding-left : 2px;
  178. }
  179. select.iedit {
  180. width : 100%;
  181. }
  182. input.editbox {
  183. width : 200px;
  184. padding-left : 2px;
  185. }
  186. #notify {
  187. border-width : 1px;
  188. border-style : solid;
  189. top : 10px;
  190. right : 35%;
  191. min-width : 30%;
  192. position : absolute;
  193. display : none;
  194. float : right;
  195. font-size : 9pt;
  196. text-align : center;
  197. z-index : 999;
  198. -moz-border-radius : 2px;
  199. padding : 5px 5px 5px 5px;
  200. }
  201. .notify {
  202. border-color : #d7c47a;
  203. background-color : #fff7d5;
  204. color : black;
  205. }
  206. .notifyError {
  207. background-color : #ffcccc;
  208. border-color : #ff0000;
  209. color : black;
  210. }
  211. .notifyError span:hover {
  212. color : red;
  213. cursor : pointer;
  214. }
  215. #dispSwitch {
  216. font-size : 8pt;
  217. font-family : "Lucida Grande", Tahoma, sans-serif;
  218. text-align : right;
  219. float : right;
  220. margin : 5px 5px 0px 0px;
  221. }
  222. #dispSwitch a {
  223. color : gray;
  224. }
  225. #dispSwitch a:hover {
  226. color : #4684ff;
  227. }
  228. div.expPane {
  229. margin : 15px;
  230. }
  231. iframe {
  232. border : 0px solid white;
  233. }
  234. iframe.feedsFrameWithActions {
  235. width : 100%;
  236. height : 90%;
  237. margin : 0px;
  238. padding : 0px;
  239. }
  240. iframe.feedsFrame {
  241. width : 100%;
  242. height : 100%;
  243. margin : 0px;
  244. padding : 0px;
  245. }
  246. iframe.contentFrame, iframe.headlinesFrame {
  247. width : 100%;
  248. padding : 0px;
  249. margin : 0px;
  250. height : 100%;
  251. }
  252. /*.button {
  253. border : 1px solid #d0d0d0;
  254. background-image : url("images/button.png");
  255. background-position : top;
  256. background-repeat : repeat-x;
  257. background-color : white;
  258. color : black;
  259. }
  260. .button:hover {
  261. background : white;
  262. text-decoration : none;
  263. color : black;
  264. }
  265. .disabledButton {
  266. border : 1px solid #c0c0c0;
  267. background-color : white;
  268. color : gray;
  269. }
  270. a.button {
  271. padding : 2px 5px 2px 5px;
  272. font-size : small;
  273. } */
  274. .evenUnreadSelected, .evenSelectedUnread, .evenUnreadSelected td,
  275. .evenSelectedUnread td {
  276. background-color : #fff7d5;
  277. font-weight : bold;
  278. border-width : 1px 0px 1px 0px;
  279. border-style : solid;
  280. border-color : #e7d796;
  281. }
  282. .oddUnreadSelected, .oddSelectedUnread, .oddUnreadSelected td,
  283. .oddSelectedUnread td {
  284. background-color : #fff7d5;
  285. font-weight : bold;
  286. }
  287. .evenSelected, .evenSelected td {
  288. background-color : #fff7d5;
  289. border-width : 1px 0px 1px 0px;
  290. border-style : solid;
  291. border-color : #e7d796;
  292. }
  293. .oddSelected, .evenSelected td {
  294. background-color : #fff7d5;
  295. }
  296. .evenGrayed, .evenGrayed td {
  297. background-color : #f0f0f0;
  298. color : #909090;
  299. border-width : 1px 0px 1px 0px;
  300. border-style : solid;
  301. border-color : #c0c0c0;
  302. }
  303. .oddGrayed {
  304. color : #909090;
  305. }
  306. .even, .even td {
  307. border-width : 1px 0px 1px 0px;
  308. border-style : solid;
  309. border-color : #c0c0c0;
  310. background-color : #f0f0f0;
  311. }
  312. .evenUnread, .evenUnread td {
  313. background-color : #f0f0f0;
  314. font-weight : bold;
  315. border-width : 1px 0px 1px 0px;
  316. border-style : solid;
  317. border-color : #c0c0c0;
  318. }
  319. .oddUnread, .oddUnread td {
  320. font-weight : bold;
  321. }
  322. .invisible {
  323. display : none;
  324. }
  325. /* preferences */
  326. tr.title td {
  327. border-width : 0px 0px 1px 0px;
  328. border-color : #ecf4ff;
  329. border-style : solid;
  330. color : #4684ff;
  331. }
  332. tr.title td a {
  333. color : #4684ff;
  334. }
  335. tr.title td a:hover {
  336. color : black;
  337. }
  338. div.feedEditSearch {
  339. float : right;
  340. }
  341. table.prefFeedList td.feedEditCat {
  342. font-weight : bold;
  343. border-width : 0px 0px 1px 0px;
  344. border-style : solid;
  345. border-color : #88b0f0;
  346. padding-top : 0.5em;
  347. }
  348. table.prefFeedList td.feedIcon {
  349. text-align : center;
  350. }
  351. table.prefFeedList td.feedSelect {
  352. text-align : center;
  353. }
  354. div.prefFeedCatHolder {
  355. height : 250px;
  356. overflow : auto;
  357. border : 1px solid #88b0f0;
  358. margin : 5px 0px 5px 0px;
  359. }
  360. a.helpLink {
  361. color : #808080;
  362. }
  363. a.helpLink:hover {
  364. color : #4684ff;
  365. }
  366. div.helpResponse {
  367. margin : 10px;
  368. background-image : url("images/vgrad_light_rev2.png");
  369. background-position : top left;
  370. background-repeat : repeat-x;
  371. padding : 10px 20px 10px 20px;
  372. border : 1px solid #f0f0f0;
  373. }
  374. #infoBoxTitle {
  375. border-width : 1px 1px 1px 1px;
  376. border-style : solid;
  377. border-color : #88b0f0;
  378. background-color : #88b0f0;
  379. padding : 2px;
  380. color : white;
  381. }
  382. #infoBox {
  383. border-width : 1px 1px 1px 1px;
  384. border-style : solid;
  385. border-color : #88b0f0;
  386. position : relative;
  387. bottom : 2px;
  388. right : 2px;
  389. padding-bottom : 5px;
  390. background-image : url("images/prefs-content.png");
  391. background-position : top left;
  392. background-repeat : repeat-x;
  393. background-color : white;
  394. }
  395. #infoBoxShadow {
  396. background-image : url("images/shadow.png");
  397. left : 30%;
  398. top : 30%;
  399. width : 30%;
  400. z-index : 3;
  401. position : absolute;
  402. display : none;
  403. }
  404. div.infoBoxContents {
  405. padding : 10px;
  406. margin-bottom : 5px;
  407. font-size : 9pt;
  408. }
  409. div.infoBoxContents td {
  410. font-size : 9pt;
  411. }
  412. div.infoBoxContents a {
  413. color : #4684ff;
  414. }
  415. div.infoBoxContents a:hover {
  416. color : black;
  417. }
  418. div.helpResponse h1, div.infoBoxContents h1 {
  419. /* border-width : 0px 0px 1px 0px;
  420. border-style : solid;
  421. border-color : #c0c0c0; */
  422. font-size : 16pt;
  423. }
  424. div.helpResponse h2, div.infoBoxContents h2 {
  425. /* border-width : 0px 0px 0px 0px; */
  426. font-size : 12pt;
  427. }
  428. pre {
  429. margin : 5px;
  430. }
  431. input.extSearch {
  432. width : 100%;
  433. }
  434. div.firstTab {
  435. width : 10px;
  436. float : left;
  437. }
  438. div.prefsTab:hover {
  439. cursor : pointer;
  440. }
  441. div.prefsTabSelected:hover {
  442. cursor : pointer;
  443. }
  444. div.prefsTab {
  445. float : left;
  446. border-width : 1px 1px 0px 1px;
  447. border-color : #88b0f0;
  448. border-style : solid;
  449. margin : 0px 0px 0px 5px;
  450. padding : 3px 5px 3px 5px;
  451. font-size : 9pt;
  452. font-family : "Lucida Grande", Tahoma, sans-serif;
  453. position : relative;
  454. bottom : -2px;
  455. border-collapse : collapse;
  456. -moz-border-radius : 3px;
  457. min-width : 100px;
  458. text-align : center;
  459. }
  460. div.prefsTabSelected {
  461. float : left;
  462. border-width : 1px 1px 0px 1px;
  463. border-color : #88b0f0;
  464. border-style : solid;
  465. margin : 0px 0px 0px 5px;
  466. padding : 3px 5px 3px 5px;
  467. background-color : #ecf4ff;
  468. font-size : 9pt;
  469. font-family : "Lucida Grande", Tahoma, sans-serif;
  470. position : relative;
  471. bottom : -2px;
  472. border-collapse : collapse;
  473. -moz-border-radius : 3px;
  474. font-weight : bold;
  475. min-width : 100px;
  476. text-align : center;
  477. }
  478. div.warning {
  479. background : #fff7d5;
  480. border : 1px solid #d7c47a;
  481. padding : 5px;
  482. margin : 0px 0px 5px 0px;
  483. font-size : 9pt;
  484. }
  485. div.notice {
  486. background : #ffffff;
  487. border : 1px solid #88b0f0;
  488. padding : 5px;
  489. margin : 0px 0px 5px 0px;
  490. font-size : 9pt;
  491. }
  492. div.error {
  493. border : 1px solid #ff0000;
  494. background : #ffcccc;
  495. padding : 5px;
  496. margin : 0px 0px 5px 0px;
  497. font-size : 9pt;
  498. }
  499. ul.nomarks {
  500. list-style-type : none;
  501. margin : 0px;
  502. padding : 10px;
  503. }
  504. div.prefHelp, td.prefHelp {
  505. color : gray;
  506. padding : 5px;
  507. }
  508. table.loginForm {
  509. background-color : #ecf4ff;
  510. }
  511. table.innerLoginForm {
  512. border : 1px solid #88b0f0;
  513. padding : 50px;
  514. background-color : white;
  515. }
  516. table.innerLoginForm td {
  517. padding : 3px 3px 5px 3px;
  518. }
  519. span.insensitive, div.insensitive {
  520. color : gray;
  521. }
  522. .insensitive a {
  523. color : #4684ff;
  524. }
  525. .insensitive a:hover {
  526. color : black;
  527. }
  528. /* .prefGenericAddBox {
  529. font-size : 9pt;
  530. } */
  531. body.logoutBody {
  532. background-color : #f0f0f0;
  533. color : black;
  534. }
  535. span.logoutWarning {
  536. color : red;
  537. font-weight : bold;
  538. }
  539. div.logoutContent {
  540. width : 600px;
  541. border : 1px solid #c0c0c0;
  542. background-color : white;
  543. margin-left : auto;
  544. margin-right : auto;
  545. margin-top : 20px;
  546. padding : 10px;
  547. }
  548. .small {
  549. font-size : 9pt;
  550. }
  551. table.innerFeedTable td {
  552. margin : 0px;
  553. padding : 0px;
  554. }
  555. td.selectPrompt {
  556. font-size : 9pt;
  557. color : gray;
  558. }
  559. table.headlinesSubToolbar {
  560. border-width : 0px 0px 1px 0px;
  561. border-style : solid;
  562. border-color : #f0f0f0;
  563. position : absolute;
  564. left : 1px;
  565. top : 0px;
  566. height : 25px;
  567. right : 0px;
  568. background-color : white;
  569. }
  570. table.headlinesSubToolbar td.headlineActions {
  571. font-size : 9pt;
  572. font-family : "Lucida Grande", Tahoma, sans-serif;
  573. color : gray;
  574. padding : 0px 5px 0px 5px;
  575. }
  576. table.headlinesSubToolbar td.headlineActionsRTL {
  577. font-size : 9pt;
  578. font-family : "Lucida Grande", Tahoma, sans-serif;
  579. color : gray;
  580. padding : 0px 5px 0px 5px;
  581. }
  582. table.headlinesSubToolbar td.headlineTitle {
  583. font-size : 9pt;
  584. font-family : "Lucida Grande", Tahoma, sans-serif;
  585. color : gray;
  586. padding : 0px 5px 0px 5px;
  587. text-align : right;
  588. }
  589. table.headlinesSubToolbar td.headlineTitleRTL {
  590. font-size : 9pt;
  591. font-family : "Lucida Grande", Tahoma, sans-serif;
  592. color : gray;
  593. padding : 0px 5px 0px 5px;
  594. text-align : left;
  595. }
  596. span.contentPreview {
  597. font-size : 9pt;
  598. color : gray;
  599. font-weight : normal;
  600. }
  601. span.contentPreview:hover {
  602. color : #4684ff;
  603. }
  604. table.headlinesList td.hlMarkedPic {
  605. width : 25px;
  606. text-align : center;
  607. }
  608. table.headlinesList td.hlfeed {
  609. text-align : right;
  610. }
  611. td.hlSelectRow, td.hlUpdatePic {
  612. width : 25px;
  613. text-align : center;
  614. }
  615. table.headlinesList td.hlUpdated {
  616. color : gray;
  617. text-align : right;
  618. width : 100px;
  619. }
  620. table.headlinesList tr td {
  621. padding : 2px 0px 2px 0px;
  622. }
  623. div.postHeader div.postDate {
  624. text-align : right;
  625. color : gray;
  626. float : right;
  627. }
  628. div.postHeader div.postDateRTL {
  629. text-align : left;
  630. color : gray;
  631. float : right;
  632. }
  633. div.postReply span.tagList {
  634. color : gray;
  635. }
  636. div.postHeader div {
  637. padding-bottom : 3px;
  638. font-size : 10pt;
  639. /* font-family : "Lucida Grande", Tahoma, sans-serif; */
  640. }
  641. #feedUpdateErrors {
  642. display : none;
  643. }
  644. #allEntryTags {
  645. font-size : 9pt;
  646. border-width : 0px 0px 1px 0px;
  647. border-style : solid;
  648. border-color : #c0c0c0;
  649. padding-bottom : 5px;
  650. display : none;
  651. }
  652. /*td.hlContent {
  653. overflow : hidden;
  654. height : 1em;
  655. display : block;
  656. } */
  657. td.hlMarkedPic, td.hlSelectRow, td.hlUpdated, td.hlFeed {
  658. height : 1em;
  659. }
  660. td.hlFeed {
  661. text-align : right;
  662. }
  663. div.cdmArticle {
  664. border-color : #c0c0c0;
  665. border-width : 0px 0px 1px 0px;
  666. border-style : solid;
  667. background-color : #fafafa;
  668. margin : 0px;
  669. padding : 10px;
  670. }
  671. div.cdmArticleUnread {
  672. border-color : #c0c0c0;
  673. border-width : 0px 0px 1px 0px;
  674. border-style : solid;
  675. background-color : #fafeff;
  676. margin : 0px;
  677. padding : 10px;
  678. }
  679. div.cdmArticleSelected, div.cdmArticleUnreadSelected {
  680. margin : 0px;
  681. padding : 10px;
  682. background-color : #fff7d5;
  683. border-color : #e7d796;
  684. border-width : 0px 0px 1px 0px;
  685. border-style : solid;
  686. }
  687. div.cdmArticleUnread div.cdmHeader a.title,
  688. div.cdmArticleUnreadSelected div.cdmHeader a.title {
  689. font-weight : bold;
  690. }
  691. div.cdmHeader {
  692. padding-bottom : 5px;
  693. }
  694. div.cdmFooter {
  695. font-size : 9pt;
  696. color : gray;
  697. padding-top : 5px;
  698. }
  699. div.cdmFooter img.markedPic {
  700. width : 16px;
  701. height : 16px;
  702. float : right;
  703. }
  704. div.cdmHeader div.articleUpdated {
  705. float : right;
  706. }
  707. div.cdmFooter input, div.cdmHeader input, div.cdmFooter img {
  708. margin : 0px;
  709. }
  710. div.cdmHeader, div.cdmHeader a {
  711. color : gray;
  712. font-size : 9pt;
  713. }
  714. div.cdmHeader a:hover {
  715. color : #4684ff;
  716. }
  717. div.cdmContent {
  718. margin-bottom : 5px;
  719. }
  720. a.warning {
  721. color : #f04040;
  722. }
  723. img.closeButton {
  724. border-width : 0px;
  725. float : right;
  726. }
  727. span.groupPrompt {
  728. font-size : 9pt;
  729. color : #4684ff;
  730. }
  731. ul.feedErrorsList {
  732. height : 300px;
  733. overflow : auto;
  734. list-style-type : none;
  735. border : 1px solid #88b0f0;
  736. background-color : white;
  737. margin : 0px 0px 5px 0px;
  738. padding : 0px;
  739. }
  740. ul.userFeedList {
  741. height : 300px;
  742. overflow : auto;
  743. list-style-type : none;
  744. border : 1px solid #88b0f0;
  745. background-color : white;
  746. margin : 0px 0px 5px 0px;
  747. padding : 0px;
  748. }
  749. /* #browseBigFeedList li.oddSelected {
  750. border : 1px solid #d0d0f6;
  751. background-color : #eaeaff;
  752. -moz-border-radius : 5px;
  753. } */
  754. ul.labelTestResults {
  755. height : 100px;
  756. overflow : auto;
  757. list-style-type : none;
  758. margin : 0px 0px 5px 0px;
  759. padding : 0px;
  760. border : 1px solid #88b0f0;
  761. background-color : white;
  762. }
  763. ul.filterTestResults {
  764. height : 300px;
  765. overflow : auto;
  766. list-style-type : none;
  767. margin : 0px 0px 5px 0px;
  768. padding : 0px;
  769. border : 1px solid #88b0f0;
  770. background-color : white;
  771. }
  772. ul.browseFeedList {
  773. height : 300px;
  774. overflow : auto;
  775. list-style-type : none;
  776. margin : 0px 0px 5px 0px;
  777. padding : 0px;
  778. border : 1px solid #88b0f0;
  779. background-color : white;
  780. }
  781. ul.browseFeedList li {
  782. margin : 0px;
  783. padding : 0px;
  784. }
  785. span.subscribers {
  786. color : #808080;
  787. }
  788. div.subscribers {
  789. color : #808080;
  790. font-size : 9pt;
  791. float : right;
  792. }
  793. input.feedBrowseCB {
  794. margin-right : 1em;
  795. }
  796. div.browserDetails {
  797. margin : 5px 5px 5px 5px;
  798. display : none;
  799. padding : 5px;
  800. }
  801. ul.compact {
  802. list-style-type : none;
  803. margin : 0px;
  804. padding : 0px;
  805. }
  806. ul.compact li {
  807. margin : 0px;
  808. padding : 0px;
  809. }
  810. div.browserFeedInfo {
  811. font-size : 9pt;
  812. /* border : 1px solid #88b0f0;
  813. background-color : #ecf4ff;
  814. -moz-border-radius : 5px; */
  815. padding : 5px;
  816. }
  817. div.browserFeedInfo div.detailsPart {
  818. margin : 5px 0px 5px 5px;
  819. }
  820. div.cdmContent a {
  821. color : #4684ff;
  822. }
  823. div.cdmContent a:hover {
  824. color : black;
  825. }
  826. a.cdmToggleLink {
  827. color : #808080;
  828. font-size : 9pt;
  829. }
  830. a.cdmToggleLink:hover {
  831. color : #4684ff;
  832. }
  833. .noborder {
  834. border-width : 0px;
  835. }
  836. #debug_output {
  837. position : absolute;
  838. width : 400px;
  839. height : 200px;
  840. right : 20px;
  841. bottom : 20px;
  842. z-index : 999;
  843. background-color : white;
  844. display : none;
  845. border : 1px solid #c0c0c0;
  846. overflow : auto;
  847. margin : 0px;
  848. padding : 0px;
  849. list-style-type : none;
  850. }
  851. #debug_output li {
  852. margin : 0px;
  853. padding : 0px;
  854. font-size : 8pt;
  855. }
  856. #overlay {
  857. background : white;
  858. left : 0;
  859. top : 0;
  860. height : 100%;
  861. width : 100%;
  862. z-index : 100;
  863. position : absolute;
  864. }
  865. #overlay_inner {
  866. font-weight : bold;
  867. text-align : center;
  868. margin : 10px;
  869. }
  870. #fatal_error {
  871. background : white;
  872. left : 0;
  873. top : 0;
  874. height : 100%;
  875. width : 100%;
  876. z-index : 200;
  877. display : none;
  878. position : absolute;
  879. }
  880. #fatal_error_inner {
  881. font-weight : bold;
  882. margin : 10px;
  883. color : red;
  884. }
  885. #fatal_error_msg {
  886. border : 1px solid #c0c0c0;
  887. background-color : #f0f0f0;
  888. color : black;
  889. padding : 10px;
  890. font-weight : normal;
  891. }
  892. #fatal_error_msg a {
  893. color : red;
  894. }
  895. #fatal_error_msg a:hover {
  896. color : red;
  897. text-decoration : underline;
  898. }
  899. #noDaemonWarning {
  900. position : absolute;
  901. background-color : #ecf4ff;
  902. border : 1px solid #88b0f0;
  903. padding : 10px;
  904. margin : 5px;
  905. z-index : 2;
  906. display : none;
  907. }
  908. #qafInput {
  909. width : 100%;
  910. }
  911. form {
  912. margin : 0px;
  913. padding : 0px;
  914. }
  915. #main_toolbar_form {
  916. margin : 0px;
  917. padding : 0px;
  918. display : inline;
  919. }
  920. div.feedExtInfo {
  921. margin-left : 2em;
  922. font-size : 7pt;
  923. color : gray;
  924. font-weight : normal;
  925. }
  926. span.debugTS {
  927. color : #4684ff;
  928. }
  929. #backReqBox {
  930. display : none;
  931. }
  932. /*.scriptWarn:before {
  933. content : "Disabled script:";
  934. }*/
  935. .scriptWarn {
  936. color : white;
  937. background-color : #903030;
  938. border : 1px solid #601010;
  939. padding : 3px;
  940. font-weight : bold;
  941. display : none;
  942. }
  943. .objectWarn {
  944. color : gray;
  945. font-style: italic;
  946. text-align : center;
  947. }
  948. table.loginForm2 {
  949. padding : 1em;
  950. }
  951. table.loginForm2 .loginTop {
  952. border-width : 0px 0px 1px 0px;
  953. border-color : #88b0f0;
  954. border-style : solid;
  955. padding : 0.5em;
  956. }
  957. table.loginForm2 .loginMiddle {
  958. padding : 3em;
  959. }
  960. table.loginForm2 .loginBottom {
  961. border-width : 1px 0px 0px 0px;
  962. border-color : #88b0f0;
  963. border-style : solid;
  964. font-size : 9pt;
  965. text-align : center;
  966. color : #909090;
  967. padding : 0.5em;
  968. }
  969. table.loginForm2 .loginBottom a {
  970. color : gray;
  971. }
  972. table.loginForm2 .loginBottom a:hover {
  973. color : #4684ff;
  974. }
  975. table.loginForm2 .loginError {
  976. color : red;
  977. margin : 0.5em;
  978. }
  979. table.loginForm2 .innerLoginCell {
  980. padding-top : 0.5em;
  981. }
  982. #milestoneDetails {
  983. display : none;
  984. }
  985. div.loadingPrompt {
  986. padding : 1em;
  987. text-align : center;
  988. font-weight : bold;
  989. }
  990. div.whiteBox {
  991. background-color : white;
  992. margin-left : 1px;
  993. text-align : center;
  994. padding : 1em;
  995. }
  996. /* layout */
  997. #header {
  998. position : absolute;
  999. white-space: nowrap;
  1000. top : 10px;
  1001. left : 15px;
  1002. right : 5px;
  1003. height : 40px;
  1004. color : #4684ff;
  1005. font-size : 9pt;
  1006. }
  1007. #feeds-holder {
  1008. border-width : 1px 1px 1px 0px;
  1009. border-style : solid;
  1010. border-color : #88b0f0;
  1011. top : 50px;
  1012. left : 0px;
  1013. position : absolute;
  1014. width : 260px;
  1015. overflow : auto;
  1016. bottom : 40px;
  1017. border-collapse : collapse;
  1018. height: expression((parseInt(document.documentElement.clientHeight)-40-20-30)+'px');
  1019. }
  1020. #toolbar {
  1021. position : absolute;
  1022. left : 261px;
  1023. padding : 5px 10px 5px 10px;
  1024. top : 50px;
  1025. right : 0px;
  1026. white-space: nowrap;
  1027. height : 30px;
  1028. background-image : url("images/toolbar.png");
  1029. background-position : bottom left;
  1030. background-repeat : repeat-x;
  1031. font-size : 9pt;
  1032. }
  1033. div.headlines_normal {
  1034. position : absolute;
  1035. border-width : 1px 0px 0px 0px;
  1036. border-style : solid;
  1037. border-color : #88b0f0;
  1038. left : 260px;
  1039. height : 305px;
  1040. top : 85px;
  1041. right : 0px;
  1042. overflow : hidden;
  1043. font-size : 9pt;
  1044. border-collapse : collapse;
  1045. /* css hack for IE */
  1046. width: expression((parseInt(document.documentElement.clientWidth)-260)+'px');
  1047. }
  1048. div.headlines_cdm {
  1049. position : absolute;
  1050. border-width : 1px 0px 1px 0px;
  1051. border-style : solid;
  1052. border-color : #88b0f0;
  1053. left : 260px;
  1054. bottom : 40px;
  1055. top : 85px;
  1056. right : 0px;
  1057. overflow : hidden;
  1058. font-size : 9pt;
  1059. border-collapse : collapse;
  1060. width: expression((parseInt(document.documentElement.clientWidth)-260)+'px');
  1061. }
  1062. #content-frame {
  1063. position : absolute;
  1064. border-width : 1px 0px 1px 0px;
  1065. border-style : solid;
  1066. border-color : #88b0f0;
  1067. overflow : auto;
  1068. top : 390px;
  1069. left : 260px;
  1070. bottom : 40px;
  1071. right : 0px;
  1072. border-collapse : collapse;
  1073. width: expression((parseInt(document.documentElement.clientWidth)-260)+'px');
  1074. height: expression((parseInt(document.documentElement.clientHeight)-40-305-50)+'px');
  1075. }
  1076. #footer, #prefFooter {
  1077. position : absolute;
  1078. bottom : 0px;
  1079. height : 20px;
  1080. text-align : center;
  1081. color : gray;
  1082. font-size : 9pt;
  1083. background-image : url("images/footer.png");
  1084. background-position : top left;
  1085. background-repeat : repeat-x;
  1086. background-color : white;
  1087. right : 0px;
  1088. left : 0px;
  1089. padding : 10px;
  1090. width: expression((parseInt(document.documentElement.clientWidth)-20)+'px');
  1091. border-collapse : collapse;
  1092. border-width : 1px 0px 0px 0px;
  1093. border-style : solid;
  1094. border-color : #88b0f0;
  1095. }
  1096. #footer a, #prefFooter a {
  1097. color : gray;
  1098. }
  1099. #footer a:hover, #prefFooter a:hover {
  1100. color : black;
  1101. }
  1102. #headlinesContainer {
  1103. margin-left : 1px;
  1104. background-color : white;
  1105. }
  1106. #headlineActionsTop {
  1107. /* border-width : 0px 0px 1px 0px;
  1108. border-style : solid;
  1109. border-color : #c0c0c0;
  1110. background-color : #fafafa; */
  1111. font-size : 9pt;
  1112. }
  1113. #headlinesInnerContainer {
  1114. overflow : auto;
  1115. position : absolute;
  1116. left : 1px;
  1117. right : 0px;
  1118. bottom : 0px;
  1119. top : 25px;
  1120. }
  1121. /* preferences layout */
  1122. #prefHeader {
  1123. color : #4684ff;
  1124. font-size : 9pt;
  1125. margin : 10px;
  1126. height : 33px;
  1127. }
  1128. div.return {
  1129. float : right;
  1130. font-size : 9pt;
  1131. margin-right : 10px;
  1132. }
  1133. div.return a {
  1134. color : #4684ff;
  1135. }
  1136. div.return a:hover {
  1137. color : black;
  1138. }
  1139. #prefContent {
  1140. clear : left;
  1141. position : absolute;
  1142. bottom : 40px;
  1143. top : 75px;
  1144. left : 0px;
  1145. right : 0px;
  1146. padding : 1em;
  1147. overflow : auto;
  1148. min-height : 300px;
  1149. background-image : url("images/prefs-content.png");
  1150. background-position : top left;
  1151. background-repeat : repeat-x;
  1152. border-width : 1px 0px 0px 0px;
  1153. border-color : #88b0f0;
  1154. border-style : solid;
  1155. height: expression((parseInt(document.documentElement.clientHeight)-75-40)+'px');
  1156. width: expression((parseInt(document.documentElement.clientWidth)-25)+'px');
  1157. font-size : 10pt;
  1158. }
  1159. #userSwitch {
  1160. position : absolute;
  1161. bottom : 2px;
  1162. right : 2px;
  1163. }
  1164. a.feedUpdErrLink {
  1165. color : #ff0000;
  1166. display : block;
  1167. margin-bottom : 0.5em;
  1168. }
  1169. .catCtrHasUnread {
  1170. font-weight : bold;
  1171. }
  1172. .catCtrNoUnread {
  1173. display : none;
  1174. }
  1175. ul.headlineDropdownMenu {
  1176. list-style-type : none;
  1177. margin : 0px;
  1178. padding : 0px;
  1179. }
  1180. ul.headlineDropdownMenu li.top {
  1181. float : left;
  1182. width : 9em;
  1183. background-image : url("images/down_arrow.png");
  1184. background-position : center right;
  1185. background-repeat : no-repeat;
  1186. margin : 0px;
  1187. cursor : pointer;
  1188. border-width : 1px 1px 1px 1px;
  1189. border-color : transparent;
  1190. border-style : solid;
  1191. }
  1192. ul.headlineDropdownMenu li.top2 {
  1193. float : left;
  1194. }
  1195. ul.headlineDropdownMenu li.vsep {
  1196. float : left;
  1197. margin : 0px 5px 0px 0px;
  1198. border-width : 0px 1px 0px 0px;
  1199. border-color : #c0c0c0;
  1200. border-style : dotted;
  1201. color : white;
  1202. }
  1203. ul.headlineDropdownMenu li.top:hover {
  1204. cursor : pointer;
  1205. border-width : 1px 1px 0px 1px;
  1206. border-color : #c0c0c0;
  1207. border-style : solid;
  1208. }
  1209. ul.headlineDropdownMenu li.top:hover ul {
  1210. display : block;
  1211. }
  1212. ul.headlineDropdownMenu ul {
  1213. list-style-type : none;
  1214. position : absolute;
  1215. float : none;
  1216. margin : 0px;
  1217. padding : 0px;
  1218. display : none;
  1219. background-color : white;
  1220. width : 9em;
  1221. z-index : 3;
  1222. top : auto;
  1223. left : auto;
  1224. border-width : 0px 1px 1px 1px;
  1225. border-color : #c0c0c0;
  1226. border-style : solid;
  1227. margin-left : -1px;
  1228. }
  1229. ul.headlineDropdownMenu ul li {
  1230. float: none;
  1231. padding : 2px 0px 2px 10px;
  1232. color : black;
  1233. }
  1234. ul.headlineDropdownMenu ul li:hover {
  1235. color : #4684ff;
  1236. background-color : #f0f0f0;
  1237. }
  1238. #newVersionIcon {
  1239. vertical-align : middle;
  1240. cursor : pointer;
  1241. display : none;
  1242. }