Add pagenator to contact list

Move contacts from plugin back to core
This commit is contained in:
RainLoop Team 2013-12-08 03:58:33 +04:00
parent daa958ed44
commit 0ec4fc89d4
44 changed files with 1250 additions and 889 deletions

View file

@ -1,5 +1,5 @@
@contacts-popup-left-width: 250px;
@contacts-popup-left-width: 270px;
.b-contacts-content {
@ -58,13 +58,28 @@
.e-search {
margin-top: 7px;
width: @contacts-popup-left-width - 25;
}
}
.b-list-footer-toopbar {
position: absolute;
left: 0;
bottom: 0;
height: 105px;
width: @contacts-popup-left-width;
background-color: #eee;
.box-shadow(inset 0 1px 0 #ccc);
.footer-pager {
padding: 8px 10px 0 0;
}
}
.b-list-content {
position: absolute;
top: 45px;
bottom: 60px;
bottom: 105px;
left: 0;
width: @contacts-popup-left-width;
overflow: hidden;
@ -81,6 +96,7 @@
font-size: 14px;
line-height: 13px;
background-color: #fff;
.box-shadow(inset 0 -1px 0 #ccc);
}
.listEmptyList, .listEmptyListLoading, .listEmptySearchList {

View file

@ -485,29 +485,6 @@ html.rl-no-preview-pane {
margin-right: 10px !important;
}
}
.pagenator {
.page {
display: inline-block;
color: #999;
text-decoration: none;
font-size: 24px;
padding: 3px;
cursor: pointer;
&:hover .pageNumber {
color: #555;
}
&.current .pageNumber {
font-size: 28px;
color: #333;
border-bottom: 2px solid #000;
}
}
}
}
.draggablePlace {

View file

@ -256,6 +256,13 @@ html.rl-no-preview-pane {
.b-text-part {
div[data-x-div-type=html] {
height: 100%;
div[data-x-div-type=html] {
height: 100%;
}
}
a {
color: blue;
text-decoration: underline;

View file

@ -80,11 +80,38 @@
}
}
.g-ui-height-100proc {
height: 100%;
}
.g-ui-resizable-delimiter-highlight {
border: none;
border-right: 6px solid #aaa;
}
.e-pagenator {
.e-page {
display: inline-block;
color: #999;
text-decoration: none;
font-size: 24px;
padding: 3px;
cursor: pointer;
&:hover .e-page-number {
color: #555;
}
&.current .e-page-number {
font-size: 28px;
color: #333;
border-bottom: 2px solid #000;
}
}
}
html.rgba .g-ui-resizable-delimiter-highlight {
border-right-color: rgba(0, 0, 0, 0.2);
}