stacker.news/components/reply.module.css

46 lines
784 B
CSS
Raw Normal View History

2021-04-14 23:56:29 +00:00
.reply {
max-width: 600px;
2021-09-23 20:09:07 +00:00
padding-right: 15px;
2021-11-12 22:39:52 +00:00
padding-bottom: 1rem;
2021-09-23 20:09:07 +00:00
}
.replyButtons {
font-size: 70%;
color: var(--theme-grey);
2021-09-23 20:09:07 +00:00
font-weight: bold;
2023-01-26 16:11:55 +00:00
display: flex;
align-items: center;
2021-09-23 20:09:07 +00:00
cursor: pointer;
2023-07-24 18:35:05 +00:00
padding: .25rem 0 .5rem 0;
2021-11-12 22:39:52 +00:00
line-height: 1rem;
vertical-align: middle;
2021-04-27 00:55:48 +00:00
}
.skeleton .input {
background-color: var(--theme-grey);
2021-04-27 00:55:48 +00:00
width: 100%;
border-radius: .4rem;
height: 115px;
margin-bottom: 1rem;
}
.skeleton .button {
background-color: var(--theme-grey);
2021-04-27 00:55:48 +00:00
border-radius: .4rem;
margin-top: .25rem;
width: 71px;
height: 38px;
2021-07-01 23:51:58 +00:00
}
.noTopLeftRadius textarea {
border-top-left-radius: 0;
}
.reply textarea {
margin-top: -1px;
}
.reply .text {
margin-top: -1px;
height: auto;
2021-04-14 23:56:29 +00:00
}