Advertisement
nathanchantrell

tt-rss theme

Mar 30th, 2013
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.75 KB | None | 0 0
  1. /* fix dijit */
  2. :focus {
  3. outline: none;
  4. }
  5. input[type="search"] {
  6. -webkit-appearance: none;
  7. }
  8. .claro .dijitToolbar .dijitButton .dijitButtonNode,
  9. .claro .dijitToolbar .dijitDropDownButton .dijitButtonNode,
  10. .claro .dijitToolbar .dijitComboButton .dijitButtonNode,
  11. .claro .dijitToolbar .dijitToggleButton .dijitButtonNode,
  12. .claro .dijitToolbar .dijitComboBox .dijitButtonNode {
  13. -moz-transition: background-color, border-color, color;
  14. -webkit-transition-property: background-color, border-color, color;
  15. transition: background-color, border-color, color;
  16. }
  17.  
  18.  
  19. /* some style */
  20. body#ttrssMain,
  21. a,
  22. .titleWrap .title {
  23. color: #444;
  24. }
  25. a:hover,
  26. .Unread .titleWrap .title,
  27. .Selected .titleWrap .title,
  28. html div.cdmContent a {
  29. color: #15c;
  30. }
  31. #feeds-holder,
  32. #content-wrap,
  33. #headlines-frame {
  34. border: none;
  35. }
  36. #ttrssMain #headlines-toolbar,
  37. #ttrssMain .dijitToolbar,
  38. #ttrssMain .cdmHeader {
  39. background: #fff;
  40. border-color: transparent;
  41. }
  42. #ttrssMain #headlines-toolbar {
  43. border-color: #ebebeb;
  44. }
  45. #ttrssMain .cdm {
  46. margin: 5px 25px 10px 5px;
  47. border: 1px solid #ddd !important;
  48. box-shadow: 0 0 4px rgba(0,0,0,.1);
  49. background: #fff !important;
  50. }
  51. #ttrssMain .cdm.Selected {
  52. border-left-color: #4d90f0 !important;
  53. background: #fff !important;
  54. }
  55. #ttrssMain .cdmFeedTitle {
  56. border-color: #ebebeb;
  57. background: #fff;
  58. font-size: 1.1em;
  59. font-weight: bold;
  60. }
  61. #headlines-frame .cdmFooter {
  62. border-top: 1px solid #ebebeb;
  63. background: #fafafa;
  64. }
  65.  
  66. img.tinyFeedIcon {
  67. display: none;
  68. }
  69.  
  70. img.hlScorePic {
  71. display: none;
  72. }
  73.  
  74. div.cdmHeader span.hlFeed {
  75. padding-top: 0em;
  76. padding-right: 1em;
  77. float: left;
  78. width: 11em;
  79. color: #555;
  80. font-size: 100%;
  81. white-space: nowrap;
  82. overflow: hidden;
  83. }
  84.  
  85.  
  86. #ttrssMain #headlines-toolbar, #ttrssMain .dijitToolbar, #ttrssMain .cdmHeader {
  87. overflow: hidden;
  88. }
  89.  
  90. /* Set Line Background to White and increase font size */
  91. .odd.Selected, .odd.Selected td {
  92. background: rgb(255, 255, 255) ! important;
  93. font-size : 14px;
  94. }
  95. .even.Selected, .odd.Selected td {
  96. background: rgb(255, 255, 255) ! important;
  97. font-size : 14px;
  98. }
  99.  
  100. /* Article Title Cell Width 50% */
  101. .titleWrap .title {
  102. color: #15c;
  103. overflow: hidden;
  104. max-width: 50%;
  105. text-overflow: ellipsis;
  106. white-space: nowrap;
  107. display: inline-block;
  108. padding-right: 15px;
  109. font-size: 1.1em;
  110. font-weight: bold;
  111. }
  112.  
  113. /* Article Text Summary Blurb */
  114. span.cdmExcerpt {
  115. font-size: 12px;
  116. overflow: hidden;
  117. max-width: 400px;
  118. text-overflow: ellipsis;
  119. white-space: nowrap;
  120. display: inline-block;
  121. }
  122.  
  123. /* Line Hover Color */
  124. #ttrssMain .cdmHeader:hover {
  125. background-color:#F0F0F0;
  126. }
  127.  
  128. /* Increase font size of active article title */
  129. .cdm.active.Selected .cdmHeader a {
  130. font-size : 140% ! important;
  131. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement