jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/emby-select/emby-select.css

45 lines
1.0 KiB
CSS
Raw Normal View History

2016-05-21 19:28:47 -07:00
[is="emby-select"] {
display: block;
margin: 0;
margin-bottom: 0 !important;
background: none;
border: 1px solid rgb(221, 221, 221);
border-width: 0 0 1px 0;
/* Prefixed box-sizing rules necessary for older browsers */
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
/* Remove select styling */
/* Font size must the 16px or larger to prevent iOS page zoom on focus */
font-size: inherit;
/* General select styles: change as needed */
font-family: inherit;
font-weight: bold;
color: inherit;
padding: .6em .8em .3em 0;
cursor: pointer;
outline: none !important;
}
.selectLabel {
display: block;
}
.selectLabelFocus {
color: #52B54B;
}
.emby-select-selectionbar {
height: 2px;
transform: scale(.01);
transition: transform .2s ease-out;
position: relative;
top: -1px;
margin-bottom: .5em;
}
[is="emby-select"]:focus + .emby-select-selectionbar {
background-color: #52B54B;
transform: none;
}