mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Fixed audio card responsive behaviour on frontend
Refs https://github.com/TryGhost/Team/issues/1230
This commit is contained in:
parent
58cdba41fa
commit
0322c47a58
1 changed files with 26 additions and 1 deletions
|
@ -41,7 +41,7 @@
|
|||
padding: 8px 12px 0;
|
||||
border: none;
|
||||
font-family: inherit;
|
||||
font-size: 1em;
|
||||
font-size: 1.1em;
|
||||
font-weight: 700;
|
||||
background: transparent;
|
||||
}
|
||||
|
@ -101,6 +101,12 @@
|
|||
margin: 0 4px;
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.kg-audio-seek-slider {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.kg-audio-playback-rate {
|
||||
min-width: 37px;
|
||||
padding: 0 4px;
|
||||
|
@ -113,6 +119,12 @@
|
|||
white-space: nowrap;
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.kg-audio-playback-rate {
|
||||
padding-left: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
.kg-audio-mute-icon,
|
||||
.kg-audio-unmute-icon {
|
||||
position: relative;
|
||||
|
@ -122,6 +134,13 @@
|
|||
background: transparent;
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.kg-audio-mute-icon,
|
||||
.kg-audio-unmute-icon {
|
||||
margin-left: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.kg-audio-mute-icon svg,
|
||||
.kg-audio-unmute-icon svg {
|
||||
width: 16px;
|
||||
|
@ -133,6 +152,12 @@
|
|||
width: 80px;
|
||||
}
|
||||
|
||||
@media (max-width: 400px) {
|
||||
.kg-audio-volume-slider {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.kg-audio-seek-slider::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
|
|
Loading…
Add table
Reference in a new issue