* [ui] msgprint text overflow fix * fix render tags in list view * remove notify.js, tag-it.min.js from build.jsonversion-14
@@ -63,8 +63,6 @@ | |||||
"public/js/lib/taggle/taggle.min.js", | "public/js/lib/taggle/taggle.min.js", | ||||
"public/js/lib/jquery/jquery.hotkeys.js", | "public/js/lib/jquery/jquery.hotkeys.js", | ||||
"public/js/lib/summernote/summernote.js", | "public/js/lib/summernote/summernote.js", | ||||
"public/js/lib/notify.js", | |||||
"public/js/lib/tag-it.min.js", | |||||
"public/js/lib/bootstrap.min.js", | "public/js/lib/bootstrap.min.js", | ||||
"public/js/lib/moment/moment-with-locales.min.js", | "public/js/lib/moment/moment-with-locales.min.js", | ||||
"public/js/lib/moment/moment-timezone-with-data.min.js", | "public/js/lib/moment/moment-timezone-with-data.min.js", | ||||
@@ -112,6 +112,9 @@ a.badge-hover:focus .badge, | |||||
a.badge-hover:active .badge { | a.badge-hover:active .badge { | ||||
background-color: #D8DFE5; | background-color: #D8DFE5; | ||||
} | } | ||||
.msgprint { | |||||
word-wrap: break-word; | |||||
} | |||||
.msgprint pre { | .msgprint pre { | ||||
text-align: left; | text-align: left; | ||||
} | } | ||||
@@ -112,6 +112,9 @@ a.badge-hover:focus .badge, | |||||
a.badge-hover:active .badge { | a.badge-hover:active .badge { | ||||
background-color: #D8DFE5; | background-color: #D8DFE5; | ||||
} | } | ||||
.msgprint { | |||||
word-wrap: break-word; | |||||
} | |||||
.msgprint pre { | .msgprint pre { | ||||
text-align: left; | text-align: left; | ||||
} | } | ||||
@@ -112,6 +112,9 @@ a.badge-hover:focus .badge, | |||||
a.badge-hover:active .badge { | a.badge-hover:active .badge { | ||||
background-color: #D8DFE5; | background-color: #D8DFE5; | ||||
} | } | ||||
.msgprint { | |||||
word-wrap: break-word; | |||||
} | |||||
.msgprint pre { | .msgprint pre { | ||||
text-align: left; | text-align: left; | ||||
} | } | ||||
@@ -318,6 +318,8 @@ frappe.views.ListRenderer = Class.extend({ | |||||
if (this.settings.post_render_item) { | if (this.settings.post_render_item) { | ||||
this.settings.post_render_item(this, element, data); | this.settings.post_render_item(this, element, data); | ||||
} | } | ||||
this.render_tags(element, data); | |||||
}, | }, | ||||
// returns html for a data item, | // returns html for a data item, | ||||
@@ -137,6 +137,7 @@ a.badge-hover& { | |||||
.msgprint { | .msgprint { | ||||
// margin: 15px 0px; | // margin: 15px 0px; | ||||
// text-align: center; | // text-align: center; | ||||
word-wrap: break-word; | |||||
pre { | pre { | ||||
text-align: left; | text-align: left; | ||||