various layout fixes related to inline player causing unnecessary left padding if shorten_expanded is enabled
This commit is contained in:
parent
8c905ca020
commit
33240b7fd9
|
@ -68,6 +68,7 @@
|
|||
|
||||
.intermediate {
|
||||
margin-top : 10px;
|
||||
margin-left : 10px;
|
||||
}
|
||||
|
||||
.content-inner {
|
||||
|
|
|
@ -80,6 +80,15 @@ body.ttrss_main div.post div.content iframe {
|
|||
min-width: 50%;
|
||||
max-width: 98%;
|
||||
}
|
||||
body.ttrss_main .inline-player {
|
||||
display: flex;
|
||||
}
|
||||
body.ttrss_main .inline-player > * {
|
||||
align-self: center;
|
||||
}
|
||||
body.ttrss_main .inline-player audio {
|
||||
margin-right: 8px;
|
||||
}
|
||||
body.ttrss_main .article-note {
|
||||
background-color: #fff7d5;
|
||||
margin: 5px;
|
||||
|
@ -1095,6 +1104,7 @@ video::-webkit-media-controls-overlay-play-button {
|
|||
}
|
||||
.cdm .intermediate {
|
||||
margin-top: 10px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
.cdm .content-inner {
|
||||
margin: 10px;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -81,6 +81,18 @@ body.ttrss_main {
|
|||
}
|
||||
}
|
||||
|
||||
.inline-player {
|
||||
display : flex;
|
||||
|
||||
> * {
|
||||
align-self : center;
|
||||
}
|
||||
|
||||
audio {
|
||||
margin-right : 8px;
|
||||
}
|
||||
}
|
||||
|
||||
.article-note {
|
||||
background-color : #fff7d5;
|
||||
margin : 5px;
|
||||
|
|
|
@ -286,18 +286,22 @@ function format_inline_player($url, $ctype) {
|
|||
|
||||
if (strpos($ctype, "audio/") === 0) {
|
||||
|
||||
$entry .= "<div class='inline-player'>";
|
||||
|
||||
if ($_SESSION["hasAudio"] && (strpos($ctype, "ogg") !== false ||
|
||||
$_SESSION["hasMp3"])) {
|
||||
|
||||
$entry .= "<audio preload=\"none\" controls>
|
||||
<source type=\"$ctype\" src=\"$url\"/>
|
||||
</audio>";
|
||||
</audio> ";
|
||||
|
||||
}
|
||||
|
||||
if ($entry) $entry .= " <a target=\"_blank\" rel=\"noopener noreferrer\"
|
||||
if ($entry) $entry .= "<a target=\"_blank\" rel=\"noopener noreferrer\"
|
||||
href=\"$url\">" . basename($url) . "</a>";
|
||||
|
||||
$entry .= "</div>";
|
||||
|
||||
return $entry;
|
||||
|
||||
}
|
||||
|
|
|
@ -80,6 +80,15 @@ body.ttrss_main div.post div.content iframe {
|
|||
min-width: 50%;
|
||||
max-width: 98%;
|
||||
}
|
||||
body.ttrss_main .inline-player {
|
||||
display: flex;
|
||||
}
|
||||
body.ttrss_main .inline-player > * {
|
||||
align-self: center;
|
||||
}
|
||||
body.ttrss_main .inline-player audio {
|
||||
margin-right: 8px;
|
||||
}
|
||||
body.ttrss_main .article-note {
|
||||
background-color: #fff7d5;
|
||||
margin: 5px;
|
||||
|
@ -1095,6 +1104,7 @@ video::-webkit-media-controls-overlay-play-button {
|
|||
}
|
||||
.cdm .intermediate {
|
||||
margin-top: 10px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
.cdm .content-inner {
|
||||
margin: 10px;
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue