This website works better with JavaScript.
Home
Explore
Help
Sign In
anoopmb
/
frappe
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
[ui] fix text editor field overflow (
#2133
)
version-14
Faris Ansari
8 years ago
committed by
Rushabh Mehta
parent
106eff83d5
commit
58ff01a284
2 changed files
with
8 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
frappe/public/css/form_grid.css
+5
-1
frappe/public/less/form_grid.less
+ 3
- 1
frappe/public/css/form_grid.css
View File
@@ -65,7 +65,6 @@
.grid-row > .row .col {
padding-left: 10px;
padding-right: 10px;
overflow: hidden;
}
.grid-body .btn-open-row {
padding-top: 5px;
@@ -122,6 +121,9 @@
background: none;
border: none;
}
.grid-body .grid-static-col[data-fieldtype="Text Editor"] {
overflow: hidden;
}
@media (max-width: 767px) {
.grid-body .btn-open-row {
margin-top: 0px;
+ 5
- 1
frappe/public/less/form_grid.less
View File
@@ -85,7 +85,7 @@
.col {
padding-left: 10px;
padding-right: 10px;
overflow: hidden;
//
overflow: hidden;
}
}
@@ -159,6 +159,10 @@
}
}
.grid-static-col[data-fieldtype="Text Editor"] {
overflow: hidden;
}
}
@media (max-width: 767px) {
Write
Preview
Loading…
Cancel
Save