1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 03:54:10 +01:00
PayBas 514bf6e39a [ticket/12598] Add lt IE9 fixes
In case this one gets merged before hanakin's gradient PR.

PHPBB3-12598
2014-09-18 21:47:21 +02:00

30 lines
900 B
CSS

/* Style Sheet Tweaks
These style definitions are IE 8 & 9 only.
They are required due to the poor CSS support in IE browsers.
------------------------------------------------------------------------------*/
/* IE 8 Tweaks (value)\9 equates to IE <= 8
------------------------------------------------------------------------------*/
/* Clear float fix */
.inner, ul.linklist { zoom: 1\9; }
/* Align checkboxes/radio buttons nicely */
dd label input { vertical-align: text-bottom\9; }
/* Fixes header-avatar aspect-ratio */
.header-avatar img { height: 20px\9; }
/* IE8 often can't handle max-width in %, so we use px instead */
.postprofile .avatar img { max-width: 150px\9; }
/* IE 9 Tweaks
------------------------------------------------------------------------------*/
/* Border-radius bleed fix in IE9 */
#search-box, #search-box .inputbox, #search-box a.button {
border-radius: 0;
}