voting.css 835 B

12345678910111213141516171819202122232425
  1. /* The contents of this file are subject to the Mozilla Public
  2. * License Version 1.1 (the "License"); you may not use this file
  3. * except in compliance with the License. You may obtain a copy of
  4. * the License at http://www.mozilla.org/MPL/
  5. *
  6. * Software distributed under the License is distributed on an "AS
  7. * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  8. * implied. See the License for the specific language governing
  9. * rights and limitations under the License.
  10. *
  11. * The Original Code is the Bugzilla Bug Tracking System.
  12. *
  13. * Contributor(s): Gavin Shelley <bugzilla@chimpychompy.org>
  14. */
  15. /* Highlight the row for the bug being voted on */
  16. tr.bz_bug_being_voted_on {
  17. background-color: #e2e2e2;
  18. }
  19. tr.bz_bug_being_voted_on td {
  20. border-style: solid none solid none;
  21. border-width: thin;
  22. }