scinote-web/app/assets/stylesheets/shared/content/text.scss

34 lines
533 B
SCSS
Raw Normal View History

2023-07-21 16:35:14 +08:00
.content__text-container {
2023-09-04 19:58:11 +08:00
.text-header:not(.editing-name):not(.locked) {
&:hover {
background-color: $color-concrete;
}
}
2023-07-21 16:35:14 +08:00
// TinyMCE table of contents
.mce-toc ul,
.mce-toc li {
list-style-type: none;
}
.img-responsive {
display: inline;
vertical-align: baseline;
}
.view-text-element {
a {
pointer-events: initial;
}
}
img {
max-width: 100%;
}
2023-09-06 20:58:59 +08:00
.content__text-body:hover:not(.edit):not(.component__element--locked) {
2023-07-21 16:35:14 +08:00
background: $color-concrete;
}
}