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

71 lines
1.5 KiB
CSS
Raw Normal View History

2016-08-02 18:32:16 -07:00
.emby-select {
2016-05-21 19:28:47 -07:00
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 */
2016-08-21 12:18:58 -07:00
font-size: 110%;
2016-05-21 19:28:47 -07:00
/* General select styles: change as needed */
font-family: inherit;
2016-05-21 21:17:28 -07:00
font-weight: inherit;
2016-05-21 19:28:47 -07:00
color: inherit;
2016-05-21 23:08:44 -07:00
padding: .35em .8em .3em 0;
2016-05-21 19:28:47 -07:00
cursor: pointer;
outline: none !important;
2016-05-21 21:17:28 -07:00
width: 100%;
2016-07-06 21:28:58 -07:00
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
2016-05-21 19:28:47 -07:00
}
2016-08-02 18:32:16 -07:00
.emby-select option {
2016-07-06 21:28:58 -07:00
color: initial;
}
2016-06-13 21:06:57 -07:00
2016-05-23 10:54:38 -07:00
.selectContainer {
2016-08-30 11:13:41 -07:00
margin-bottom: 1.8em;
2016-07-06 21:28:58 -07:00
position: relative;
}
.selectArrowContainer {
position: absolute;
right: 0;
top: .25em;
color: inherit;
}
.selectArrow {
margin-top: .35em;
2016-05-23 10:54:38 -07:00
}
2016-05-21 19:28:47 -07:00
.selectLabel {
display: block;
}
2016-05-21 21:17:28 -07:00
.selectLabelFocused {
2016-05-21 19:28:47 -07:00
color: #52B54B;
}
.emby-select-selectionbar {
height: 2px;
2016-05-21 21:17:28 -07:00
transform: scale(.01, 1);
transition: transform .25s ease-out;
2016-05-21 19:28:47 -07:00
position: relative;
top: -1px;
margin-bottom: .5em;
2016-05-21 21:17:28 -07:00
-webkit-transform-origin: center center;
transform-origin: center center;
2016-05-21 19:28:47 -07:00
}
2016-08-02 18:32:16 -07:00
.emby-select:focus + .emby-select-selectionbar {
2016-05-21 19:28:47 -07:00
background-color: #52B54B;
transform: none;
}