Selecting this button brings the user to the last page in the catalog. This button appears in the main control bar on desktop systems and tablets; on mobile phones it is added to a secondary control bar. You can size, skin, and position this button by using CSS.
CSS properties of the main viewer area
The appearance of the button is controlled with the following CSS class selector:
.s7ecatalogsearchviewer .s7lastpagebutton .s7panleftbutton
CSS property |
Description |
---|---|
top |
Position from the top border of the main control bar (on desktop systems and tablets) or secondary control bar (on mobile phones), including padding. |
right |
Position from the right border of the main control bar (on desktop systems and tablets) or secondary control bar (on mobile phones), including padding. |
left |
Position from the left border of the main control bar (on desktop systems and tablets) or secondary control bar (on mobile phones), including padding. |
bottom |
Position from the bottom border of the main control bar (on desktop systems and tablets) or secondary control bar (on mobile phones), including padding. |
width |
Width of the button. |
height |
Height of the button. |
background-image |
The image that is displayed for a given button state. |
background-position |
Position inside artwork sprite, if CSS sprites are used. See also CSS Sprites . |
This button supports the state
attribute selector, which can be used to apply different skins to different button states.
The button tool tip can be localized. See Localization of user interface elements for more information.
Example - To set up a last page button that is 28 x 28 pixels, and positioned 4 pixels from the bottom and 220 pixels from the left edge of the main control bar. And finally, displays a different image for each of the four different button states.
.s7ecatalogsearchviewer .s7lastpagebutton .s7panrightbutton {
bottom:4px;
right:220px;
width:32px;
height:32px;
}
.s7ecatalogsearchviewer .s7lastpagebutton .s7panrightbutton [state='up'] {
background-image:url(images/v2/LastPageButton_dark_up.png);
}
.s7ecatalogsearchviewer .s7lastpagebutton .s7panrightbutton [state='over'] {
background-image:url(images/v2/LastPageButton_dark_over.png);
}
.s7ecatalogsearchviewer .s7lastpagebutton .s7panrightbutton [state='down'] {
background-image:url(images/v2/LastPageButton_dark_down.png);
}
.s7ecatalogsearchviewer .s7lastpagebutton .s7panrightbutton [state='disabled'] {
background-image:url(images/v2/LastPageButton_dark_disabled.png);
}