Fix tiny css bug and make warning text not selectable

This commit is contained in:
John McLear 2012-01-27 01:02:12 +00:00
parent a53de45b32
commit 2a6e4ba194
1 changed files with 7 additions and 1 deletions

View File

@ -1282,5 +1282,11 @@ label[for=readonlyinput] {
}
#settingswarning{
mouse:cursor;
cursor: pointer;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}