stacker.news/components/reply.module.css

50 lines
827 B
CSS
Raw Permalink 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 {
2024-07-12 20:18:13 +00:00
font-size: 80%;
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-11-12 22:39:52 +00:00
line-height: 1rem;
vertical-align: middle;
2021-04-27 00:55:48 +00:00
}
2024-07-12 20:18:13 +00:00
.replyButtons > * {
padding-top: .4rem;
padding-bottom: .8rem;
cursor: pointer;
}
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
}