[Koha-bugs] [Bug 13604] New: CSS incorrectly formatted

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Tue Jan 20 17:10:35 CET 2015


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 at myacpl.org
          Reporter: david.roberts at ptfs-europe.com
        QA Contact: testopia at 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.


More information about the Koha-bugs mailing list