mirror of
https://github.com/UnickSoft/graphonline.git
synced 2026-06-17 22:32:49 +00:00
first commit
This commit is contained in:
Executable
+62
@@ -0,0 +1,62 @@
|
||||
/*
|
||||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.md or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
/*
|
||||
dialog_ie.css
|
||||
===============
|
||||
|
||||
This file contains styles to used by all versions of Internet Explorer only.
|
||||
*/
|
||||
|
||||
/* Base it on dialog.css, overriding it with styles defined in this file. */
|
||||
@import url("dialog.css");
|
||||
|
||||
/* IE doesn't leave enough padding in text input for cursor to blink in RTL. (#6087) */
|
||||
.cke_rtl input.cke_dialog_ui_input_text,
|
||||
.cke_rtl input.cke_dialog_ui_input_password
|
||||
{
|
||||
padding-right: 2px;
|
||||
}
|
||||
/* Compensate the padding added above on container. */
|
||||
.cke_rtl div.cke_dialog_ui_input_text,
|
||||
.cke_rtl div.cke_dialog_ui_input_password
|
||||
{
|
||||
padding-left: 2px;
|
||||
}
|
||||
.cke_rtl div.cke_dialog_ui_input_text {
|
||||
padding-right: 1px;
|
||||
}
|
||||
|
||||
.cke_rtl .cke_dialog_ui_vbox_child,
|
||||
.cke_rtl .cke_dialog_ui_hbox_child,
|
||||
.cke_rtl .cke_dialog_ui_hbox_first,
|
||||
.cke_rtl .cke_dialog_ui_hbox_last
|
||||
{
|
||||
padding-right: 2px !important;
|
||||
}
|
||||
|
||||
|
||||
/* Disable filters for HC mode. */
|
||||
.cke_hc .cke_dialog_title,
|
||||
.cke_hc .cke_dialog_footer,
|
||||
.cke_hc a.cke_dialog_tab,
|
||||
.cke_hc a.cke_dialog_ui_button,
|
||||
.cke_hc a.cke_dialog_ui_button:hover,
|
||||
.cke_hc a.cke_dialog_ui_button_ok,
|
||||
.cke_hc a.cke_dialog_ui_button_ok:hover
|
||||
{
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
||||
}
|
||||
|
||||
/* Remove border from dialog field wrappers in HC
|
||||
to avoid double borders. */
|
||||
.cke_hc div.cke_dialog_ui_input_text,
|
||||
.cke_hc div.cke_dialog_ui_input_password,
|
||||
.cke_hc div.cke_dialog_ui_input_textarea,
|
||||
.cke_hc div.cke_dialog_ui_input_select,
|
||||
.cke_hc div.cke_dialog_ui_input_file
|
||||
{
|
||||
border: 0;
|
||||
}
|
||||
Reference in New Issue
Block a user