Fixes #2314 : Textfield focus glow cut in Safari 3 mac

svn changeset:6218/svn branch:trunk
This commit is contained in:
Joonas Lehtinen 2008-12-15 19:12:28 +00:00
parent f6fe8ed9e5
commit 00d428ad5d
2 changed files with 13 additions and 13 deletions

View File

@ -443,18 +443,6 @@ input.i-modified,
}
/* ./WebContent/ITMILL/themes/default/coordinatelayout/coordinatelayout.css */
/*
* CoordinateLayout
*/
.i-coordinatelayout-margin-values{
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px;
}
/* ./WebContent/ITMILL/themes/default/customcomponent/customcomponent.css */
.i-customcomponent {
overflow: hidden;
@ -2403,6 +2391,12 @@ input.i-modified,
}
*/
/* Safari focus glow fix */
.i-sa input:focus,
.i-sa textarea:focus{
outline-width: medium;
}
/* ./WebContent/ITMILL/themes/default/tree/tree.css */
.i-tree {
text-align: left /* Force default alignment */

View File

@ -62,4 +62,10 @@
background:transparent;
background-color: #FFE0E0;
}
*/
*/
/* Safari focus glow fix */
.i-sa input:focus,
.i-sa textarea:focus{
outline-width: medium;
}