You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
696 B
36 lines
696 B
.p-radiobutton {
|
|
display: inline-flex;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
vertical-align: bottom;
|
|
position: relative;
|
|
}
|
|
|
|
.p-radiobutton-box {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.p-radiobutton-icon {
|
|
-webkit-backface-visibility: hidden;
|
|
backface-visibility: hidden;
|
|
transform: translateZ(0) scale(.1);
|
|
border-radius: 50%;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.p-radiobutton-box.p-highlight .p-radiobutton-icon {
|
|
transform: translateZ(0) scale(1.0, 1.0);
|
|
visibility: visible;
|
|
}
|
|
|
|
p-radiobutton {
|
|
display: inline-flex;
|
|
vertical-align: bottom;
|
|
align-items: center;
|
|
}
|
|
|
|
.p-radiobutton-label {
|
|
line-height: 1;
|
|
}
|