. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
| Server IP : 162.0.212.4 / Your IP :
216.73.216.14 [
Web Server : LiteSpeed System : Linux premium146.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : alshnoli ( 2431) PHP Version : 8.3.28 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/alshnoli/public_html/wp-content/plugins/tablepress/css/ |
Upload File : |
/**
* TablePress Default CSS - DataTables-Pagination-related code.
*
* Attention: Do not modify this file directly, but use the "Custom CSS" textarea
* on the "Plugin Options" screen of TablePress.
*
* @package TablePress
* @subpackage Frontend CSS
* @author Tobias Bäthge, Allan Jardine
* @since 3.0.0
*/
/* Default toggle variable for LTR and RTL CSS. */
$direction: "ltr" !default;
/* Default variables for the LTR CSS. */
$align-side: left;
/* Variables for the RTL CSS. */
@if "rtl" == $direction {
$align-side: right;
}
/* Pagination. */
@mixin dt-paging {
.dt-paging {
.dt-paging-button {
box-sizing: border-box;
display: inline-block;
min-width: 32px;
height: 32px;
padding: 0 5px;
margin-#{$align-side}: 2px;
text-align: center;
vertical-align: middle;
text-decoration: none !important;
cursor: pointer;
font-size: 1em;
color: inherit !important;
border: 1px solid transparent;
border-radius: 2px;
background: transparent;
&.current,
&:hover {
border: 1px solid #111111;
}
&.disabled,
&.disabled:hover,
&.disabled:active {
cursor: default;
color: rgba(0, 0, 0, 0.3) !important;
border: 1px solid transparent;
outline: none;
}
}
> .dt-paging-button:first-child {
margin-#{$align-side}: 0;
}
.ellipsis {
padding: 0 1em;
}
}
}