mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 23:43:17 +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 {
|
.prefDefault {
|
||||||
float: right;
|
float: right;
|
||||||
width:48%;
|
width:48%;
|
||||||
|
overflow-x: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
max-width: 300px;
|
||||||
}
|
}
|
||||||
.prefValue textarea, textarea.prefValue {
|
.prefValue textarea, textarea.prefValue {
|
||||||
width: 99%;
|
width: 99%;
|
||||||
|
@ -73,6 +73,9 @@ tr.prefRow:hover .prefHelp {
|
|||||||
.prefDefault {
|
.prefDefault {
|
||||||
float: right;
|
float: right;
|
||||||
width: 48%;
|
width: 48%;
|
||||||
|
overflow-x: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
max-width: 300px;
|
||||||
}
|
}
|
||||||
.prefValue textarea,
|
.prefValue textarea,
|
||||||
textarea.prefValue {
|
textarea.prefValue {
|
||||||
|
Loading…
Reference in New Issue
Block a user