You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718
  1. /* ---- BROWSER-SPECIFIC FIXES ---- */
  2. /* remove dotted outlines in Firefox */
  3. ::-moz-focus-inner {
  4. border: 0;
  5. }
  6. /* fix height of select boxes for OS X */
  7. select {
  8. height: 32px;
  9. }
  10. /* deactivate show password toggle for IE. Does not work for 8 and 9+ have their own implementation. */
  11. .ie #show, .ie #show+label {
  12. display: none;
  13. visibility: hidden;
  14. }