# thinkrank/1.28.0/static/css/seo-quick-edit.css

ThinkRank AI SEO – AI SEO Plugin for WordPress: Schema, XML Sitemaps, Meta Tags, Search Console &amp; Local SEO, version 1.28.0. 324 lines.

- Page: https://pluginprobe.com/plugins/thinkrank/1.28.0/code/static/css/seo-quick-edit.css
- Raw: https://pluginprobe.com/plugins/thinkrank/1.28.0/raw/static/css/seo-quick-edit.css
- Modified: 2026-08-10T13:41:08+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/thinkrank/1.28.0/code/static/css/seo-quick-edit.css#L10-L20`.

```css
/**
 * ThinkRank SEO Quick Edit modal (post list).
 *
 * Hand-authored, so it lives in static/ (assets/ is wiped on every build).
 * Values mirror the design tokens in src/admin/styles/_variables.scss —
 * the admin app's compiled CSS is not enqueued on edit.php, so the tokens
 * are restated here as literals:
 *   primary #4451FF · text #1D1D1D / #535353 / #5A5C5E
 *   borders #D5D5DD / #E2E6F1 · bg #F8F8FB · error #921C13
 *   radius 6px / 8px
 *
 * @package ThinkRank
 * @since 1.27.1
 */

/* Trigger button in the column cell (pushed to the cell's right edge) */
.thinkrank-qe-trigger {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    color: #a5aaac;
    cursor: pointer;
    transition: all 0.15s ease;
}

.thinkrank-qe-trigger:hover,
.thinkrank-qe-trigger:focus {
    color: #4451FF;
    background: #f0f1ff;
    border-color: #d5d8ff;
    outline: none;
}

/* Overlay */
.thinkrank-qe-overlay {
    position: fixed;
    inset: 0;
    z-index: 100100; /* above #wpadminbar (99999) */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(29, 29, 29, 0.55);
    animation: thinkrank-qe-fade 0.12s ease-out;
}

@keyframes thinkrank-qe-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Modal card */
.thinkrank-qe-modal {
    width: 560px;
    max-width: 100%;
    max-height: min(85vh, 720px);
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(29, 29, 29, 0.25);
    animation: thinkrank-qe-pop 0.14s ease-out;
    font-size: 13px;
}

@keyframes thinkrank-qe-pop {
    from { opacity: 0; transform: translateY(6px) scale(0.985); }
    to { opacity: 1; transform: none; }
}

/* Header */
.thinkrank-qe-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    border-bottom: 1px solid #E2E6F1;
}

.thinkrank-qe-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #1D1D1D;
}

.thinkrank-qe-post-title {
    margin: 3px 0 0;
    font-size: 12px;
    color: #5A5C5E;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.thinkrank-qe-close {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    margin-top: 1px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #5A5C5E;
    cursor: pointer;
    transition: all 0.15s ease;
}

.thinkrank-qe-close:hover,
.thinkrank-qe-close:focus {
    background: #F1F1F5;
    color: #1D1D1D;
    outline: none;
}

/* Body */
.thinkrank-qe-body {
    padding: 20px 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.thinkrank-qe-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.thinkrank-qe-field-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.thinkrank-qe-label {
    font-size: 13px;
    font-weight: 600;
    color: #1D1D1D;
}

.thinkrank-qe-counter {
    font-size: 12px;
    color: #5A5C5E;
    font-variant-numeric: tabular-nums;
}

.thinkrank-qe-counter.is-over {
    color: #921C13;
    font-weight: 600;
}

.thinkrank-qe-input {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 8px 12px;
    font-size: 13px;
    line-height: 1.5;
    color: #1D1D1D;
    background: #ffffff;
    border: 1px solid #D5D5DD;
    border-radius: 6px;
    box-shadow: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.thinkrank-qe-input::placeholder {
    color: #8c8f94;
}

.thinkrank-qe-input:focus {
    border-color: #4451FF;
    box-shadow: 0 0 0 2px rgba(68, 81, 255, 0.18);
    outline: none;
}

textarea.thinkrank-qe-input {
    resize: vertical;
    min-height: 68px;
}

.thinkrank-qe-help {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    color: #5A5C5E;
}

.thinkrank-qe-error {
    margin: 0;
    padding: 8px 12px;
    font-size: 12px;
    color: #921C13;
    background: #FEF3F2;
    border: 1px solid rgba(146, 28, 19, 0.2);
    border-radius: 6px;
}

/* Loading state */
.thinkrank-qe-loading {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thinkrank-qe-loading::after {
    content: "";
    width: 22px;
    height: 22px;
    border: 2.5px solid #E2E6F1;
    border-top-color: #4451FF;
    border-radius: 50%;
    animation: thinkrank-qe-spin 0.7s linear infinite;
}

@keyframes thinkrank-qe-spin {
    to { transform: rotate(360deg); }
}

/* Footer */
.thinkrank-qe-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 24px;
    border-top: 1px solid #E2E6F1;
    background: #F8F8FB;
    border-radius: 0 0 8px 8px;
}

.thinkrank-qe-edit-link {
    font-size: 12px;
    color: #5A5C5E;
    text-decoration: none;
}

.thinkrank-qe-edit-link:hover,
.thinkrank-qe-edit-link:focus {
    color: #4451FF;
    text-decoration: underline;
}

.thinkrank-qe-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.thinkrank-qe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    border-radius: 6px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.15s ease;
}

.thinkrank-qe-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(68, 81, 255, 0.25);
}

.thinkrank-qe-btn-ghost {
    background: #ffffff;
    border-color: #D5D5DD;
    color: #1D1D1D;
}

.thinkrank-qe-btn-ghost:hover {
    background: #F1F1F5;
}

.thinkrank-qe-btn-primary {
    background: #4451FF;
    color: #ffffff;
}

.thinkrank-qe-btn-primary:hover {
    background: #3743e0;
}

.thinkrank-qe-btn-primary:disabled {
    opacity: 0.6;
    cursor: default;
}

/* Small screens: WP switches to its stacked list at 782px */
@media screen and (max-width: 600px) {
    .thinkrank-qe-overlay {
        padding: 12px;
        align-items: flex-end;
    }

    .thinkrank-qe-modal {
        max-height: 92vh;
    }
}

```
