mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-24 06:59:52 +01:00
vueui: fixed toggle icons placement; added border around timeline
This commit is contained in:
parent
3158cba8f2
commit
b976d24e68
File diff suppressed because one or more lines are too long
@ -5,12 +5,14 @@
|
|||||||
<div class="logo"><img :src="config.logoImg" /></div>
|
<div class="logo"><img :src="config.logoImg" /></div>
|
||||||
<div class="timeline-wrap">
|
<div class="timeline-wrap">
|
||||||
<div class="line">
|
<div class="line">
|
||||||
<TimelineBreadcrumbs
|
<div class="breadcrumbs-wrap">
|
||||||
v-if="currentPeriod && showTimelineView"
|
<TimelineBreadcrumbs
|
||||||
:period="currentPeriod"
|
v-if="currentPeriod && showTimelineView"
|
||||||
@goto-period="gotoPeriod"
|
:period="currentPeriod"
|
||||||
class="breadcrumbs"
|
@goto-period="gotoPeriod"
|
||||||
></TimelineBreadcrumbs>
|
></TimelineBreadcrumbs>
|
||||||
|
<span v-if="!showTimelineView" v-html="' '"></span><!-- for spacing -->
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="toggles">
|
<div class="toggles">
|
||||||
<span class="toggle" :class="{expanded: showFullView}" @click="showFullView = !showFullView" :title="(showTimelineView ? 'show':'hide') + ' calendar'">
|
<span class="toggle" :class="{expanded: showFullView}" @click="showFullView = !showFullView" :title="(showTimelineView ? 'show':'hide') + ' calendar'">
|
||||||
@ -187,7 +189,7 @@ export default {
|
|||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.timeline-wrap .line .breadcrumbs {
|
.timeline-wrap .line .breadcrumbs-wrap {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
}
|
}
|
||||||
|
@ -217,6 +217,8 @@ export default{
|
|||||||
height: 60px;
|
height: 60px;
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
justify-content: left;
|
justify-content: left;
|
||||||
|
border: 1px solid black;
|
||||||
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.timeline .id {
|
.timeline .id {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user