Bladeren bron

Merge pull request #2976 from netchampfaris/ui-fixes

[fix] list view assign to area
version-14
Nabin Hait 8 jaren geleden
committed by GitHub
bovenliggende
commit
84798ea48b
2 gewijzigde bestanden met toevoegingen van 8 en 13 verwijderingen
  1. +4
    -6
      frappe/public/css/list.css
  2. +4
    -7
      frappe/public/less/list.less

+ 4
- 6
frappe/public/css/list.css Bestand weergeven

@@ -153,15 +153,13 @@
.filterable {
cursor: pointer;
display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
width: 100%;
}
.col-sm-2 .filterable {
max-width: 90px;
}
.col-sm-3 .filterable {
.col-sm-2:not(.list-row-right) .filterable,
.col-sm-3:not(.list-row-right) .filterable {
max-width: 145px;
overflow: hidden;
width: 100%;
}
.doclist-row .label {
margin-right: 8px;


+ 4
- 7
frappe/public/less/list.less Bestand weergeven

@@ -190,17 +190,14 @@
.filterable {
cursor: pointer;
display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
width: 100%;
}

.col-sm-2 .filterable {
max-width: 90px;
}

.col-sm-3 .filterable {
.col-sm-2:not(.list-row-right) .filterable,
.col-sm-3:not(.list-row-right) .filterable {
max-width: 145px;
overflow: hidden;
width: 100%;
}




Laden…
Annuleren
Opslaan