Fix overflow scrolling for listView

This commit is contained in:
Brian Federle 2013-10-02 12:57:11 -07:00
parent f0cec55fea
commit 3689ff7405
3 changed files with 18 additions and 5 deletions

View File

@ -45,7 +45,7 @@ var md5Hashed = false;
var md5HashedLogin = false;
//page size for API call (e.g."listXXXXXXX&pagesize=N" )
var pageSize = 20;
var pageSize = 30;
var rootAccountId = 1;

View File

@ -221,6 +221,8 @@ body {
// List view widget
.list-view {
@include csui-list;
max-height: 85%;
}
// Panel toolbars

View File

@ -16,6 +16,7 @@
// under the License.
@mixin csui-list {
margin: 20px;
overflow: auto;
table {
width: 100%;
@ -36,17 +37,27 @@
tr td {
padding: 5px;
border-bottom: 1px solid #ccc;
border: 1px solid #ccc;
font-size: 11px;
white-space: nowrap;
max-width: 100px;
span {
float: left;
}
}
th.quick-view, td.quick-view {
width: 40px;
th, td {
&.quick-view {
width: 40px;
}
&.actions {
width: 80px;
}
&.reorder {
width: 150px;
}
}
td.quick-view {