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.

fixes.scss 545B

1234567891011121314151617181920212223242526
  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. }
  15. .ie #header .menu,
  16. .ie .header-left #navigation,
  17. .ie .ui-datepicker,
  18. .ie .ui-timepicker.ui-widget,
  19. .ie #appmenu li span,
  20. .ie .tooltip-inner {
  21. box-shadow: 0 1px 10px $color-box-shadow;
  22. }