editor_ie.css 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
  3. For licensing, see LICENSE.md or http://ckeditor.com/license
  4. */
  5. /*
  6. editor_ie.css
  7. ===============
  8. This file contains styles to used by all versions of Internet Explorer only.
  9. */
  10. /* Base it on editor.css, overriding it with styles defined in this file. */
  11. @import url("editor.css");
  12. a.cke_button_disabled,
  13. /* Those two are to overwrite the gradient filter since we cannot have both of them. */
  14. a.cke_button_disabled:hover,
  15. a.cke_button_disabled:focus,
  16. a.cke_button_disabled:active
  17. {
  18. filter: alpha(opacity = 30);
  19. }
  20. /* PNG Alpha Transparency Fix For IE<9 */
  21. .cke_button_disabled .cke_button_icon
  22. {
  23. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff, endColorstr=#00ffffff);
  24. }
  25. .cke_button_off:hover,
  26. .cke_button_off:focus,
  27. .cke_button_off:active
  28. {
  29. filter: alpha(opacity = 100);
  30. }
  31. .cke_combo_disabled .cke_combo_inlinelabel,
  32. .cke_combo_disabled .cke_combo_open
  33. {
  34. filter: alpha(opacity = 30);
  35. }
  36. .cke_toolbox_collapser
  37. {
  38. border: 1px solid #a6a6a6;
  39. }
  40. .cke_toolbox_collapser .cke_arrow
  41. {
  42. margin-top: 1px;
  43. }
  44. /* Gradient filters must be removed for HC mode to reveal the background. */
  45. .cke_hc .cke_top,
  46. .cke_hc .cke_bottom,
  47. .cke_hc .cke_combo_button,
  48. .cke_hc a.cke_combo_button:hover,
  49. .cke_hc a.cke_combo_button:focus,
  50. .cke_hc .cke_toolgroup,
  51. .cke_hc .cke_button_on,
  52. .cke_hc a.cke_button_off:hover,
  53. .cke_hc a.cke_button_off:focus,
  54. .cke_hc a.cke_button_off:active,
  55. .cke_hc .cke_toolbox_collapser,
  56. .cke_hc .cke_toolbox_collapser:hover,
  57. .cke_hc .cke_panel_grouptitle
  58. {
  59. filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  60. }