الگو:پاسخ تاشو/styles.css: تفاوت میان نسخهها
ظاهر
Nazarzadeh (بحث | مشارکتها) صفحهای تازه حاوی « .question { transition: all 0.3s ease; } .question:hover { background: #eaffec; } .question::after { content: '▼'; position: absolute; left: 15px; transition: transform 0.3s ease; color: #94f7a1; font-size: 12px; } .question.active::after { transform: rotate(180deg);...» ایجاد کرد |
Nazarzadeh (بحث | مشارکتها) بدون خلاصۀ ویرایش |
||
| خط ۲۶: | خط ۲۶: | ||
.answer:not(.expanded) { | .answer:not(.expanded) { | ||
max-height: | max-height: 2em; | ||
white-space: nowrap; | white-space: nowrap; | ||
text-overflow: ellipsis; | text-overflow: ellipsis; | ||
نسخهٔ ۷ فوریهٔ ۲۰۲۶، ساعت ۱۲:۱۱
.question {
transition: all 0.3s ease;
}
.question:hover {
background: #eaffec;
}
.question::after {
content: '▼';
position: absolute;
left: 15px;
transition: transform 0.3s ease;
color: #94f7a1;
font-size: 12px;
}
.question.active::after {
transform: rotate(180deg);
}
.answer {
overflow: hidden;
transition: all 0.3s ease;
}
.answer:not(.expanded) {
max-height: 2em;
white-space: nowrap;
text-overflow: ellipsis;
}
.answer.expanded {
max-height: 1000px;
white-space: normal;
}