60 lines
979 B
CSS
60 lines
979 B
CSS
.min_msg {
|
|
position: absolute;
|
|
bottom: 0;
|
|
right: 0;
|
|
width: 16px;
|
|
height: 16px;
|
|
background: url(../images/common/mail.gif) no-repeat #fff;
|
|
border: 1px solid #eee;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.board_board {
|
|
position: absolute;
|
|
bottom: 0;
|
|
right: 0;
|
|
width: 300px;
|
|
height: 180px;
|
|
background: #eee;
|
|
border: 1px solid #aaa;
|
|
display: none;
|
|
overflow: hidden;
|
|
padding: 5px 0;
|
|
}
|
|
.board_msg {
|
|
overflow: auto;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
.rightup_msg {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
cursor: pointer;
|
|
}
|
|
.rightup_msg a {
|
|
margin: 0 5px;
|
|
}
|
|
.board_msg a {
|
|
float: left;
|
|
clear: both;
|
|
line-height: 20px;
|
|
padding-left: 20px;
|
|
background: url(../images/common/page.gif) left center;
|
|
}
|
|
.new_msg {
|
|
display: inline-block;
|
|
width: 28px;
|
|
height: 12px;
|
|
text-align: right;
|
|
background: url(../images/common/new.gif) no-repeat center;
|
|
}
|
|
.board_msg a,
|
|
.board_msg a:link,
|
|
.board_msg a:visited {
|
|
color: #00f;
|
|
outline: none;
|
|
}
|
|
.board_msg a:hover {
|
|
text-decoration: underline;
|
|
} |