http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13604 Bug ID: 13604 Summary: CSS incorrectly formatted Change sponsored?: --- Product: Koha Version: 3.18 Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: OPAC Assignee: oleonard@myacpl.org Reporter: david.roberts@ptfs-europe.com QA Contact: testopia@bugs.koha-community.org opac.css is no longer formatted correctly. All elements are running into each other, for example: .shadowed{-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,0.2);-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,0.2);box-shadow:0 1px 1px 0 rgba(0,0,0,0.2)}body{background-color:#eaeae6}html,body{height:100%}.no-js .dateformat{display:inline;white-space:nowrap}.no-js .modal-body{padding:0} (etc.) This makes it impossible to read and to work with. It ought to be formatted as, for example: .shadowed { -webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,0.2); -moz-box-shadow:0 1px 1px 0 rgba(0,0,0,0.2); box-shadow:0 1px 1px 0 rgba(0,0,0,0.2) } body { background-color:#eaeae6 } (etc) -- You are receiving this mail because: You are watching all bug changes.