Skip to content

Commit b649f2e

Browse files
puikinshclaude
andcommitted
fix(css): correct property order in print layout rules (#5997)
Swap grid-template-columns/rows order to satisfy stylelint order/properties-order rule. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent b0bbe0a commit b649f2e

9 files changed

Lines changed: 9 additions & 9 deletions

dist/css/adminlte.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/adminlte.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/adminlte.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/adminlte.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/adminlte.rtl.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/adminlte.rtl.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/adminlte.rtl.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/adminlte.rtl.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/scss/_accessibility.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,8 +294,8 @@ fieldset {
294294
/* Print Layout Fix - Ensure sidebar and main content are both visible */
295295
.app-wrapper {
296296
display: grid !important;
297-
grid-template-columns: auto 1fr !important;
298297
grid-template-rows: auto 1fr auto !important;
298+
grid-template-columns: auto 1fr !important;
299299
}
300300

301301
.sidebar-overlay {

0 commit comments

Comments
 (0)