Commit a36f444c authored by Mark Otto's avatar Mark Otto

Merge pull request #8583 from liuyl/disabled

set cursor to not-allowed for disabled elements
parents 30801046 7e9532da
......@@ -2219,7 +2219,7 @@ input[type="button"].btn-block {
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
text-decoration: none;
cursor: default;
cursor: not-allowed;
background-color: transparent;
background-image: none;
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
......@@ -2540,7 +2540,7 @@ button.close {
.nav > li.disabled > a:focus {
color: #999999;
text-decoration: none;
cursor: default;
cursor: not-allowed;
background-color: transparent;
}
......@@ -3301,7 +3301,7 @@ button.close {
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
color: #999999;
cursor: default;
cursor: not-allowed;
background-color: #ffffff;
}
......@@ -3402,7 +3402,7 @@ button.close {
.pager .disabled > a:focus,
.pager .disabled > span {
color: #999999;
cursor: default;
cursor: not-allowed;
background-color: #ffffff;
}
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -102,7 +102,7 @@
background-color: transparent;
background-image: none; // Remove CSS gradient
.reset-filter();
cursor: default;
cursor: not-allowed;
}
}
......
......@@ -36,7 +36,7 @@
color: @gray-light;
text-decoration: none;
background-color: transparent;
cursor: default;
cursor: not-allowed;
}
}
......
......@@ -48,7 +48,7 @@
> span {
color: @gray-light;
background-color: @pagination-bg;
cursor: default;
cursor: not-allowed;
}
}
......
......@@ -53,7 +53,7 @@
> a:focus {
color: @gray-light;
background-color: @pagination-bg;
cursor: default;
cursor: not-allowed;
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment