Former-commit-id: 89fa8e42f2e153e6c9b676d668779718714ac333 [formerly 89fa8e42f2e153e6c9b676d668779718714ac333 [formerly 89fa8e42f2e153e6c9b676d668779718714ac333 [formerly 89fa8e42f2e153e6c9b676d668779718714ac333 [formerly 955c03c4e108cbd8aa597fc947a9454e749d904f [formerly 5d8b1d73e78953d5f8e7fe4302764addfc2af0e8]]]]] Former-commit-id: 002ba25940eac6b1db5af8aa03a75ab43c3eccf3 Former-commit-id: 43f3ff50fc9a0d54bf21479e87da9b72b7fe20c3 Former-commit-id: 32ed9ae714fec2fdd3ba08fb40187e81e837edcb [formerly f34f58804fd798c1e271250f06f245b83f5e7c3e] Former-commit-id: 17640172e9d4f7b75dc2410e2faa6a93a90e09ac Former-commit-id: 521e6c1695e24e315d368d27db8f8232fbe30999 Former-commit-id: 3dd3d0a15ab7c64f29148a25fc8c4a0a5eb77497 Former-commit-id: 0753ae560b4ec27771a5b052f73a0a94436f9e0f Former-commit-id: 9a6f11a43fab5a79df9ab9527453c0f66ad7888d
100 lines
1.7 KiB
CSS
100 lines
1.7 KiB
CSS
/*弹出对话框页面样式组件
|
|
*/
|
|
|
|
/*reset
|
|
*/
|
|
html, body, div, span, applet, object, iframe,
|
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
|
a, abbr, acronym, address, big, cite, code,
|
|
del, dfn, em, font, img, ins, kbd, q, s, samp,
|
|
small, strike, strong, sub, sup, tt, var,
|
|
b, u, i, center,
|
|
dl, dt, dd, ol, ul, li,
|
|
fieldset, form, label, legend,
|
|
table, caption, tbody, tfoot, thead, tr, th, td {
|
|
margin: 0;
|
|
padding: 0;
|
|
outline: 0;
|
|
font-size: 100%;
|
|
}
|
|
|
|
body {
|
|
line-height: 1;
|
|
}
|
|
|
|
ol, ul {
|
|
list-style: none;
|
|
}
|
|
|
|
blockquote, q {
|
|
quotes: none;
|
|
}
|
|
|
|
ins {
|
|
text-decoration: none;
|
|
}
|
|
|
|
del {
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
}
|
|
|
|
/*module
|
|
*/
|
|
body {
|
|
background-color: #fff;
|
|
font: 12px/1.5 sans-serif, "宋体", "Arial Narrow", HELVETICA;
|
|
color: #646464;
|
|
}
|
|
|
|
/*tab*/
|
|
.tabhead {
|
|
position: relative;
|
|
z-index: 10;
|
|
}
|
|
|
|
.tabhead span {
|
|
display: inline-block;
|
|
padding: 0 5px;
|
|
height: 30px;
|
|
border: 1px solid #ccc;
|
|
background: url("images/dialog-title-bg.png") repeat-x;
|
|
text-align: center;
|
|
line-height: 30px;
|
|
cursor: pointer;
|
|
*margin-right: 5px;
|
|
}
|
|
|
|
.tabhead span.focus {
|
|
height: 31px;
|
|
border-bottom: none;
|
|
background: #fff;
|
|
}
|
|
|
|
.tabbody {
|
|
position: relative;
|
|
top: -1px;
|
|
margin: 0 auto;
|
|
border: 1px solid #ccc;
|
|
}
|
|
|
|
/*button*/
|
|
a.button {
|
|
display: block;
|
|
text-align: center;
|
|
line-height: 24px;
|
|
text-decoration: none;
|
|
height: 24px;
|
|
width: 95px;
|
|
border: 0;
|
|
color: #838383;
|
|
background: url(../../themes/default/images/icons-all.gif) no-repeat;
|
|
}
|
|
|
|
a.button:hover {
|
|
background-position: 0 -30px;
|
|
} |