Skip to content

Instantly share code, notes, and snippets.

@carlosleonam
Last active April 23, 2023 17:22
Show Gist options
  • Save carlosleonam/85a40adbd545ffe2ac05400dae7b3c85 to your computer and use it in GitHub Desktop.
Save carlosleonam/85a40adbd545ffe2ac05400dae7b3c85 to your computer and use it in GitHub Desktop.
XDebug Personal Styling

XDebug Personal Styling

Add below CSS to your styles files

/* Xdebug Styling II */
.xdebug-error {

    font-size: 12px !important;

    width: 97%;
    margin: 10px auto;
    border-collapse: collapse;
    border-right: 1px #5b5440 solid;
    border-left: 1px #5b5440 solid;
}

.xdebug-error th,
.xdebug-error td {
    padding: 4px 6px 3px 5px;
    border-top: 1px #5b5440 solid;
    border-bottom: 1px #5b5440 solid;
    border-left: none;
    border-right: none;
}

    .xdebug-error th:first-child {
       padding-top: 0;
    }

.xdebug-error th {
    background-color: #E4DBBF;
    color: #383127;
}

.xdebug-error td {
    background-color: #fff;
}

.xdebug-error span {
    background-color: inherit !important;
    color: #DC5B21 !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment