Fix tiny css bug and make warning text not selectable
This commit is contained in:
parent
a53de45b32
commit
2a6e4ba194
|
@ -1282,5 +1282,11 @@ label[for=readonlyinput] {
|
||||||
}
|
}
|
||||||
|
|
||||||
#settingswarning{
|
#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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue