1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix automatic vendor prefix removal

This commit is contained in:
MrTimscampi 2019-12-30 13:38:51 +01:00
parent d08cd4d1cd
commit ecf0ee0c34
10 changed files with 31 additions and 10 deletions

View file

@ -4,6 +4,7 @@ button::-moz-focus-inner {
} }
button { button {
-webkit-border-fit: border !important;
} }
.card { .card {

View file

@ -1,4 +1,5 @@
_:-ms-input-placeholder { _:-ms-input-placeholder {
-ms-appearance: none;
height: 2.223em; height: 2.223em;
margin: 0; margin: 0;
} }
@ -59,6 +60,7 @@ _:-ms-input-placeholder {
} }
.mdl-slider::-webkit-slider-thumb { .mdl-slider::-webkit-slider-thumb {
-webkit-appearance: none;
width: 1.2em; width: 1.2em;
height: 1.2em; height: 1.2em;
box-sizing: border-box; box-sizing: border-box;
@ -85,6 +87,7 @@ _:-ms-input-placeholder {
} }
.mdl-slider::-moz-range-thumb { .mdl-slider::-moz-range-thumb {
-moz-appearance: none;
width: 0.9em; width: 0.9em;
height: 0.9em; height: 0.9em;
box-sizing: border-box; box-sizing: border-box;
@ -96,6 +99,7 @@ _:-ms-input-placeholder {
} }
.mdl-slider::-ms-thumb { .mdl-slider::-ms-thumb {
-webkit-appearance: none;
width: 1.8em; width: 1.8em;
height: 1.8em; height: 1.8em;
box-sizing: border-box; box-sizing: border-box;

View file

@ -424,6 +424,7 @@ html {
} }
::-webkit-scrollbar-track { ::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
} }
::-webkit-scrollbar-track-piece { ::-webkit-scrollbar-track-piece {
@ -432,6 +433,7 @@ html {
::-webkit-scrollbar-thumb:horizontal, ::-webkit-scrollbar-thumb:horizontal,
::-webkit-scrollbar-thumb:vertical { ::-webkit-scrollbar-thumb:vertical {
border-radius: 2px;
background: center no-repeat #888 background: center no-repeat #888
} }

View file

@ -545,6 +545,7 @@ a[data-role=button] {
} }
::-webkit-scrollbar-track { ::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
} }
::-webkit-scrollbar-track-piece { ::-webkit-scrollbar-track-piece {
@ -553,6 +554,7 @@ a[data-role=button] {
::-webkit-scrollbar-thumb:horizontal, ::-webkit-scrollbar-thumb:horizontal,
::-webkit-scrollbar-thumb:vertical { ::-webkit-scrollbar-thumb:vertical {
border-radius: 2px;
background: center no-repeat #888 background: center no-repeat #888
} }

View file

@ -86,7 +86,7 @@ html {
background: #00a4dc; background: #00a4dc;
color: #fff color: #fff
} }
border-radius: 2px;
.button-submit:focus { .button-submit:focus {
background: #0cb0e8; background: #0cb0e8;
color: #fff color: #fff
@ -445,6 +445,7 @@ html {
} }
::-webkit-scrollbar-track { ::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
} }
::-webkit-scrollbar-track-piece { ::-webkit-scrollbar-track-piece {
@ -453,6 +454,7 @@ html {
::-webkit-scrollbar-thumb:horizontal, ::-webkit-scrollbar-thumb:horizontal,
::-webkit-scrollbar-thumb:vertical { ::-webkit-scrollbar-thumb:vertical {
border-radius: 2px;
background: center no-repeat rgba(255, 255, 255, .7) background: center no-repeat rgba(255, 255, 255, .7)
} }

View file

@ -1,5 +1,6 @@
.dashboardColumn, .dashboardColumn,
.dashboardSections { .dashboardSections {
flex-direction: column;
} }
.dashboardFooter { .dashboardFooter {
@ -390,6 +391,7 @@ div[data-role=controlgroup] a.ui-btn-active {
} }
a[data-role=button] { a[data-role=button] {
background-clip: padding-box;
cursor: pointer !important; cursor: pointer !important;
font-family: inherit !important; font-family: inherit !important;
font-weight: 500 !important; font-weight: 500 !important;

View file

@ -92,10 +92,12 @@
.headerLeft, .headerLeft,
.skinHeader { .skinHeader {
display: flex;
} }
.detailButton-mobile, .detailButton-mobile,
.skinHeader { .skinHeader {
flex-direction: column;
} }
.pageTitleWithLogo { .pageTitleWithLogo {
@ -119,6 +121,7 @@
.headerLeft, .headerLeft,
.headerRight { .headerRight {
justify-content: center;
} }
.hiddenViewMenuBar .skinHeader { .hiddenViewMenuBar .skinHeader {
@ -542,6 +545,7 @@
.detailButton-mobile, .detailButton-mobile,
.mainDetailButtons { .mainDetailButtons {
display: flex;
} }
.itemName { .itemName {

View file

@ -15,6 +15,8 @@
white-space: nowrap; white-space: nowrap;
word-wrap: normal; word-wrap: normal;
direction: ltr; direction: ltr;
-webkit-font-feature-settings: 'liga';
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
font-feature-settings: "liga" 1; font-feature-settings: "liga" 1;
line-height: 1; line-height: 1;

View file

@ -9,11 +9,11 @@
} }
.hiddenScrollX, .layout-tv .scrollX { .hiddenScrollX, .layout-tv .scrollX {
/* Can't do this because it not only hides the scrollbar, but also prevents scrolling */ scrollbar-width: none;
/*overflow: -moz-scrollbars-none;*/
} }
.hiddenScrollX-forced { .hiddenScrollX-forced {
scrollbar-width: none;
} }
.hiddenScrollX::-webkit-scrollbar, .layout-tv .scrollX::-webkit-scrollbar { .hiddenScrollX::-webkit-scrollbar, .layout-tv .scrollX::-webkit-scrollbar {
@ -33,11 +33,11 @@
} }
.hiddenScrollY, .layout-tv .smoothScrollY { .hiddenScrollY, .layout-tv .smoothScrollY {
/* Can't do this because it not only hides the scrollbar, but also prevents scrolling */ scrollbar-width: none;
/*overflow: -moz-scrollbars-none;*/
} }
.hiddenScrollY-forced { .hiddenScrollY-forced {
scrollbar-width: none;
} }
.hiddenScrollY::-webkit-scrollbar, .layout-tv .smoothScrollY::-webkit-scrollbar, .layout-tv .scrollY::-webkit-scrollbar { .hiddenScrollY::-webkit-scrollbar, .layout-tv .smoothScrollY::-webkit-scrollbar, .layout-tv .scrollY::-webkit-scrollbar {

View file

@ -110,6 +110,8 @@
.osdMediaInfo, .osdMediaInfo,
.volumeButtons { .volumeButtons {
display: flex;
align-items: center;
} }
.volumeButtons { .volumeButtons {
@ -169,9 +171,9 @@
margin-left: auto; margin-left: auto;
} }
@-moz-keyframes spin { 100% { } } @-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { } } @-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { transform:rotate(360deg); } } @keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
.osdMediaStatus .animate { .osdMediaStatus .animate {
animation:spin 4s linear infinite; animation:spin 4s linear infinite;
} }