Refactor CSS to use standard Tailwind-style utility classes instead of ad-hoc rules. This eliminates a lot of single-purpose rules for specific UI elements and standardizes margins to be more consistent throughout the site. Utility classes are defined manually on an as-needed basis instead of importing Tailwind as a whole. Naming conventions mostly follow Tailwind's conventions, otherwise they follow Bootstrap. * https://tailwindcss.com/docs/ * https://getbootstrap.com/docs/5.0/utilities/spacing/
25 lines
409 B
SCSS
25 lines
409 B
SCSS
body.c-post-versions.a-index {
|
|
#subnav-undo-selected-link {
|
|
display: none;
|
|
}
|
|
|
|
.post-version-select-column {
|
|
min-width: 2em;
|
|
}
|
|
|
|
ins.diff-obsolete a {
|
|
color: var(--diff-list-obsolete-added-color);
|
|
font-weight: bold;
|
|
}
|
|
|
|
del.diff-obsolete a {
|
|
color: var(--diff-list-obsolete-removed-color);
|
|
font-weight: bold;
|
|
}
|
|
|
|
td.tags-column,
|
|
td.edits-column {
|
|
width: 40%;
|
|
}
|
|
}
|