123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- @import "mixins/mixins";
- @import "mixins/utils";
- @import 'mixins/button';
- @import "common/var";
- @include b(radio) {
- color: $--radio-font-color;
- font-weight: $--radio-font-weight;
- line-height: 1;
- position: relative;
- cursor: pointer;
- display: inline-block;
- white-space: nowrap;
- outline: none;
- font-size: $--font-size-base;
- margin-right: 30px;
- @include utils-user-select(none);
- @include when(bordered) {
- padding: $--radio-bordered-padding;
- border-radius: $--border-radius-base;
- border: $--border-base;
- box-sizing: border-box;
- height: $--radio-bordered-height;
- &.is-checked {
- border-color: $--color-primary;
- }
- &.is-disabled {
- cursor: not-allowed;
- border-color: $--border-color-lighter;
- }
- & + .el-radio.is-bordered {
- margin-left: 10px;
- }
- }
- @include m(medium) {
- &.is-bordered {
- padding: $--radio-bordered-medium-padding;
- border-radius: $--button-medium-border-radius;
- height: $--radio-bordered-medium-height;
- .el-radio__label {
- font-size: $--button-medium-font-size;
- }
- .el-radio__inner {
- height: $--radio-bordered-medium-input-height;
- width: $--radio-bordered-medium-input-width;
- }
- }
- }
- @include m(small) {
- &.is-bordered {
- padding: $--radio-bordered-small-padding;
- border-radius: $--button-small-border-radius;
- height: $--radio-bordered-small-height;
- .el-radio__label {
- font-size: $--button-small-font-size;
- }
- .el-radio__inner {
- height: $--radio-bordered-small-input-height;
- width: $--radio-bordered-small-input-width;
- }
- }
- }
- @include m(mini) {
- &.is-bordered {
- padding: $--radio-bordered-mini-padding;
- border-radius: $--button-mini-border-radius;
- height: $--radio-bordered-mini-height;
- .el-radio__label {
- font-size: $--button-mini-font-size;
- }
- .el-radio__inner {
- height: $--radio-bordered-mini-input-height;
- width: $--radio-bordered-mini-input-width;
- }
- }
- }
- &:last-child {
- margin-right: 0;
- }
- @include e(input) {
- white-space: nowrap;
- cursor: pointer;
- outline: none;
- display: inline-block;
- line-height: 1;
- position: relative;
- vertical-align: middle;
- @include when(disabled) {
- .el-radio__inner {
- background-color: $--radio-disabled-input-fill;
- border-color: $--radio-disabled-input-border-color;
- cursor: not-allowed;
- &::after {
- cursor: not-allowed;
- background-color: $--radio-disabled-icon-color;
- }
- & + .el-radio__label {
- cursor: not-allowed;
- }
- }
- &.is-checked {
- .el-radio__inner {
- background-color: $--radio-disabled-checked-input-fill;
- border-color: $--radio-disabled-checked-input-border-color;
- &::after {
- background-color: $--radio-disabled-checked-icon-color;
- }
- }
- }
- & + span.el-radio__label {
- color: $--color-text-placeholder;
- cursor: not-allowed;
- }
- }
- @include when(checked) {
- .el-radio__inner {
- border-color: $--radio-checked-input-border-color;
- background: $--radio-checked-icon-color;
- &::after {
- transform: translate(-50%, -50%) scale(1);
- }
- }
- & + .el-radio__label {
- color: $--radio-checked-font-color;
- }
- }
- @include when(focus) {
- .el-radio__inner {
- border-color: $--radio-input-border-color-hover;
- }
- }
- }
- @include e(inner) {
- border: $--radio-input-border;
- border-radius: $--radio-input-border-radius;
- width: $--radio-input-width;
- height: $--radio-input-height;
- background-color: $--radio-input-background-color;
- position: relative;
- cursor: pointer;
- display: inline-block;
- box-sizing: border-box;
- &:hover {
- border-color: $--radio-input-border-color-hover;
- }
- &::after {
- width: 4px;
- height: 4px;
- border-radius: $--radio-input-border-radius;
- background-color: $--color-white;
- content: "";
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%) scale(0);
- transition: transform .15s ease-in;
- }
- }
- @include e(original) {
- opacity: 0;
- outline: none;
- position: absolute;
- z-index: -1;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- margin: 0;
- }
- &:focus:not(.is-focus):not(:active):not(.is-disabled) { /*获得焦点时 样式提醒*/
- .el-radio__inner {
- box-shadow: 0 0 2px 2px $--radio-input-border-color-hover;
- }
- }
- @include e(label) {
- font-size: $--radio-font-size;
- padding-left: 10px;
- }
- }
|