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:
parent
d08cd4d1cd
commit
ecf0ee0c34
10 changed files with 31 additions and 10 deletions
|
@ -4,6 +4,7 @@ button::-moz-focus-inner {
|
|||
}
|
||||
|
||||
button {
|
||||
-webkit-border-fit: border !important;
|
||||
}
|
||||
|
||||
.card {
|
||||
|
@ -774,4 +775,4 @@ button {
|
|||
.cardOverlayFab-primary:hover {
|
||||
transform: scale(1.4, 1.4);
|
||||
transition: 0.2s;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
_:-ms-input-placeholder {
|
||||
-ms-appearance: none;
|
||||
height: 2.223em;
|
||||
margin: 0;
|
||||
}
|
||||
|
@ -59,6 +60,7 @@ _:-ms-input-placeholder {
|
|||
}
|
||||
|
||||
.mdl-slider::-webkit-slider-thumb {
|
||||
-webkit-appearance: none;
|
||||
width: 1.2em;
|
||||
height: 1.2em;
|
||||
box-sizing: border-box;
|
||||
|
@ -85,6 +87,7 @@ _:-ms-input-placeholder {
|
|||
}
|
||||
|
||||
.mdl-slider::-moz-range-thumb {
|
||||
-moz-appearance: none;
|
||||
width: 0.9em;
|
||||
height: 0.9em;
|
||||
box-sizing: border-box;
|
||||
|
@ -96,6 +99,7 @@ _:-ms-input-placeholder {
|
|||
}
|
||||
|
||||
.mdl-slider::-ms-thumb {
|
||||
-webkit-appearance: none;
|
||||
width: 1.8em;
|
||||
height: 1.8em;
|
||||
box-sizing: border-box;
|
||||
|
|
|
@ -424,6 +424,7 @@ html {
|
|||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track-piece {
|
||||
|
@ -432,6 +433,7 @@ html {
|
|||
|
||||
::-webkit-scrollbar-thumb:horizontal,
|
||||
::-webkit-scrollbar-thumb:vertical {
|
||||
border-radius: 2px;
|
||||
background: center no-repeat #888
|
||||
}
|
||||
|
||||
|
|
|
@ -545,6 +545,7 @@ a[data-role=button] {
|
|||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track-piece {
|
||||
|
@ -553,6 +554,7 @@ a[data-role=button] {
|
|||
|
||||
::-webkit-scrollbar-thumb:horizontal,
|
||||
::-webkit-scrollbar-thumb:vertical {
|
||||
border-radius: 2px;
|
||||
background: center no-repeat #888
|
||||
}
|
||||
|
||||
|
|
|
@ -86,7 +86,7 @@ html {
|
|||
background: #00a4dc;
|
||||
color: #fff
|
||||
}
|
||||
|
||||
border-radius: 2px;
|
||||
.button-submit:focus {
|
||||
background: #0cb0e8;
|
||||
color: #fff
|
||||
|
@ -445,6 +445,7 @@ html {
|
|||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track-piece {
|
||||
|
@ -453,6 +454,7 @@ html {
|
|||
|
||||
::-webkit-scrollbar-thumb:horizontal,
|
||||
::-webkit-scrollbar-thumb:vertical {
|
||||
border-radius: 2px;
|
||||
background: center no-repeat rgba(255, 255, 255, .7)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue