search.css 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. /*---------------- Search Box */
  2. #FSearchBox {
  3. float: left;
  4. }
  5. #MSearchBox {
  6. white-space : nowrap;
  7. float: none;
  8. margin-top: 0px;
  9. right: 0px;
  10. width: 170px;
  11. height: 24px;
  12. z-index: 102;
  13. display: inline;
  14. position: absolute;
  15. }
  16. #MSearchBox .left
  17. {
  18. display:block;
  19. position:absolute;
  20. left:10px;
  21. width:20px;
  22. height:19px;
  23. background:url('search_l.png') no-repeat;
  24. background-position:right;
  25. }
  26. #MSearchSelect {
  27. display:block;
  28. position:absolute;
  29. width:20px;
  30. height:19px;
  31. }
  32. .left #MSearchSelect {
  33. left:4px;
  34. }
  35. .right #MSearchSelect {
  36. right:5px;
  37. }
  38. #MSearchField {
  39. display:block;
  40. position:absolute;
  41. height:19px;
  42. background:url('search_m.png') repeat-x;
  43. border:none;
  44. width:111px;
  45. margin-left:20px;
  46. padding-left:4px;
  47. color: #909090;
  48. outline: none;
  49. font: 9pt Arial, Verdana, sans-serif;
  50. -webkit-border-radius: 0px;
  51. }
  52. #FSearchBox #MSearchField {
  53. margin-left:15px;
  54. }
  55. #MSearchBox .right {
  56. display:block;
  57. position:absolute;
  58. right:10px;
  59. top:0px;
  60. width:20px;
  61. height:19px;
  62. background:url('search_r.png') no-repeat;
  63. background-position:left;
  64. }
  65. #MSearchClose {
  66. display: none;
  67. position: absolute;
  68. top: 4px;
  69. background : none;
  70. border: none;
  71. margin: 0px 4px 0px 0px;
  72. padding: 0px 0px;
  73. outline: none;
  74. }
  75. .left #MSearchClose {
  76. left: 6px;
  77. }
  78. .right #MSearchClose {
  79. right: 2px;
  80. }
  81. .MSearchBoxActive #MSearchField {
  82. color: #000000;
  83. }
  84. /*---------------- Search filter selection */
  85. #MSearchSelectWindow {
  86. display: none;
  87. position: absolute;
  88. left: 0; top: 0;
  89. border: 1px solid #BFCE90;
  90. background-color: #FBFCF9;
  91. z-index: 10001;
  92. padding-top: 4px;
  93. padding-bottom: 4px;
  94. -moz-border-radius: 4px;
  95. -webkit-border-top-left-radius: 4px;
  96. -webkit-border-top-right-radius: 4px;
  97. -webkit-border-bottom-left-radius: 4px;
  98. -webkit-border-bottom-right-radius: 4px;
  99. -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
  100. }
  101. .SelectItem {
  102. font: 8pt Arial, Verdana, sans-serif;
  103. padding-left: 2px;
  104. padding-right: 12px;
  105. border: 0px;
  106. }
  107. span.SelectionMark {
  108. margin-right: 4px;
  109. font-family: monospace;
  110. outline-style: none;
  111. text-decoration: none;
  112. }
  113. a.SelectItem {
  114. display: block;
  115. outline-style: none;
  116. color: #000000;
  117. text-decoration: none;
  118. padding-left: 6px;
  119. padding-right: 12px;
  120. }
  121. a.SelectItem:focus,
  122. a.SelectItem:active {
  123. color: #000000;
  124. outline-style: none;
  125. text-decoration: none;
  126. }
  127. a.SelectItem:hover {
  128. color: #FFFFFF;
  129. background-color: #788C3D;
  130. outline-style: none;
  131. text-decoration: none;
  132. cursor: pointer;
  133. display: block;
  134. }
  135. /*---------------- Search results window */
  136. iframe#MSearchResults {
  137. width: 60ex;
  138. height: 15em;
  139. }
  140. #MSearchResultsWindow {
  141. display: none;
  142. position: absolute;
  143. left: 0; top: 0;
  144. border: 1px solid #000;
  145. background-color: #F5F7EE;
  146. z-index:10000;
  147. }
  148. /* ----------------------------------- */
  149. #SRIndex {
  150. clear:both;
  151. padding-bottom: 15px;
  152. }
  153. .SREntry {
  154. font-size: 10pt;
  155. padding-left: 1ex;
  156. }
  157. .SRPage .SREntry {
  158. font-size: 8pt;
  159. padding: 1px 5px;
  160. }
  161. body.SRPage {
  162. margin: 5px 2px;
  163. }
  164. .SRChildren {
  165. padding-left: 3ex; padding-bottom: .5em
  166. }
  167. .SRPage .SRChildren {
  168. display: none;
  169. }
  170. .SRSymbol {
  171. font-weight: bold;
  172. color: #829742;
  173. font-family: Arial, Verdana, sans-serif;
  174. text-decoration: none;
  175. outline: none;
  176. }
  177. a.SRScope {
  178. display: block;
  179. color: #829742;
  180. font-family: Arial, Verdana, sans-serif;
  181. text-decoration: none;
  182. outline: none;
  183. }
  184. a.SRSymbol:focus, a.SRSymbol:active,
  185. a.SRScope:focus, a.SRScope:active {
  186. text-decoration: underline;
  187. }
  188. span.SRScope {
  189. padding-left: 4px;
  190. }
  191. .SRPage .SRStatus {
  192. padding: 2px 5px;
  193. font-size: 8pt;
  194. font-style: italic;
  195. }
  196. .SRResult {
  197. display: none;
  198. }
  199. DIV.searchresults {
  200. margin-left: 10px;
  201. margin-right: 10px;
  202. }
  203. /*---------------- External search page results */
  204. .searchresult {
  205. background-color: #F6F8F0;
  206. }
  207. .pages b {
  208. color: white;
  209. padding: 5px 5px 3px 5px;
  210. background-image: url("../tab_a.png");
  211. background-repeat: repeat-x;
  212. text-shadow: 0 1px 1px #000000;
  213. }
  214. .pages {
  215. line-height: 17px;
  216. margin-left: 4px;
  217. text-decoration: none;
  218. }
  219. .hl {
  220. font-weight: bold;
  221. }
  222. #searchresults {
  223. margin-bottom: 20px;
  224. }
  225. .searchpages {
  226. margin-top: 10px;
  227. }