dialog_ie7.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. dialog_ie7.css
  7. ===============
  8. This file contains styles to used by Internet Explorer 7 only.
  9. */
  10. /* Base it on dialog_ie.css, overriding it with styles defined in this file. */
  11. @import url("dialog_ie.css");
  12. .cke_dialog_title
  13. {
  14. /* gradient fix */
  15. zoom: 1;
  16. }
  17. .cke_dialog_footer
  18. {
  19. /* IE7 ignores footer's outline. Use border instead. */
  20. border-top: 1px solid #bfbfbf;
  21. }
  22. /* IE7 needs position static #6806 */
  23. .cke_dialog_footer_buttons
  24. {
  25. position: static;
  26. }
  27. /* IE7 crops the bottom pixels of footer buttons (#9491) */
  28. .cke_dialog_footer_buttons a.cke_dialog_ui_button
  29. {
  30. vertical-align: top;
  31. }
  32. /* IE7 margin loose on float. */
  33. .cke_dialog .cke_resizer_ltr
  34. {
  35. padding-left: 4px;
  36. }
  37. .cke_dialog .cke_resizer_rtl
  38. {
  39. padding-right: 4px;
  40. }
  41. /* IE7 doesn't support box-sizing and therefore we cannot
  42. have sexy inputs which go well with the layout. */
  43. .cke_dialog_ui_input_text,
  44. .cke_dialog_ui_input_password,
  45. .cke_dialog_ui_input_textarea,
  46. .cke_dialog_ui_input_select
  47. {
  48. padding: 0 !important;
  49. }
  50. /* Predefined border to avoid visual size change impact. */
  51. .cke_dialog_ui_checkbox_input,
  52. .cke_dialog_ui_ratio_input,
  53. .cke_btn_reset,
  54. .cke_btn_locked,
  55. .cke_btn_unlocked
  56. {
  57. border: 1px solid transparent !important;
  58. }