UNPKG

plasttic

Version:

Plasttic Web Workflow: A methodology based Front-End development environment.

39 lines (33 loc) 828 B
/* --- RESET --- */ @import "00_reset"; /** * 10_utility.css * * INDEX * ----- * * Print-only/no................Extends print.css * * Notes: * Self contained, not dependent of the design system. * Naming prefix: .ptt-u- * */ /* ========================================================================== Utility ========================================================================== */ /** * PRINT-ONLY / PRINT-NO * Extends print.css * ptt-u-print-only: Hide elements/sections until print * ptt-u-print-no: Items to hide from print */ .ptt-u-print-only { /* stylelint-disable-next-line declaration-no-important */ display: none !important; } .ptt-u-print-no { /* hide section when printing Class properties are defined on print.css and applied when printing */ }