# tableberg/1.1.5/admin/src/css/tableberg-admin.css

Tableberg – Simple Gutenberg Table Block, version 1.1.5. 216 lines.

- Page: https://pluginprobe.com/plugins/tableberg/1.1.5/code/admin/src/css/tableberg-admin.css
- Raw: https://pluginprobe.com/plugins/tableberg/1.1.5/raw/admin/src/css/tableberg-admin.css
- Modified: 2026-09-16T03:30:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/tableberg/1.1.5/code/admin/src/css/tableberg-admin.css#L10-L20`.

```css
/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */

.tableberg-hide {
    display: none !important;
}

/*******************************************
* Components
*********************************************/

/* Slider Switch Input*/

.tableberg-switch-input input {
    display: none;
}

.tableberg-switch-input {
    display: inline-block;
    width: 50px;
    height: 20px;
    transform: translateY(0%);
    position: relative;
}

.tableberg-switch-input-slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    overflow: hidden;
    transition: 0.4s;
    background-color: #e2e2e3;
}

.tableberg-switch-input-slider:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    transform: translateX(-30px);
    transition: 0.4s;
}

input:checked + .tableberg-switch-input-slider:before {
    transform: translateX(30px);
    background: white;
}

input:checked + .tableberg-switch-input-slider {
    background-color: #f64646;
}

/*******************************************
 * Main Menu Settings Page
 *********************************************/

#tableberg__main-menu {
    background: #f8f8f8;
    margin-left: -20px;
    padding-bottom: 40px;
}

#tableberg__main-menu__header {
    padding: 0;
    background: #fff;
    margin-bottom: 40px;
    box-shadow: 0px 2px 8px #e8e8e8;
}

.tableberg__header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.tableberg__header-container img {
    max-height: 80px;
    justify-content: flex-start;
}

.tableberg__collection {
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
    margin: auto;
    height: 740px;
    width: 100%;
    max-width: 1040px;
    box-sizing: border-box;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e8e8e8;
}

.tableberg__collection__item {
    border: 1px solid lightgrey;
    padding: 10px;
    margin: 15px 0;
    height: 70px;
    max-width: 50%;
    margin: 10px;
    transition: all 0.5s ease-in-out;
    box-sizing: border-box;
}

.tableberg__collection__item.active {
    border: 1px solid #f64646;
}

.tableberg__collection__item__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tableberg__collection__item:hover {
    box-shadow: 0 0 10px lightgrey;
}

.tableberg__collection__item__title {
    font-weight: 300;
    font-size: 16px;
}

.tableberg_collection_filter {
    justify-content: center;
    margin-right: 20px;
}

.tableberg_collection_filter .filter-action {
    display: inline-block;
    padding: 5px;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    font-size: 15px;
}

.tableberg_collection_filter .filter-action.active {
    color: #f64646;
    border-bottom: 2px solid #f64646;
}

#tableberg__settings_cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px 60px;
    margin: auto;
    height: auto;
    width: 100%;
    max-width: 1040px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #e8e8e8;
    margin-top: 20px;
}

.tableberg__settings_column {
    flex: 50%;
}

.tableberg__settings_column h3 {
    font-size: 22px;
    margin-left: 15px;
    margin-bottom: 30px;
}

.tableberg__settings_column ul li {
    position: relative;
    padding-bottom: 10px;
    margin-left: 30px;
}

.tableberg__settings_column ul {
    list-style: none;
}

.tableberg__settings_column ul li:before {
    content: "";
    position: absolute;
    border-right: 2px solid black;
    border-bottom: 2px solid black;
    width: 10px;
    height: 10px;
    top: calc(50% - 6px);
    left: -20px;
    transform: translateY(-50%) rotate(-45deg);
}

.tableberg__settings_list a {
    color: #f64646;
    font-size: 18px;
}

#adminmenu .toplevel_page_tableberg-settings .wp-menu-image > img {
    width: 21px !important;
    margin: 5px 9px;
    display: block;
    padding: 0;
}

```
