fixes.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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. /* reset typeface for IE8 because OpenSans renders too small */
  11. .ie8 body {
  12. font-family: Frutiger, Calibri, 'Myriad Pro', Myriad, Arial, sans-serif;
  13. }
  14. .lte8 .icon-delete { background-image: url('../img/actions/delete.png'); }
  15. .lte8 .icon-delete:hover, .icon-delete:focus {
  16. background-image: url('../img/actions/delete-hover.png');
  17. }
  18. .ie8 .icon-checkmark {
  19. background-image: url('../img/actions/checkmark.png');
  20. }
  21. .lte9 .icon-triangle-e {
  22. background-image: url('../img/actions/triangle-e.png');
  23. }
  24. .lte9 .icon-triangle-n {
  25. background-image: url('../img/actions/triangle-n.png');
  26. }
  27. .lte9 .icon-triangle-s {
  28. background-image: url('../img/actions/triangle-s.png');
  29. }
  30. .lte9 .icon-settings,
  31. .lte9 .settings-button {
  32. background-image: url('../img/actions/settings.png');
  33. }
  34. /* IE8 needs background to be set to same color to make transparency look good. */
  35. .lte9 #body-login form input[type="text"] {
  36. border: 1px solid lightgrey; /* use border to add 1px line between input fields */
  37. background-color: white; /* don't change background on hover */
  38. }
  39. .lte9 #body-login form input[type="password"] {
  40. /* leave out top border for 1px line between input fields*/
  41. border-left: 1px solid lightgrey;
  42. border-right: 1px solid lightgrey;
  43. border-bottom: 1px solid lightgrey;
  44. background-color: white; /* don't change background on hover */
  45. }
  46. /* disable opacity of info text on gradient
  47. since we cannot set a good backround color to use the filter&background hack as with the input labels */
  48. .lte9 #body-login p.info {
  49. filter: initial;
  50. }
  51. /* deactivate show password toggle for IE. Does not work for 8 and 9+ have their own implementation. */
  52. .ie #show, .ie #show+label {
  53. display: none;
  54. visibility: hidden;
  55. }
  56. /* fix installation screen rendering issue for IE8+9 */
  57. .lte9 #body-login {
  58. height: auto !important;
  59. }
  60. /* oc-dialog only uses box shadow which is not supported by ie8 */
  61. .ie8 .oc-dialog {
  62. border: 1px solid #888888;
  63. }
  64. /* IE8 doesn't support transparent background - let's emulate black with an opacity of .3 on a dark blue background*/
  65. .ie8 fieldset .warning, .ie8 #body-login .error {
  66. background-color: #1B314D;
  67. }
  68. /* IE8 isn't able to display transparent background. So it is specified using a gradient */
  69. .ie8 #nojavascript {
  70. filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4c320000', endColorstr='#4c320000');
  71. }
  72. /* IE8 doesn't have rounded corners, so the strengthify bar should be wider */
  73. .lte8 #body-login .strengthify-wrapper {
  74. width: 271px;
  75. left: 6px;
  76. }
  77. /* fix background of navigation popup in IE8 */
  78. .ie8 #navigation,
  79. .ie8 #expanddiv {
  80. background-color: #111;
  81. }
  82. /* needed else IE8 will randomly hide the borders... */
  83. .ie8 table th#headerDate, table td.date,
  84. .ie8 table th.column-last, table td.column-last {
  85. position: static;
  86. }
  87. .ie8 #controls {
  88. background-color: white;
  89. }
  90. .ie8 #content-wrapper {
  91. overflow-y: auto;
  92. }
  93. .ie8 #app-navigation .app-navigation-entry-edit input {
  94. line-height: 38px;
  95. }