A C++ DAL / ORM code generation framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

240 lines
3.9 KiB

  1. /*---------------- Search Box */
  2. #FSearchBox {
  3. float: left;
  4. }
  5. #searchli {
  6. float: right;
  7. display: block;
  8. width: 170px;
  9. height: 36px;
  10. }
  11. #MSearchBox {
  12. white-space : nowrap;
  13. position: absolute;
  14. float: none;
  15. display: inline;
  16. margin-top: 8px;
  17. right: 0px;
  18. width: 170px;
  19. z-index: 102;
  20. }
  21. #MSearchBox .left
  22. {
  23. display:block;
  24. position:absolute;
  25. left:10px;
  26. width:20px;
  27. height:19px;
  28. background:url('search_l.png') no-repeat;
  29. background-position:right;
  30. }
  31. #MSearchSelect {
  32. display:block;
  33. position:absolute;
  34. width:20px;
  35. height:19px;
  36. }
  37. .left #MSearchSelect {
  38. left:4px;
  39. }
  40. .right #MSearchSelect {
  41. right:5px;
  42. }
  43. #MSearchField {
  44. display:block;
  45. position:absolute;
  46. height:19px;
  47. background:url('search_m.png') repeat-x;
  48. border:none;
  49. width:116px;
  50. margin-left:20px;
  51. padding-left:4px;
  52. color: #909090;
  53. outline: none;
  54. font: 9pt Arial, Verdana, sans-serif;
  55. }
  56. #FSearchBox #MSearchField {
  57. margin-left:15px;
  58. }
  59. #MSearchBox .right {
  60. display:block;
  61. position:absolute;
  62. right:10px;
  63. top:0px;
  64. width:20px;
  65. height:19px;
  66. background:url('search_r.png') no-repeat;
  67. background-position:left;
  68. }
  69. #MSearchClose {
  70. display: none;
  71. position: absolute;
  72. top: 4px;
  73. background : none;
  74. border: none;
  75. margin: 0px 4px 0px 0px;
  76. padding: 0px 0px;
  77. outline: none;
  78. }
  79. .left #MSearchClose {
  80. left: 6px;
  81. }
  82. .right #MSearchClose {
  83. right: 2px;
  84. }
  85. .MSearchBoxActive #MSearchField {
  86. color: #000000;
  87. }
  88. /*---------------- Search filter selection */
  89. #MSearchSelectWindow {
  90. display: none;
  91. position: absolute;
  92. left: 0; top: 0;
  93. border: 1px solid #3E728D;
  94. background-color: #F1F6F9;
  95. z-index: 1;
  96. padding-top: 4px;
  97. padding-bottom: 4px;
  98. -moz-border-radius: 4px;
  99. -webkit-border-top-left-radius: 4px;
  100. -webkit-border-top-right-radius: 4px;
  101. -webkit-border-bottom-left-radius: 4px;
  102. -webkit-border-bottom-right-radius: 4px;
  103. -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
  104. }
  105. .SelectItem {
  106. font: 8pt Arial, Verdana, sans-serif;
  107. padding-left: 2px;
  108. padding-right: 12px;
  109. border: 0px;
  110. }
  111. span.SelectionMark {
  112. margin-right: 4px;
  113. font-family: monospace;
  114. outline-style: none;
  115. text-decoration: none;
  116. }
  117. a.SelectItem {
  118. display: block;
  119. outline-style: none;
  120. color: #000000;
  121. text-decoration: none;
  122. padding-left: 6px;
  123. padding-right: 12px;
  124. }
  125. a.SelectItem:focus,
  126. a.SelectItem:active {
  127. color: #000000;
  128. outline-style: none;
  129. text-decoration: none;
  130. }
  131. a.SelectItem:hover {
  132. color: #FFFFFF;
  133. background-color: #101D24;
  134. outline-style: none;
  135. text-decoration: none;
  136. cursor: pointer;
  137. display: block;
  138. }
  139. /*---------------- Search results window */
  140. iframe#MSearchResults {
  141. width: 60ex;
  142. height: 15em;
  143. }
  144. #MSearchResultsWindow {
  145. display: none;
  146. position: absolute;
  147. left: 0; top: 0;
  148. border: 1px solid #000;
  149. background-color: #D7E5ED;
  150. }
  151. /* ----------------------------------- */
  152. #SRIndex {
  153. clear:both;
  154. padding-bottom: 15px;
  155. }
  156. .SREntry {
  157. font-size: 10pt;
  158. padding-left: 1ex;
  159. }
  160. .SRPage .SREntry {
  161. font-size: 8pt;
  162. padding: 1px 5px;
  163. }
  164. body.SRPage {
  165. margin: 5px 2px;
  166. }
  167. .SRChildren {
  168. padding-left: 3ex; padding-bottom: .5em
  169. }
  170. .SRPage .SRChildren {
  171. display: none;
  172. }
  173. .SRSymbol {
  174. font-weight: bold;
  175. color: #13232B;
  176. font-family: Arial, Verdana, sans-serif;
  177. text-decoration: none;
  178. outline: none;
  179. }
  180. a.SRScope {
  181. display: block;
  182. color: #13232B;
  183. font-family: Arial, Verdana, sans-serif;
  184. text-decoration: none;
  185. outline: none;
  186. }
  187. a.SRSymbol:focus, a.SRSymbol:active,
  188. a.SRScope:focus, a.SRScope:active {
  189. text-decoration: underline;
  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. }