dialogbase.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /*弹出对话框页面样式组件
  2. */
  3. /*reset
  4. */
  5. html, body, div, span, applet, object, iframe,
  6. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  7. a, abbr, acronym, address, big, cite, code,
  8. del, dfn, em, font, img, ins, kbd, q, s, samp,
  9. small, strike, strong, sub, sup, tt, var,
  10. b, u, i, center,
  11. dl, dt, dd, ol, ul, li,
  12. fieldset, form, label, legend,
  13. table, caption, tbody, tfoot, thead, tr, th, td {
  14. margin: 0;
  15. padding: 0;
  16. outline: 0;
  17. /* font-size: 100%; */
  18. }
  19. /* body {
  20. line-height: 1;
  21. } */
  22. ol, ul {
  23. list-style: none;
  24. }
  25. blockquote, q {
  26. quotes: none;
  27. }
  28. ins {
  29. text-decoration: none;
  30. }
  31. del {
  32. text-decoration: line-through;
  33. }
  34. table {
  35. border-collapse: collapse;
  36. border-spacing: 0;
  37. }
  38. /*module
  39. */
  40. body {
  41. background-color: #fff;
  42. /* font: 12px/1.5 sans-serif, "宋体", "Arial Narrow", HELVETICA; */
  43. color: #646464;
  44. }
  45. /*tab*/
  46. .tabhead {
  47. position: relative;
  48. z-index: 10;
  49. }
  50. .tabhead span {
  51. display: inline-block;
  52. padding: 0 5px;
  53. height: 30px;
  54. border: 1px solid #ccc;
  55. background: #EEE;
  56. text-align: center;
  57. line-height: 30px;
  58. cursor: pointer;
  59. *margin-right: 5px;
  60. border-radius: 3px 3px 0 0;
  61. }
  62. .tabhead span.focus {
  63. height: 31px;
  64. border-bottom: none;
  65. background: #fff;
  66. }
  67. .tabbody {
  68. position: relative;
  69. top: -1px;
  70. margin: 0 auto;
  71. border: 1px solid #ccc;
  72. }
  73. /*button*/
  74. a.button {
  75. display: block;
  76. text-align: center;
  77. line-height: 24px;
  78. text-decoration: none;
  79. height: 24px;
  80. width: 95px;
  81. border: 0;
  82. color: #838383;
  83. background: url(../../themes/default/images/icons-all.gif) no-repeat;
  84. }
  85. a.button:hover {
  86. background-position: 0 -30px;
  87. }
  88. .border-color{
  89. border-color:#ffffff;
  90. }
  91. .input-200{
  92. width: 200px;
  93. border-style:none
  94. }
  95. .input-150{
  96. width: 150px;
  97. border-style:none
  98. }
  99. .input-100{
  100. width: 100px;
  101. border-style:none
  102. }
  103. .input-50{
  104. width: 50px;
  105. border-style:none
  106. }