2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-30 15:24:08 +03:00

[Fix Issue #15683] readonly input should not have a not-allowed cursor

[Fix Issue #15683] `readonly` input should not have a `not-allowed` cursor. Instead, this pull request displays a standard cursor and only displays the not-allowed cursor on disabled items.

Revise docs wording to clarify cursor display
This commit is contained in:
Kevin Kirsche
2015-01-29 16:51:21 -05:00
committed by Kevin Kirsche
parent a7747dedf2
commit 2dfc58fa5c
2 changed files with 7 additions and 3 deletions
+5 -1
View File
@@ -141,10 +141,14 @@ output {
&[disabled],
&[readonly],
fieldset[disabled] & {
cursor: @cursor-disabled;
background-color: @input-bg-disabled;
opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655
}
&[disabled],
fieldset[disabled] & {
cursor: @cursor-disabled;
}
// Reset height for `textarea`s
textarea& {