2021-01-27 16:04:21 +00:00
|
|
|
/** Format Text - Show more styles. */
|
|
|
|
/** Styles of elements inside the directive should be placed in format-text.scss */
|
2021-02-25 14:38:06 +00:00
|
|
|
@import "~theme/globals";
|
|
|
|
|
2021-01-27 16:04:21 +00:00
|
|
|
core-format-text {
|
|
|
|
user-select: text;
|
|
|
|
word-break: break-word;
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
|
|
|
&[maxHeight],
|
|
|
|
&[ng-reflect-max-height] {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
/* Force display inline */
|
|
|
|
&.inline {
|
|
|
|
display: inline-block;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is to allow clicks in radio/checkbox content.
|
|
|
|
&.core-text-formatted {
|
|
|
|
cursor: pointer;
|
|
|
|
pointer-events: auto;
|
|
|
|
|
|
|
|
.core-show-more {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(.core-shortened) {
|
|
|
|
max-height: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.core-shortened {
|
|
|
|
overflow: hidden;
|
|
|
|
min-height: 50px;
|
|
|
|
|
|
|
|
.core-show-more {
|
|
|
|
text-align: end;
|
|
|
|
font-size: 14px;
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
@include position(null, 0, 0, null);
|
|
|
|
z-index: 7;
|
|
|
|
background-color: var(--background);
|
|
|
|
color: var(--color);
|
|
|
|
padding-left: 10px; // RTL
|
|
|
|
}
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
content: '';
|
|
|
|
height: 100%;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) calc(100% - 50px), var(--background) calc(100% - 15px));
|
|
|
|
background: -webkit-gradient(left top, left bottom, color-stop(calc(100% - 50px), rgba(0, 0, 0, 0)), color-stop(calc(100% - 15px), var(--background)));
|
|
|
|
background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) calc(100% - 50px), var(--background) calc(100% - 15px));
|
|
|
|
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) calc(100% - 50px), var(--background) calc(100% - 15px));
|
|
|
|
z-index: 6;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.core-expand-in-fullview {
|
|
|
|
.core-show-more {
|
2021-05-03 13:32:10 +00:00
|
|
|
@include push-arrow-color(626262, true);
|
2021-01-27 16:04:21 +00:00
|
|
|
@include padding-horizontal(null, 18px);
|
|
|
|
@include background-position(end, 0, center);
|
|
|
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 14px 14px;
|
2021-05-03 13:32:10 +00:00
|
|
|
|
|
|
|
@include darkmode() {
|
|
|
|
@include push-arrow-color(ffffff, true);
|
|
|
|
}
|
2021-01-27 16:04:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-02-25 14:38:06 +00:00
|
|
|
|
|
|
|
.core-adapted-img-container {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.core-image-viewer-icon {
|
|
|
|
position: absolute;
|
|
|
|
@include position(null, 10px, 10px, null);
|
|
|
|
color: var(--black);
|
|
|
|
border-radius: 5px;
|
|
|
|
background-color: rgba(255, 255, 255, .5);
|
|
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
max-width: 32px;
|
|
|
|
line-height: 32px;
|
|
|
|
font-size: 24px;
|
|
|
|
|
|
|
|
ion-icon {
|
|
|
|
margin-top: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: .7;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
body.dark {
|
|
|
|
core-format-text .core-image-viewer-icon {
|
|
|
|
background-color: rgba(0, 0, 0, .5);
|
|
|
|
}
|
2021-01-27 16:04:21 +00:00
|
|
|
}
|