forked from GNUsocial/gnu-social
Eliseu Amaro
3388e0e8f1
[PLUGINS][Repeat] WIP: Action added. [PLUGINS][Favourite] Changes to accomodate note card template refactoring. [CSS] Fixed textarea from being resized horizontally.
29 lines
440 B
CSS
29 lines
440 B
CSS
|
|
|
|
.section-panel-right {
|
|
right: 0;
|
|
}
|
|
|
|
#panel-right-toggle:not(:checked),
|
|
#panel-right-toggle:checked {
|
|
position: absolute;
|
|
top: -100%;
|
|
}
|
|
|
|
.panel-right-icon {
|
|
margin-left: var(--small) !important;
|
|
cursor: pointer !important;
|
|
border: 2px solid transparent;
|
|
}
|
|
|
|
.section-panel-right textarea {
|
|
resize: vertical;
|
|
}
|
|
|
|
@media only screen and (min-width: 1281px) {
|
|
.panel-right-icon {
|
|
display: none;
|
|
}
|
|
}
|
|
|