forked from Public/pics
AlbumHeaderBox: apply some border radius to tag headers
This commit is contained in:
parent
812c7a4f20
commit
b9bd2bf499
@ -107,6 +107,7 @@ ul#nav li a:hover {
|
|||||||
.tiled_header {
|
.tiled_header {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
|
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
|
||||||
|
border-radius: 0.5rem;
|
||||||
color: #000;
|
color: #000;
|
||||||
clear: both;
|
clear: both;
|
||||||
float: left;
|
float: left;
|
||||||
@ -248,15 +249,19 @@ ul#nav li a:hover {
|
|||||||
.album_title_box > a {
|
.album_title_box > a {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
|
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
|
||||||
|
border-top-left-radius: 0.5rem;
|
||||||
|
border-bottom-left-radius: 0.5rem;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
float: left;
|
float: left;
|
||||||
font-size: 2em;
|
font-size: 2em;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
padding: 8px 10px 14px;
|
padding: 8px 10px;
|
||||||
}
|
}
|
||||||
.album_title_box > div {
|
.album_title_box > div {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
|
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
|
||||||
|
border-top-right-radius: 0.5rem;
|
||||||
|
border-bottom-right-radius: 0.5rem;
|
||||||
float: left;
|
float: left;
|
||||||
font: inherit;
|
font: inherit;
|
||||||
padding: 6px 22px;
|
padding: 6px 22px;
|
||||||
|
@ -25,7 +25,9 @@ class AlbumHeaderBox extends Template
|
|||||||
{
|
{
|
||||||
echo '
|
echo '
|
||||||
<div class="album_title_box">
|
<div class="album_title_box">
|
||||||
<a class="back_button" href="', $this->back_link, '" title="', $this->back_link_title, '">←</a>
|
<a class="back_button" href="', $this->back_link, '" title="', $this->back_link_title, '">
|
||||||
|
<i class="bi bi-arrow-left"></i>
|
||||||
|
</a>
|
||||||
<div>
|
<div>
|
||||||
<h2>', $this->title, '</h2>';
|
<h2>', $this->title, '</h2>';
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user