home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / xampp / xampp-cocoon-addon-1.4.9-installer.exe / forms.css < prev    next >
Encoding:
Cascading Style Sheet File  |  2004-07-12  |  1.6 KB  |  76 lines

  1. /*
  2. * Copyright 1999-2004 The Apache Software Foundation
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. *     http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. .forms-tab {
  17.     background-color: white;
  18.     border: 1px solid black;
  19.     border-bottom-width: 0px;
  20.     padding: 2px 1em 2px 1em;
  21.     margin-right: 5px;
  22.     position: relative;
  23.     text-decoration: none;
  24.     top: -1px;
  25.     z-index: 1;
  26.     cursor: pointer;
  27. }
  28.  
  29. .forms-tab.forms-activeTab {
  30.     font-weight: bold;
  31.     padding-top: 5px;
  32.     cursor: default;
  33.     z-index: 3;
  34. }
  35.  
  36. .forms-tabContent {
  37.     background-color: white;
  38.     border: 1px solid black;
  39.     padding: 1em;
  40.     position: relative;
  41.     z-index: 2;
  42. }
  43.  
  44. .forms-validation-message, a.forms-validation-message:link {
  45.     color: red;
  46.     font-weight: bold;
  47. }
  48.  
  49. .forms-validation-errors {
  50. }
  51.  
  52. .forms-validation-error {
  53. }
  54.  
  55. .forms-field-required {
  56.     color:blue;
  57.     font-weight: bold;
  58. }
  59.  
  60. .forms-help {
  61.     border-style: dotted;
  62.     border-width: 1px;
  63.     padding: 5px;
  64.     background-color:#FFFFC0; /* light yellow */
  65.     width: 200px; /* otherwise IE does a weird layout */
  66.     z-index:1000; /* must be higher than forms-tabContent */
  67. }
  68.  
  69. .forms-doubleList select {
  70.     width: 150px;
  71. }
  72.  
  73. .forms-doubleList input {
  74.     width: 40px;
  75. }
  76.