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 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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. .ie8 .icon-close {
  22. background-image: url('../img/actions/close.png');
  23. }
  24. .lte9 .icon-triangle-e {
  25. background-image: url('../img/actions/triangle-e.png');
  26. }
  27. .lte9 .icon-triangle-n {
  28. background-image: url('../img/actions/triangle-n.png');
  29. }
  30. .lte9 .icon-triangle-s {
  31. background-image: url('../img/actions/triangle-s.png');
  32. }
  33. .lte9 .icon-settings,
  34. .lte9 .settings-button {
  35. background-image: url('../img/actions/settings.png');
  36. }
  37. .lte9 input[type="submit"], .lte9 input[type="button"],
  38. .lte9 button, .lte9 .button,
  39. .lte9 #quota, .lte9 select, .lte9 .pager li a {
  40. background-color: #f1f1f1;
  41. }
  42. /* IE8 needs PNG image for header logo */
  43. .ie8 #header .logo {
  44. background-image: url(../img/logo-icon-175px.png);
  45. }
  46. /* IE8 needs background to be set to same color to make transparency look good. */
  47. .lte9 #body-login form input[type="text"] {
  48. border: 1px solid lightgrey; /* use border to add 1px line between input fields */
  49. background-color: white; /* don't change background on hover */
  50. }
  51. .lte9 #body-login form input[type="password"] {
  52. /* leave out top border for 1px line between input fields*/
  53. border-left: 1px solid lightgrey;
  54. border-right: 1px solid lightgrey;
  55. border-bottom: 1px solid lightgrey;
  56. background-color: white; /* don't change background on hover */
  57. }
  58. .ie8 #body-login input[type="submit"] {
  59. padding: 10px 5px;
  60. margin-top: 3px;
  61. }
  62. /* for whatever unexplained reason */
  63. .ie8 #password {
  64. width: 271px !important;
  65. min-width: auto !important;
  66. }
  67. /* disable opacity of info text on gradient
  68. since we cannot set a good backround color to use the filter&background hack as with the input labels */
  69. .lte9 #body-login p.info {
  70. filter: initial;
  71. }
  72. /* deactivate show password toggle for IE. Does not work for 8 and 9+ have their own implementation. */
  73. .ie #show, .ie #show+label {
  74. display: none;
  75. visibility: hidden;
  76. }
  77. /* fix installation screen rendering issue for IE8+9 */
  78. .lte9 #body-login {
  79. min-height: 100%;
  80. height: auto !important;
  81. }
  82. /* oc-dialog only uses box shadow which is not supported by ie8 */
  83. .ie8 .oc-dialog {
  84. border: 1px solid #888888;
  85. }
  86. /* IE8 doesn't support transparent background - let's emulate black with an opacity of .3 on a dark blue background*/
  87. .ie8 fieldset .warning, .ie8 #body-login .error {
  88. background-color: #1B314D;
  89. }
  90. /* IE8 isn't able to display transparent background. So it is specified using a gradient */
  91. .ie8 #nojavascript {
  92. filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4c320000', endColorstr='#4c320000');
  93. }
  94. /* IE8 doesn't have rounded corners, so the strengthify bar should be wider */
  95. .lte8 #body-login .strengthify-wrapper {
  96. width: 271px;
  97. left: 6px;
  98. }
  99. /* fix background of navigation popup in IE8 */
  100. .ie8 #navigation,
  101. .ie8 #expanddiv {
  102. background-color: #111;
  103. }
  104. /* needed else IE8 will randomly hide the borders... */
  105. .ie8 table th#headerDate, table td.date,
  106. .ie8 table th.column-last, table td.column-last {
  107. position: static;
  108. }
  109. .ie8 #controls {
  110. background-color: white;
  111. }
  112. .ie8 #content-wrapper {
  113. overflow-y: auto;
  114. }
  115. .ie8 #app-navigation .app-navigation-entry-edit input {
  116. line-height: 38px;
  117. }