docs/api-2.1/search/search.css

changeset 390
d345541018fa
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/docs/api-2.1/search/search.css	Sat Feb 06 19:11:44 2021 +0100
     1.3 @@ -0,0 +1,271 @@
     1.4 +/*---------------- Search Box */
     1.5 +
     1.6 +#FSearchBox {
     1.7 +    float: left;
     1.8 +}
     1.9 +
    1.10 +#MSearchBox {
    1.11 +    white-space : nowrap;
    1.12 +    float: none;
    1.13 +    margin-top: 8px;
    1.14 +    right: 0px;
    1.15 +    width: 170px;
    1.16 +    height: 24px;
    1.17 +    z-index: 102;
    1.18 +}
    1.19 +
    1.20 +#MSearchBox .left
    1.21 +{
    1.22 +    display:block;
    1.23 +    position:absolute;
    1.24 +    left:10px;
    1.25 +    width:20px;
    1.26 +    height:19px;
    1.27 +    background:url('search_l.png') no-repeat;
    1.28 +    background-position:right;
    1.29 +}
    1.30 +
    1.31 +#MSearchSelect {
    1.32 +    display:block;
    1.33 +    position:absolute;
    1.34 +    width:20px;
    1.35 +    height:19px;
    1.36 +}
    1.37 +
    1.38 +.left #MSearchSelect {
    1.39 +    left:4px;
    1.40 +}
    1.41 +
    1.42 +.right #MSearchSelect {
    1.43 +    right:5px;
    1.44 +}
    1.45 +
    1.46 +#MSearchField {
    1.47 +    display:block;
    1.48 +    position:absolute;
    1.49 +    height:19px;
    1.50 +    background:url('search_m.png') repeat-x;
    1.51 +    border:none;
    1.52 +    width:115px;
    1.53 +    margin-left:20px;
    1.54 +    padding-left:4px;
    1.55 +    color: #909090;
    1.56 +    outline: none;
    1.57 +    font: 9pt Arial, Verdana, sans-serif;
    1.58 +    -webkit-border-radius: 0px;
    1.59 +}
    1.60 +
    1.61 +#FSearchBox #MSearchField {
    1.62 +    margin-left:15px;
    1.63 +}
    1.64 +
    1.65 +#MSearchBox .right {
    1.66 +    display:block;
    1.67 +    position:absolute;
    1.68 +    right:10px;
    1.69 +    top:8px;
    1.70 +    width:20px;
    1.71 +    height:19px;
    1.72 +    background:url('search_r.png') no-repeat;
    1.73 +    background-position:left;
    1.74 +}
    1.75 +
    1.76 +#MSearchClose {
    1.77 +    display: none;
    1.78 +    position: absolute;
    1.79 +    top: 4px;
    1.80 +    background : none;
    1.81 +    border: none;
    1.82 +    margin: 0px 4px 0px 0px;
    1.83 +    padding: 0px 0px;
    1.84 +    outline: none;
    1.85 +}
    1.86 +
    1.87 +.left #MSearchClose {
    1.88 +    left: 6px;
    1.89 +}
    1.90 +
    1.91 +.right #MSearchClose {
    1.92 +    right: 2px;
    1.93 +}
    1.94 +
    1.95 +.MSearchBoxActive #MSearchField {
    1.96 +    color: #000000;
    1.97 +}
    1.98 +
    1.99 +/*---------------- Search filter selection */
   1.100 +
   1.101 +#MSearchSelectWindow {
   1.102 +    display: none;
   1.103 +    position: absolute;
   1.104 +    left: 0; top: 0;
   1.105 +    border: 1px solid #90A5CE;
   1.106 +    background-color: #F9FAFC;
   1.107 +    z-index: 10001;
   1.108 +    padding-top: 4px;
   1.109 +    padding-bottom: 4px;
   1.110 +    -moz-border-radius: 4px;
   1.111 +    -webkit-border-top-left-radius: 4px;
   1.112 +    -webkit-border-top-right-radius: 4px;
   1.113 +    -webkit-border-bottom-left-radius: 4px;
   1.114 +    -webkit-border-bottom-right-radius: 4px;
   1.115 +    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
   1.116 +}
   1.117 +
   1.118 +.SelectItem {
   1.119 +    font: 8pt Arial, Verdana, sans-serif;
   1.120 +    padding-left:  2px;
   1.121 +    padding-right: 12px;
   1.122 +    border: 0px;
   1.123 +}
   1.124 +
   1.125 +span.SelectionMark {
   1.126 +    margin-right: 4px;
   1.127 +    font-family: monospace;
   1.128 +    outline-style: none;
   1.129 +    text-decoration: none;
   1.130 +}
   1.131 +
   1.132 +a.SelectItem {
   1.133 +    display: block;
   1.134 +    outline-style: none;
   1.135 +    color: #000000; 
   1.136 +    text-decoration: none;
   1.137 +    padding-left:   6px;
   1.138 +    padding-right: 12px;
   1.139 +}
   1.140 +
   1.141 +a.SelectItem:focus,
   1.142 +a.SelectItem:active {
   1.143 +    color: #000000; 
   1.144 +    outline-style: none;
   1.145 +    text-decoration: none;
   1.146 +}
   1.147 +
   1.148 +a.SelectItem:hover {
   1.149 +    color: #FFFFFF;
   1.150 +    background-color: #3D578C;
   1.151 +    outline-style: none;
   1.152 +    text-decoration: none;
   1.153 +    cursor: pointer;
   1.154 +    display: block;
   1.155 +}
   1.156 +
   1.157 +/*---------------- Search results window */
   1.158 +
   1.159 +iframe#MSearchResults {
   1.160 +    width: 60ex;
   1.161 +    height: 15em;
   1.162 +}
   1.163 +
   1.164 +#MSearchResultsWindow {
   1.165 +    display: none;
   1.166 +    position: absolute;
   1.167 +    left: 0; top: 0;
   1.168 +    border: 1px solid #000;
   1.169 +    background-color: #EEF1F7;
   1.170 +    z-index:10000;
   1.171 +}
   1.172 +
   1.173 +/* ----------------------------------- */
   1.174 +
   1.175 +
   1.176 +#SRIndex {
   1.177 +    clear:both; 
   1.178 +    padding-bottom: 15px;
   1.179 +}
   1.180 +
   1.181 +.SREntry {
   1.182 +    font-size: 10pt;
   1.183 +    padding-left: 1ex;
   1.184 +}
   1.185 +
   1.186 +.SRPage .SREntry {
   1.187 +    font-size: 8pt;
   1.188 +    padding: 1px 5px;
   1.189 +}
   1.190 +
   1.191 +body.SRPage {
   1.192 +    margin: 5px 2px;
   1.193 +}
   1.194 +
   1.195 +.SRChildren {
   1.196 +    padding-left: 3ex; padding-bottom: .5em 
   1.197 +}
   1.198 +
   1.199 +.SRPage .SRChildren {
   1.200 +    display: none;
   1.201 +}
   1.202 +
   1.203 +.SRSymbol {
   1.204 +    font-weight: bold; 
   1.205 +    color: #425E97;
   1.206 +    font-family: Arial, Verdana, sans-serif;
   1.207 +    text-decoration: none;
   1.208 +    outline: none;
   1.209 +}
   1.210 +
   1.211 +a.SRScope {
   1.212 +    display: block;
   1.213 +    color: #425E97; 
   1.214 +    font-family: Arial, Verdana, sans-serif;
   1.215 +    text-decoration: none;
   1.216 +    outline: none;
   1.217 +}
   1.218 +
   1.219 +a.SRSymbol:focus, a.SRSymbol:active,
   1.220 +a.SRScope:focus, a.SRScope:active {
   1.221 +    text-decoration: underline;
   1.222 +}
   1.223 +
   1.224 +span.SRScope {
   1.225 +    padding-left: 4px;
   1.226 +}
   1.227 +
   1.228 +.SRPage .SRStatus {
   1.229 +    padding: 2px 5px;
   1.230 +    font-size: 8pt;
   1.231 +    font-style: italic;
   1.232 +}
   1.233 +
   1.234 +.SRResult {
   1.235 +    display: none;
   1.236 +}
   1.237 +
   1.238 +DIV.searchresults {
   1.239 +    margin-left: 10px;
   1.240 +    margin-right: 10px;
   1.241 +}
   1.242 +
   1.243 +/*---------------- External search page results */
   1.244 +
   1.245 +.searchresult {
   1.246 +    background-color: #F0F3F8;
   1.247 +}
   1.248 +
   1.249 +.pages b {
   1.250 +   color: white;
   1.251 +   padding: 5px 5px 3px 5px;
   1.252 +   background-image: url("../tab_a.png");
   1.253 +   background-repeat: repeat-x;
   1.254 +   text-shadow: 0 1px 1px #000000;
   1.255 +}
   1.256 +
   1.257 +.pages {
   1.258 +    line-height: 17px;
   1.259 +    margin-left: 4px;
   1.260 +    text-decoration: none;
   1.261 +}
   1.262 +
   1.263 +.hl {
   1.264 +    font-weight: bold;
   1.265 +}
   1.266 +
   1.267 +#searchresults {
   1.268 +    margin-bottom: 20px;
   1.269 +}
   1.270 +
   1.271 +.searchpages {
   1.272 +    margin-top: 10px;
   1.273 +}
   1.274 +

mercurial