42 lines
1.2 KiB
CSS
42 lines
1.2 KiB
CSS
/** \file html\css\content_ie.css
|
|
* \brief ZKL webinterface content stylesheet (internet explorer)
|
|
* \author Rob Schalken, Core|Vision
|
|
* \version $Revision$
|
|
* \date $Date$
|
|
*
|
|
* Some things need to be corrected as IE doesn't adhere the standards.
|
|
* There is a "content_ie<version>.css" for each version separately as
|
|
* Microsoft fucks IE up between its own versions as well and each
|
|
* version behaves differently.
|
|
*
|
|
* This file contains fixes regardless of the version.
|
|
*/
|
|
|
|
.form_table .dropdown input[type=text]#value_display {
|
|
color : inherit;
|
|
text-shadow : none;
|
|
}
|
|
|
|
/* the _while_ form/table.form_table will be pushed below the "content_table_col1"
|
|
box in IE when the contents of the form table becomes too wide; currently the
|
|
only culprit is the class "table_2d", so restrict its width */
|
|
div.table_2d {
|
|
max-width: 704px;
|
|
}
|
|
|
|
/* default box shadow is a bit bleak in IE(11) */
|
|
.sub_menu_matrix a,
|
|
.sub_menu a,
|
|
.sub_menu_matrix .nolink,
|
|
.sub_menu .nolink {
|
|
box-shadow : 0 0 4px 0 rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
.form_table table.checkbox_table tr td:first-child {
|
|
padding-left: 4px;
|
|
}
|
|
|
|
.form_table table.checkbox_table tr:last-child td {
|
|
padding-bottom: 0.7em;
|
|
}
|