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: [email protected]
Reporter: [email protected]
QA Contact: [email protected]
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.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/