HEX
Server: nginx/1.27.1
System: Linux in-4 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64
User: ilikadirect (1186)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source
Upload Files
File: /storage/v6964/testingff/public_html/fdfctr/wp-content/plugins/tablepress/admin/css/common.scss
/**
 * CSS code for all TablePress admin screens
 *
 * @package TablePress
 * @subpackage Views CSS
 * @author Tobias Bäthge
 * @since 1.0.0
 */

/* Move down the header when the Screen Options or Help tabs are opened. */
#screen-meta[style$="block;"] ~ #tablepress-page {
	margin-top: 40px;
}

/* Move the Screen Options and Help link to their original position. Needed due to the full-width header. */
#screen-meta-links {
	position: absolute;
	right: 0;
}

#tablepress-page {
	margin: 0 0 0 -20px;

	#tablepress-body {
		padding: 0 20px;
	}

	.header {
		background: #ffffff;
		border-bottom: 1px solid #dedae6;
		align-items: center;
		display: flex;
		flex-wrap: wrap;
		padding-right: 260px; /* Space for hte screen meta links. */

		.name {
			border-right: 1px solid #dedae6;
			padding: 12px 24px 6px;

			img {
				vertical-align: middle;
				margin: 0 12px 6px 0;
				height: 32px;
			}
		}

		.buttons {
			padding: 0 12px;

			.tablepress-button {
				cursor: pointer;
				border: 1px solid #ffffff;
				border-radius: 3px;
				align-items: center;
				margin: 10px 12px;
				padding: 6px 4px 6px 12px;
				font-size: 14px;
				line-height: 1;
				text-decoration: none;
				transition: color 0.1s, background-color 0.1s, border-color 0.1s;
				display: inline-flex;
				color: #ffffff;
				background-color: #8ab547;
				border-color: #8ab547;

				&:hover,
				&:active,
				&:focus {
					color: #fff;
					background-color: #69b547;
					border-color: #69b547;
				}

				.dashicons {
					margin: 0 6px 0 4px;
				}
			}
		}
	}

	#tablepress-nav {
		background: #ffffff;
		padding: 0 0 0 20px;
	}

	.nav-menu {
		margin: 0;
		padding: 0;
		list-style-type: none;
		list-style-image: none;
		display: flex;
		flex-wrap: wrap;

		.nav-item {
			margin-bottom: 0;
		}

		li:hover > a,
		li > a:focus {
			border-bottom-color: #049cdb;
			background-color: #f9f9f9;
		}
	}

	.nav-link {
		white-space: nowrap;
		border-bottom: 5px solid #ffffff;
		padding: 18px 18px 12px;
		font-size: 14px;
		display: inline-block;
		text-decoration: none;
		color: #1e1e1e;

		&.active {
			border-bottom-color: #049cdb;
		}

		&.separator {
			margin-right: 20px;
		}
	}

	/* Margins for messages on screens */
	div.notice {
		margin: 20px 0 0;
	}
}

/* Add New Table form */
#tablepress_add-add-table .form-wrap {
	max-width: 500px;
}
#tablepress_add-add-table .form-field {
	margin: 0;
}
/* Number of rows/columns in the "Add New Table" form */
#tablepress_add-add-table .form-field-small {
	float: left;
	width: 150px;
	margin-right: 20px;
}

/* Width of the columns on the "All Tables" list */
.tablepress-all-tables thead .column-table_id {
	width: 50px;
}
.tablepress-all-tables thead .column-table_name {
	width: 30%;
}
.tablepress-all-tables thead .column-table_author {
	width: 12%;
}
.tablepress-all-tables thead .column-table_last_modified {
	width: 15%;
}
/* Font weight for the table ID column */
.tablepress-all-tables tbody .column-table_id {
	font-weight: bold;
}
/* Responsiveness on the All Tables screen */
@media screen and (max-width: 782px) {
	.tablepress-all-tables .column-table_id {
		display: none !important;
		padding: 3px 8px 3px 35%;
	}
}

/* Search results for WP_List_Table */
#tablepress-page .subtitle {
	float: left;
	padding: 8px 0 0 0;
}

/* Table ID/name dropdown on "Export" screen */
#tablepress-page #tables-export {
	width: 100%;
}

/* Red border for form fields that have invalid values */
#tablepress-page form .postbox:not(.no-validation-highlighting) :invalid {
	border-color: #cc0000 !important;
	box-shadow: 0 0 0 1px #cc0000;
}

/* Tables in postboxes (on the "Edit" and "Plugin Options" screens) */
.tablepress-postbox-table {
	border-spacing: 0;
	max-width: 1000px;
	width: 100%;
}
/* Default column widths */
.tablepress-postbox-table .column-1 {
	width: 25%;
}
.tablepress-postbox-table .column-2 {
	width: 75%;
}
.tablepress-postbox-table th {
	text-align: left;
	font-weight: normal;
}
.tablepress-postbox-table th,
.tablepress-postbox-table td {
	padding: 2px;
	word-wrap: break-word;
}
.tablepress-postbox-table .top-border th,
.tablepress-postbox-table .top-border td {
	padding-top: 6px;
}
.tablepress-postbox-table .bottom-border th,
.tablepress-postbox-table .bottom-border td {
	padding-bottom: 6px;
	border-bottom: 1px solid #eeeeee;
}
.tablepress-postbox-table .top-align {
	vertical-align: top;
	padding-top: 6px;
}
/* Adjust positioning of labels in relation to checkboxes/radio buttons */
#tablepress_import-import-form .column-2 label {
	margin-right: 20px; /* some margin on radio buttons */
}
/* Make the file upload field look more similar to normal fields */
#tablepress_import-import-form #tables-import-file-upload {
	border: 1px solid transparent;
	border-radius: 4px;
}
/* Red color for the "Uninstall TablePress" button on the "Plugin Options" screen */
#uninstall-tablepress {
	color: #bc0b0b;
}
/* Select dropdown alignment on the "Plugin Options" screen */
#tablepress-page select {
	vertical-align: baseline;
}
/* Proper alignment of elements */
#tablepress-page textarea,
.tablepress-postbox-table .button {
	margin: 1px;
}