utility.less 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  1. body.sanity_failed {
  2. background : #900;
  3. }
  4. body.ttrss_utility {
  5. background : #f5f5f5;
  6. color : black;
  7. padding : 0px;
  8. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  9. font-size: 14px;
  10. margin-left : auto;
  11. margin-right : auto;
  12. max-width : 800px;
  13. form {
  14. margin : 10px 0px 0px 0px;
  15. padding : 0px;
  16. }
  17. div.content {
  18. overflow : hidden;
  19. background : white;
  20. border : 1px solid #ddd;
  21. padding : 10px;
  22. border-radius : 6px;
  23. box-shadow : 0px 1px 1px -1px rgba(0,0,0,0.1);
  24. }
  25. p.warning {
  26. color : red;
  27. }
  28. p.query, code {
  29. color : green;
  30. }
  31. p.insensitive {
  32. color : gray;
  33. }
  34. div.insensitive-small {
  35. color : gray;
  36. font-size : 10px;
  37. }
  38. .floatingLogo {
  39. display : none;
  40. }
  41. a {
  42. color : rgb(82, 168, 236);
  43. text-decoration : none;
  44. }
  45. a:hover {
  46. color : black;
  47. }
  48. .alert {
  49. padding: 8px 35px 8px 14px;
  50. margin-bottom: 20px;
  51. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  52. background-color: #fcf8e3;
  53. border: 1px solid #fbeed5;
  54. -webkit-border-radius: 4px;
  55. -moz-border-radius: 4px;
  56. border-radius: 4px;
  57. }
  58. .alert,
  59. .alert h4 {
  60. color: #c09853;
  61. }
  62. .alert h4 {
  63. margin: 0;
  64. }
  65. .alert .close {
  66. position: relative;
  67. top: -2px;
  68. right: -21px;
  69. line-height: 20px;
  70. cursor : pointer;
  71. }
  72. .alert-success {
  73. color: #468847;
  74. background-color: #dff0d8;
  75. border-color: #d6e9c6;
  76. }
  77. .alert-success h4 {
  78. color: #468847;
  79. }
  80. .alert-danger,
  81. .alert-error {
  82. color: #b94a48;
  83. background-color: #f2dede;
  84. border-color: #eed3d7;
  85. }
  86. .alert-danger h4,
  87. .alert-error h4 {
  88. color: #b94a48;
  89. }
  90. .alert-info {
  91. color: #3a87ad;
  92. background-color: #d9edf7;
  93. border-color: #bce8f1;
  94. }
  95. .alert-info h4 {
  96. color: #3a87ad;
  97. }
  98. h1 {
  99. color : rgb(82, 168, 236);
  100. font-size : 32px;
  101. margin : 20px 0px 5px 0px;
  102. text-shadow : 0 0 6px #fff;
  103. }
  104. h2 {
  105. color : rgb(82, 168, 236);
  106. font-size : 14pt;
  107. border-width : 0px 0px 1px 0px;
  108. border-color : #f0f0f0;
  109. border-style : solid;
  110. }
  111. div.content > h2 {
  112. margin-top : 0px;
  113. }
  114. div.rss h1 {
  115. border-width : 0px 0px 1px 0px;
  116. border-color : gray;
  117. border-style : dotted;
  118. color : gray;
  119. }
  120. div.rss h2 {
  121. font-size : 12pt;
  122. }
  123. div.rss a.extlink {
  124. color : gray;
  125. border-width : 0px 0px 1px 0px;
  126. border-color : #778899;
  127. border-style : dotted;
  128. font-size : 9pt;
  129. }
  130. div.rss img {
  131. max-width : 775px;
  132. }
  133. div.rss p.description {
  134. color : gray;
  135. font-size : 9pt;
  136. }
  137. div.rss div.content {
  138. margin-top : 0.5em;
  139. }
  140. div.rss img.feedicon {
  141. float : right;
  142. }
  143. div.rss hr {
  144. border-width : 0px 0px 1px 0px;
  145. border-style : dashed;
  146. border-color : #e0e0e0;
  147. }
  148. body#sharepopup {
  149. background-color : white;
  150. background-image : url("../images/toolbar.png");
  151. background-repeat : repeat-x;
  152. background-position : bottom;
  153. margin : 10px;
  154. padding : 0px;
  155. }
  156. body#sharepopup h1 {
  157. font-size : 14px;
  158. margin : 0px;
  159. color : rgb(82, 168, 236);
  160. }
  161. body#sharepopup table {
  162. background : white;
  163. border : 1px solid rgb(82, 168, 236);
  164. padding : 5px;
  165. }
  166. body#sharepopup form {
  167. height : 100%;
  168. }
  169. body#sharepopup input {
  170. width : 100%;
  171. }
  172. div.autocomplete {
  173. position : absolute;
  174. width : 250px;
  175. background-color : white;
  176. border :1px solid #778899;
  177. margin : 0px;
  178. padding : 0px;
  179. z-index : 4;
  180. }
  181. div.autocomplete ul {
  182. list-style-type : none;
  183. margin : 0px;
  184. padding : 0px;
  185. font-size : 10px;
  186. }
  187. div.autocomplete ul li.selected {
  188. background-color : #fff7d5;
  189. }
  190. div.autocomplete ul li {
  191. list-style-type : none;
  192. display : block;
  193. margin : 0;
  194. padding : 2px;
  195. height : 32px;
  196. cursor : pointer;
  197. }
  198. fieldset {
  199. border-width : 0px;
  200. padding : 0px 0px 5px 0px;
  201. margin : 0px;
  202. }
  203. fieldset input {
  204. font-family : sans-serif;
  205. font-size : medium;
  206. border-spacing : 2px;
  207. border : 1px solid #b5bcc7;
  208. padding : 2px;
  209. }
  210. fieldset label {
  211. width : 120px;
  212. margin-right : 20px;
  213. display : inline-block;
  214. text-align : right;
  215. color : gray;
  216. }
  217. body.otp {
  218. margin : 1em;
  219. padding : 0px;
  220. }
  221. form.otpform {
  222. margin : 0px;
  223. padding : 0px;
  224. }
  225. form.otpform label {
  226. margin : 0px;
  227. padding : 0px;
  228. }
  229. body.otp div.content {
  230. display : inline-block;
  231. width : auto;
  232. }
  233. span.hint {
  234. font-size : 10px;
  235. color : gray;
  236. }
  237. }
  238. body.small_margins {
  239. margin : 1em;
  240. max-width : none;
  241. }