Giới hạn chữ ký bằng CSS

  • Thread starter Thread starter PVS
  • Ngày gửi Ngày gửi

PVS

Super Moderator
Thành viên BQT
Giới hạn chữ ký bằng css, tức là nếu chữ ký dài hơn sẽ có thanh trượt để kéo xuống.

Mở template message.css tìm đoạn sau:
Mã:
.message .signature
{
@property "messageSignature";
font-size: 12px;
color: @dimmedTextColor;
padding: 5px 0 0;
margin-top: 5px;
border-top: 1px dashed @primaryLighterStill;
@property "/messageSignature";
}

Thay bằng
Mã:
.message .signature
{
@property "messageSignature";
height: 30px;
overflow-y: auto;
font-size: 12px;
color: @dimmedTextColor;
padding: 5px 0 0;
margin-top: 5px;
border-top: 1px dashed @primaryLighterStill;
@property "/messageSignature";
}

Hoặc đơn giản hơn là mở template EXTRA.css thêm vào đoạn sau:
Mã:
.message .signature
{
height: 30px !important;
overflow-y: auto !important;
}

Thay 30px bằng giá trị chiều cao chữ ký mà bạn muốn


Nguồn: dulieutinhoc.com​
 
Back
Top