jellyfish-web/src/elements/emby-tabs/emby-tabs.css

44 lines
894 B
CSS
Raw Normal View History

2019-01-23 11:33:34 +00:00
.emby-tab-button {
2020-02-02 11:56:45 +01:00
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
background: transparent;
2018-10-23 01:13:23 +03:00
box-shadow: none;
cursor: pointer;
2019-09-06 22:33:15 -07:00
outline: none;
2018-10-23 01:13:23 +03:00
width: auto;
font-family: inherit;
font-size: inherit;
display: inline-block;
vertical-align: middle;
flex-shrink: 0;
margin: 0;
2020-03-04 20:37:22 +01:00
padding: 1.5em 1.5em;
position: relative;
2018-10-23 01:13:23 +03:00
height: auto;
min-width: initial;
2020-03-04 20:37:22 +01:00
line-height: 1.25;
2019-09-06 22:33:15 -07:00
border-radius: 0;
2018-10-23 01:13:23 +03:00
overflow: hidden;
font-weight: 600;
2018-10-23 01:13:23 +03:00
}
2019-09-06 22:33:15 -07:00
.emby-tab-button.show-focus:focus {
/* these buttons are small so scale larger than usual */
2019-12-20 23:18:41 +03:00
transform: scale(1.3) !important;
2019-09-06 22:33:15 -07:00
background: 0 !important;
}
.emby-tabs-slider {
position: relative;
2019-09-06 22:33:15 -07:00
overflow: hidden;
2018-10-23 01:13:23 +03:00
}
2020-01-21 20:11:24 +03:00
.layout-mobile .emby-tabs-slider {
overflow: auto;
}
2018-10-23 01:13:23 +03:00
.tabContent:not(.is-active) {
display: none;
}