mirror of
https://github.com/wassname/talk.git
synced 2026-07-01 11:10:55 +08:00
41 lines
633 B
CSS
41 lines
633 B
CSS
.content {
|
|
background: #fff;
|
|
border: solid 1px #bbb;
|
|
min-height: 120px;
|
|
box-sizing: border-box;
|
|
outline: 0;
|
|
overflow-y: auto;
|
|
width: 100%;
|
|
padding: 10px;
|
|
font-style: unset;
|
|
}
|
|
|
|
.button > i {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.button {
|
|
background-color: transparent;
|
|
padding: 3px;
|
|
border: none;
|
|
color: #4e4e4e;
|
|
margin-right: 3px;
|
|
}
|
|
|
|
.button:hover{
|
|
cursor: pointer;
|
|
border-radius: 3px;
|
|
background-color: #eae8e8;
|
|
}
|
|
|
|
.actionBar {
|
|
user-select: none;
|
|
padding: 5px 10px;
|
|
border-top: 1px solid #bbb;
|
|
border-left: 1px solid #bbb;
|
|
border-right: 1px solid #bbb;
|
|
}
|
|
|
|
.container {
|
|
box-sizing: border-box;
|
|
} |