mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 15:33:23 +01:00
Limit text length of pref default value, prevents horizontal scrollbar
This commit is contained in:
parent
c58601d830
commit
2fca02a3c8
@ -56,6 +56,9 @@ tr.prefRow:hover .prefHelp {
|
||||
.prefDefault {
|
||||
float: right;
|
||||
width:48%;
|
||||
overflow-x: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 300px;
|
||||
}
|
||||
.prefValue textarea, textarea.prefValue {
|
||||
width: 99%;
|
||||
|
@ -73,6 +73,9 @@ tr.prefRow:hover .prefHelp {
|
||||
.prefDefault {
|
||||
float: right;
|
||||
width: 48%;
|
||||
overflow-x: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 300px;
|
||||
}
|
||||
.prefValue textarea,
|
||||
textarea.prefValue {
|
||||
|
Loading…
Reference in New Issue
Block a user