mirror of
https://github.com/wassname/talk.git
synced 2026-07-04 02:46:01 +08:00
45 lines
765 B
CSS
45 lines
765 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 {
|
|
top: 0;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
border-radius: 4px;
|
|
padding: 0;
|
|
font-size: 14px;
|
|
margin-top: -2px;
|
|
background-color: transparent;
|
|
border: solid 1px transparent;
|
|
cursor: pointer;
|
|
height: 30px;
|
|
outline: 0;
|
|
width: 30px;
|
|
}
|
|
|
|
.button:hover{
|
|
background: #fcfcfc;
|
|
}
|
|
|
|
.actionBar {
|
|
user-select: none;
|
|
padding: 5px 10px;
|
|
border-top: 1px solid #bbb;
|
|
border-left: 1px solid #bbb;
|
|
border-right: 1px solid #bbb;
|
|
border-top-left-radius: 4px;
|
|
border-top-right-radius: 4px;
|
|
}
|
|
|
|
.container {
|
|
box-sizing: border-box;
|
|
} |