| Server IP : 93.86.61.54 / Your IP : 216.73.216.60 Web Server : Apache/2.4.62 (Ubuntu) System : Linux rasin.ddns.net 6.8.0-124-generic #124~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 21:05:19 UTC x86_64 User : www-data ( 33) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/rasin.ddns.net/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;
}
}
}