123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- #isso-thread {
- margin-top: 3em;
- font-size: 0.95rem;
- overflow-wrap: break-word;
- > h4 {
- color: var(--c-txt);
- }
- }
- #isso-root {
- display: flex;
- flex-direction: column-reverse;
- }
- // Comment Post Box
- //
- .isso-postbox {
- padding: .7em;
- background-color: var(--c-bg-alt);
- border: 5px double var(--c-bg);
- label {
- font-size: .9em;
- }
- }
- .isso-textarea {
- min-height: 7em;
- padding: .1em .3em;
- background-color: var(--c-bg);
- }
- .isso-preview {
- border: 1px dashed var(--c-txt-alt);
- padding: .1em .3em;
- .isso-text-wrapper {
- margin: 0;
- }
- }
- .isso-auth-section {
- margin-top: .2rem;
- }
- .isso-input-wrapper {
- display: inline-block;
- position: relative;
- max-width: 25%;
- margin: 0;
- > label {
- display: inline-block;
- font-size: .85em;
- line-height: normal;
- }
- > input {
- width: 100%;
- border-color: var(--c-bg-alt);
- letter-spacing: normal;
- padding: .1em .3em;
- }
- }
- .isso-post-action {
- float: right;
- margin: 1.7em 0 0 .2em;
- }
- .isso-notification-section input[type=checkbox] {
- margin-right: .4em;
- vertical-align: middle;
- }
- .isso-preview,
- .isso-form-wrapper input[name="edit"],
- .isso-preview-mode .isso-post-action > input[name="preview"],
- .isso-preview-mode .isso-textarea {
- display: none;
- }
- .isso-preview-mode .isso-preview {
- display: block;
- }
- .isso-preview-mode .isso-post-action > input[name="edit"] {
- display: inline-block;
- }
- // Comments list
- //
- .isso-comment {
- border-top: 1px solid var(--c-bg-alt);
- clear: both;
- }
- .isso-follow-up {
- padding-left: calc(7% + 1em);
- }
- .isso-avatar {
- float: left;
- margin-top: 1em;
- > img {
- max-width: 2.5em;
- height: auto;
- border-radius: 50%;
- }
- }
- .isso-text-wrapper {
- margin: .8em 0 1em 3.5em;
- display: flex;
- flex-direction: column;
- }
- .isso-comment-header {
- font-size: .9em;
- line-height: normal;
- .isso-spacer {
- margin: 0 .5em;
- color: var(--c-bg-alt);
- }
- .isso-permalink {
- color: var(--c-txt-alt);
- font-size: .9em;
- border: none;
- }
- }
- .isso-comment-footer {
- text-align: right;
- font-size: .95em;
- > a {
- border: none;
- margin-left: .5em;
- }
- }
- .isso-text {
- text-align: initial;
- a {
- border-color: var(--c-txt-alt);
- &:hover {
- border-color: $accent;
- }
- }
- p {
- margin: .8em 0;
- }
- }
- @media screen and (max-width:650px) {
- .isso-input-wrapper {
- display: block;
- max-width: 100%;
- margin-bottom: .3em;
- }
- .isso-post-action {
- margin-top: 1em;
- }
- }
|