_entry.scss
ASCII text
1/* Entries */ 2 3%entry, 4StEntry { 5min-height: $medium-size; 6padding: 0 8px; 7border-width: 0; 8border-radius: $corner-radius $corner-radius 0 0; 9color: $on-surface; 10selection-background-color: $selected-overlay; 11selected-color: $on-surface; 12@include type(body1); 13@include entry(normal); 14 15&:hover { 16@include entry(hover); 17} 18 19&:focus { 20@include entry(focus); 21 22@if $version == 3.34 { 23border: 0; 24} 25} 26 27&:insensitive { 28@include entry(insensitive); 29} 30 31StIcon.capslock-warning { 32icon-size: 16px; 33padding: 0 4px; 34warning-color: $warning; 35} 36 37StIcon.peek-password { 38icon-size: 16px; 39padding: 0 4px; 40color: hint($on-surface); 41 42&:hover { 43color: $on-surface; 44} 45} 46 47StLabel.hint-text { 48margin-left: 2px; 49color: hint($on-surface); 50} 51} 52