diff options
| author | Mark Otto <[email protected]> | 2013-07-29 09:58:54 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-07-29 09:58:54 -0700 |
| commit | 08cd3072fc48d8b4ad7e9062cd5e9bbea1cc19da (patch) | |
| tree | 11282a42b00ebb72780b5462fa297a0fca7aa016 /dist/css/bootstrap.css | |
| parent | b1a1210f071b696450f323f35b55b399a17d5396 (diff) | |
| parent | e77d13448186dd3bdbf466a681b46876882f16f2 (diff) | |
| download | bootstrap-08cd3072fc48d8b4ad7e9062cd5e9bbea1cc19da.tar.xz bootstrap-08cd3072fc48d8b4ad7e9062cd5e9bbea1cc19da.zip | |
Merge pull request #8747 from liuyl/buttons
disable user-select for buttons
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index e93a81226..1d177bc29 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -1554,6 +1554,11 @@ select.input-small { cursor: pointer; border: 1px solid transparent; border-radius: 4px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; } .btn:focus { |
