UNPKG

@progress/kendo-ui

Version:

This package is part of the [Kendo UI for jQuery](http://www.telerik.com/kendo-ui) suite.

171 lines (143 loc) 3.45 kB
/*! * Copyright 2021 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ // Container box .k-radio { margin: 0; padding: 0; width: @radio-size; height: @radio-size; border-width: @radio-border-width; border-style: solid; outline: 0; box-sizing: border-box; display: inline-block; vertical-align: middle; position: relative; -webkit-appearance: none; } // Checkmark .k-radio::before { content: ""; width: (@radio-size / 2); height: (@radio-size / 2); border-radius: 50%; background-color: currentColor; transform: scale(0) translate(-50%, -50%); overflow: hidden; position: absolute; top: 50%; left: 50%; } // Hover state .k-radio:hover { cursor: pointer; } // Checked state .k-radio:checked::before { transform: scale(1) translate(-50%, -50%); } // Disabled state .k-radio:disabled, .k-radio:disabled + .k-radio-label { opacity: .6; filter: grayscale(.8); cursor: default; } .k-radio + .k-radio-label { display: inline; } // Radio label .k-radio-label { margin: 0; padding: 0; line-height: @radio-line-height; display: inline-flex; align-items: flex-start; vertical-align: middle; position: relative; cursor: pointer; // Hide empty label &:empty, &.k-no-text { display: none; } .k-ripple { display: none !important; } } .k-radio + .k-radio-label, .k-radio-label + .k-radio { margin-left: @icon-spacing; } .k-radio-label > .k-radio { margin-right: @icon-spacing; flex-shrink: 0; } .k-radio-list { margin: @radio-list-margin; padding: @radio-list-padding; list-style: none; .k-radio-item { margin-top: @radio-list-item-margin-top; &:first-child { margin-top: 0; } } } .k-list-horizontal { .k-radio-item { display: inline-block; margin: 0 @radio-list-horizontal-item-margin-x 0 0; &:last-child { margin-right: 0; } } } // RTL .k-rtl, [dir="rtl"] { .k-radio + .k-radio-label, .k-radio-label + .k-radio { margin-left: 0; margin-right: @icon-spacing; } .k-radio-label > .k-radio { margin-right: 0; margin-left: @icon-spacing; } .k-list-horizontal { .k-radio-item { margin-right: 0; margin-left: @radio-list-horizontal-item-margin-x; &:last-child { margin-left: 0; } } } } // IE / Edge hack .k-radio::-ms-check { border-width: 0; border-color: inherit; color: inherit; background-color: inherit; } // IE 11 hack @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { .k-radio::-ms-check { border-width: @radio-border-width; } }