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.css 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /* ---- BROWSER-SPECIFIC FIXES ---- */
  2. /* remove dotted outlines in Firefox */
  3. ::-moz-focus-inner {
  4. border: 0;
  5. }
  6. .lte8 .delete-icon { background-image: url('../img/actions/delete.png'); }
  7. .lte8 .delete-icon:hover, .delete-icon:focus {
  8. background-image: url('../img/actions/delete-hover.png');
  9. }
  10. /* IE8 needs background to be set to same color to make transparency look good. */
  11. .lte9 #body-login form input[type="text"] {
  12. border: 1px solid lightgrey; /* use border to add 1px line between input fields */
  13. background-color: white; /* don't change background on hover */
  14. }
  15. .lte9 #body-login form input[type="password"] {
  16. /* leave out top border for 1px line between input fields*/
  17. border-left: 1px solid lightgrey;
  18. border-right: 1px solid lightgrey;
  19. border-bottom: 1px solid lightgrey;
  20. background-color: white; /* don't change background on hover */
  21. }
  22. .lte9 #body-login form label.infield {
  23. background-color: white; /* don't change background on hover */
  24. -ms-filter: "progid:DXImageTransform.Microsoft.Chroma(color='white')";
  25. }
  26. /* disable opacity of info text on gradient
  27. since we cannot set a good backround color to use the filter&background hack as with the input labels */
  28. .lte9 #body-login p.info {
  29. filter: initial;
  30. }
  31. /* deactivate show password toggle for IE. Does not work for 8 and 9+ have their own implementation. */
  32. .ie #show, .ie #show+label {
  33. display: none;
  34. visibility: hidden;
  35. }
  36. /* fix installation screen rendering issue for IE8+9 */
  37. .lte9 #body-login {
  38. height: auto !important;
  39. }
  40. /* oc-dialog only uses box shadow which is not supported by ie8 */
  41. .ie8 .oc-dialog {
  42. border: 1px solid #888888;
  43. }
  44. /* IE8 doesn't support transparent background - let's emulate black with an opacity of .3 on a dark blue background*/
  45. .ie8 fieldset .warning, .ie8 #body-login .error {
  46. background-color: #1B314D;
  47. }
  48. /* IE8 isn't able to display transparent background. So it is specified using a gradient */
  49. .ie8 #nojavascript {
  50. filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4c320000', endColorstr='#4c320000'); /* IE */
  51. }
  52. /* IE8 doesn't have rounded corners, so the strengthify bar should be wider */
  53. .lte8 #body-login .strengthify-wrapper {
  54. width: 271px;
  55. left: 6px;
  56. }