Skip to content
This repository has been archived by the owner on Feb 28, 2023. It is now read-only.

Commit

Permalink
MODUL-722 - Cursor not-allowed changed for default (#707)
Browse files Browse the repository at this point in the history
  • Loading branch information
CBergerDTI authored and chuckmah committed Feb 1, 2019
1 parent 99b0429 commit d323851
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,6 @@ $m-datepicker--item-dimension: $m-touch-size !default;
.m--is-disabled {
background-color: none;
color: $m-color--grey-light;
cursor: not-allowed;
cursor: default;
}
}
2 changes: 1 addition & 1 deletion src/components/checkbox/checkbox.scss
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ $m-checkbox--width: 16px;
&.m--is-readonly {
.m-checkbox {
&__wrap {
cursor: not-allowed;
cursor: default;
}

&__input {
Expand Down
2 changes: 1 addition & 1 deletion src/components/datepicker/datepicker.scss
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,6 @@ $m-datepicker--item-dimension: $m-touch-size !default;
.m--is-disabled {
background-color: none;
color: $m-color--grey-light;
cursor: not-allowed;
cursor: default;
}
}
2 changes: 1 addition & 1 deletion src/components/dropdown/dropdown-item/dropdown-item.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ $m-dropdown-item--color-active: $m-color--grey-lightest !default;
}

&.m--is-disabled {
cursor: not-allowed;
cursor: default;
color: $m-color--grey-light;
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/link/link.scss
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@

&.m--is-disabled {
color: $m-color--disabled;
cursor: not-allowed;
cursor: default;
}

&.m--is-skin-text {
Expand Down
2 changes: 1 addition & 1 deletion src/components/list-item/list-item.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

&.m--is-disabled {
color: $m-color--disabled;
cursor: not-allowed;
cursor: default;
}

&.m--has-trigger {
Expand Down
2 changes: 1 addition & 1 deletion src/components/menu/menu-item/menu-item.scss
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@

&.m--is-disabled {
> .m-menu-item__link {
cursor: not-allowed;
cursor: default;
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/menu/menu.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
}

.m-menu.m--is-disabled & {
cursor: not-allowed;
cursor: default;
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/navbar/navbar-item/navbar-item.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

&.m--is-disabled {
.m-navbar-item__contents {
cursor: not-allowed;
cursor: default;
color: $m-color--disabled;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/option/option-item/option-item.scss
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ $m-option-item--color-active: $m-color--grey-lightest !default;
}

&.m--is-disabled {
cursor: not-allowed;
cursor: default;

.m-option-item {
&__text,
Expand Down
2 changes: 1 addition & 1 deletion src/components/radio-style/radio-style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ $m-radio--color-disabled-light: $m-color--grey !default;
}

&.m--is-disabled {
cursor: not-allowed;
cursor: default;

.m-radio-style {
&__input {
Expand Down
2 changes: 1 addition & 1 deletion src/components/radio/radio.scss
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ $m-radio--color-disabled: $m-color--disabled !default;
&.m--is-disabled {
.m-radio {
&__wrap {
cursor: not-allowed;
cursor: default;
}

&__input {
Expand Down
2 changes: 1 addition & 1 deletion src/components/steppers/steppers-item/steppers-item.scss
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ $m-steppers--badge--size: 14px;
&.m--is-disabled {
.m-steppers-item__button {
user-select: none;
cursor: not-allowed;
cursor: default;
}

.m-steppers-item {
Expand Down
2 changes: 1 addition & 1 deletion src/components/switch/switch.scss
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ $m-switch-size: 23px;

&.m--is-disabled {
.m-switch__body {
cursor: not-allowed;
cursor: default;
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/timepicker/timepicker.scss
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ $m-timepicker--color-active: $m-color--grey-lightest !default;
}

&.m--is-selected {
cursor: not-allowed;
cursor: default;
background: $m-timepicker--color-select;
}
}
Expand Down

0 comments on commit d323851

Please sign in to comment.