fixed title overflow bug for list-forms and admin-form pages
This commit is contained in:
parent
210c7544e7
commit
b5702f72a5
@ -16,6 +16,7 @@
|
||||
|
||||
.form-item .title-row > .list-group-item-heading {
|
||||
color: #34628a;
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
.form-item:hover .title-row > .list-group-item-heading {
|
||||
|
||||
4
public/modules/forms/admin/css/admin-form.css
Normal file
4
public/modules/forms/admin/css/admin-form.css
Normal file
@ -0,0 +1,4 @@
|
||||
.admin-form-title {
|
||||
margin-bottom: 0px;
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
@ -27,8 +27,8 @@
|
||||
|
||||
<div class="page-header row" style="padding-bottom: 1em;">
|
||||
<div class="col-xs-10 col-sm-8">
|
||||
<h1 class="hidden-sm hidden-xs" data-ng-bind="myform.title" style="margin-bottom: 0px;"></h1>
|
||||
<h2 class="hidden-md hidden-lg" data-ng-bind="myform.title" style="margin-bottom: 0px;"></h2>
|
||||
<h1 class="hidden-sm hidden-xs admin-form-title" data-ng-bind="myform.title"></h1>
|
||||
<h2 class="hidden-md hidden-lg admin-form-title" data-ng-bind="myform.title"></h2>
|
||||
</div>
|
||||
<div class="col-xs-1 col-sm-2">
|
||||
<small class="pull-right">
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user