Skip to content

Commit 1a349c2

Browse files
committedOct 14, 2021
add missing css in scss
1 parent 066eee0 commit 1a349c2

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed
 

‎FISE/public/custom.css

+18
Original file line numberDiff line numberDiff line change
@@ -22674,6 +22674,24 @@ a {
2267422674
.sidebar-close {
2267522675
display: none; }
2267622676

22677+
.eea-list-tiles span.description.expandable:not(.expanded) .hidden-text {
22678+
display: none; }
22679+
22680+
.eea-list-tiles span.description.expandable:not(.expanded) .visible-text::after {
22681+
content: "\00a0...";
22682+
display: inline-block; }
22683+
22684+
.eea-list-tiles span.description.expandable.expanded .read-more {
22685+
display: none; }
22686+
22687+
.eea-list-tiles span.description.expandable:not(.expanded) .read-less {
22688+
display: none; }
22689+
22690+
.read-more, .read-less {
22691+
cursor: pointer;
22692+
text-decoration: underline;
22693+
display: block; }
22694+
2267722695
@media (max-width: 768px) {
2267822696
body.filters-open .span3.right-column-area.eea-section.eea-right-section {
2267922697
transform: translateX(-100%); }

‎FISE/public/src/main.scss

+24
Original file line numberDiff line numberDiff line change
@@ -486,6 +486,30 @@ td[data-title="Organisation email"] span {
486486
.sidebar-close {
487487
display: none;
488488
}
489+
490+
.eea-list-tiles span.description.expandable:not(.expanded) .hidden-text {
491+
display: none;
492+
}
493+
494+
.eea-list-tiles span.description.expandable:not(.expanded) .visible-text::after {
495+
content: "\00a0...";
496+
display: inline-block;
497+
}
498+
499+
.eea-list-tiles span.description.expandable.expanded .read-more {
500+
display: none;
501+
}
502+
503+
.eea-list-tiles span.description.expandable:not(.expanded) .read-less {
504+
display: none;
505+
}
506+
507+
.read-more, .read-less {
508+
cursor: pointer;
509+
text-decoration: underline;
510+
display: block;
511+
}
512+
489513
@media (max-width: 768px) {
490514
body.filters-open .span3.right-column-area.eea-section.eea-right-section {
491515
transform: translateX(-100%);

0 commit comments

Comments
 (0)
Please sign in to comment.