🚑 Critical hotfix
This commit is contained in:
@@ -121,14 +121,6 @@ footer {
|
|||||||
align-self: flex-start;
|
align-self: flex-start;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-first {
|
|
||||||
z-index: 1;
|
|
||||||
height: 100vh;
|
|
||||||
padding: 0 8px;
|
|
||||||
background-color: var(--bg-dark-color);
|
|
||||||
transition: all 0.2s ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
.main {
|
.main {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: column;
|
flex-flow: column;
|
||||||
@@ -138,100 +130,6 @@ footer {
|
|||||||
padding: 0 16px;
|
padding: 0 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-second {
|
|
||||||
display: flex;
|
|
||||||
width: 10%;
|
|
||||||
order: 3;
|
|
||||||
// comment below this to display
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav.primary-nav {
|
|
||||||
display: flex;
|
|
||||||
flex-flow: column nowrap;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
|
|
||||||
svg {
|
|
||||||
fill: var(--fg-light-color);
|
|
||||||
transition: all 0.2s ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
display: inline-flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
flex-shrink: 0;
|
|
||||||
padding: 14px;
|
|
||||||
border-radius: 50%;
|
|
||||||
background-color: var(--bg-light-color);
|
|
||||||
color: var(--fg-light-color);
|
|
||||||
fill: var(--fg-light-color);
|
|
||||||
margin: 8px 0;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: var(--fg-color);
|
|
||||||
fill: var(--fg-color);
|
|
||||||
|
|
||||||
svg {
|
|
||||||
fill: var(--fg-color);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&.nuxt-link-exact-active {
|
|
||||||
background-color: var(--ac-color);
|
|
||||||
color: var(--act-color);
|
|
||||||
fill: var(--act-color);
|
|
||||||
border-radius: 16px;
|
|
||||||
|
|
||||||
svg {
|
|
||||||
fill: var(--act-color);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
nav.secondary-nav {
|
|
||||||
display: flex;
|
|
||||||
flex-flow: column nowrap;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
border-top: 2px dashed var(--brd-color);
|
|
||||||
margin-top: 4px;
|
|
||||||
|
|
||||||
ul {
|
|
||||||
display: flex;
|
|
||||||
flex-flow: column nowrap;
|
|
||||||
|
|
||||||
li {
|
|
||||||
display: flex;
|
|
||||||
|
|
||||||
a {
|
|
||||||
display: inline-flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
flex-shrink: 0;
|
|
||||||
padding: 14px;
|
|
||||||
border-radius: 50%;
|
|
||||||
background-color: var(--bg-dark-color);
|
|
||||||
color: var(--fg-light-color);
|
|
||||||
fill: var(--fg-light-color);
|
|
||||||
margin: 8px 0;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: var(--fg-color);
|
|
||||||
fill: var(--fg-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
&.current {
|
|
||||||
color: var(--ac-color);
|
|
||||||
fill: var(--ac-color);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
h1,
|
h1,
|
||||||
h2,
|
h2,
|
||||||
h3,
|
h3,
|
||||||
@@ -242,15 +140,19 @@ h4 {
|
|||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
|
|
||||||
hr {
|
h3.title {
|
||||||
border-bottom: 1px dashed var(--brd-color);
|
margin: 4px;
|
||||||
margin: 16px 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
transition: all 0.2s ease-in-out;
|
transition: all 0.2s ease-in-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
border-bottom: 1px dashed var(--brd-color);
|
||||||
|
margin: 16px 0;
|
||||||
|
}
|
||||||
|
|
||||||
.tooltip {
|
.tooltip {
|
||||||
$bgcolor: var(--tt-color);
|
$bgcolor: var(--tt-color);
|
||||||
$fgcolor: var(--fg-color);
|
$fgcolor: var(--fg-color);
|
||||||
@@ -381,10 +283,6 @@ p {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
h3.title {
|
|
||||||
margin: 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.info:not(.toasted) {
|
.info:not(.toasted) {
|
||||||
margin-left: 4px;
|
margin-left: 4px;
|
||||||
color: var(--fg-light-color);
|
color: var(--fg-light-color);
|
||||||
@@ -466,67 +364,6 @@ button {
|
|||||||
animation: beat 0.5s forwards 1;
|
animation: beat 0.5s forwards 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
fieldset {
|
|
||||||
margin: 16px 0;
|
|
||||||
border-radius: 8px;
|
|
||||||
background-color: var(--bg-dark-color);
|
|
||||||
transition: all 0.2s ease-in-out;
|
|
||||||
|
|
||||||
legend {
|
|
||||||
display: inline-block;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
color: var(--fg-color);
|
|
||||||
font-weight: 700;
|
|
||||||
cursor: pointer;
|
|
||||||
transition: all 0.2s ease-in-out;
|
|
||||||
|
|
||||||
* {
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
|
|
||||||
i {
|
|
||||||
margin-left: 8px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&.blue legend {
|
|
||||||
color: #57b5f9;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.gray legend {
|
|
||||||
color: #bcc2cd;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.green legend {
|
|
||||||
color: #50fa7b;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.cyan legend {
|
|
||||||
color: #8be9fd;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.purple legend {
|
|
||||||
color: #bd93f9;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.orange legend {
|
|
||||||
color: #ffb86c;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.pink legend {
|
|
||||||
color: #ff79c6;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.red legend {
|
|
||||||
color: #ff5555;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.yellow legend {
|
|
||||||
color: #f1fa8c;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fieldset:target,
|
fieldset:target,
|
||||||
section:target {
|
section:target {
|
||||||
animation: highlight 2s ease;
|
animation: highlight 2s ease;
|
||||||
@@ -870,44 +707,6 @@ section {
|
|||||||
flex-flow: column;
|
flex-flow: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-first {
|
|
||||||
position: fixed;
|
|
||||||
top: auto;
|
|
||||||
bottom: 0;
|
|
||||||
height: auto;
|
|
||||||
padding: 0;
|
|
||||||
width: 100%;
|
|
||||||
background-color: var(--bg-color);
|
|
||||||
box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.45);
|
|
||||||
}
|
|
||||||
|
|
||||||
nav.primary-nav {
|
|
||||||
flex-flow: row nowrap;
|
|
||||||
overflow: auto;
|
|
||||||
justify-content: space-between;
|
|
||||||
background-color: var(--bg-dark-color);
|
|
||||||
|
|
||||||
a {
|
|
||||||
background-color: transparent;
|
|
||||||
margin: 8px;
|
|
||||||
flex: 1;
|
|
||||||
|
|
||||||
&.nuxt-link-exact-active {
|
|
||||||
background-color: transparent;
|
|
||||||
color: var(--ac-color);
|
|
||||||
fill: var(--ac-color);
|
|
||||||
|
|
||||||
svg {
|
|
||||||
fill: var(--ac-color);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
nav.secondary-nav {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.main {
|
.main {
|
||||||
padding: 0 8px 68px;
|
padding: 0 8px 68px;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -43,6 +43,8 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { fb } from "../../functions/fb"
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
show: Boolean,
|
show: Boolean,
|
||||||
|
|||||||
@@ -248,7 +248,7 @@
|
|||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
.virtual-list {
|
.virtual-list {
|
||||||
max-height: calc(100vh - 294px);
|
max-height: calc(100vh - 290px);
|
||||||
|
|
||||||
[readonly] {
|
[readonly] {
|
||||||
cursor: default;
|
cursor: default;
|
||||||
|
|||||||
@@ -13,6 +13,67 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
|
fieldset {
|
||||||
|
margin: 16px 0;
|
||||||
|
border-radius: 8px;
|
||||||
|
background-color: var(--bg-dark-color);
|
||||||
|
transition: all 0.2s ease-in-out;
|
||||||
|
|
||||||
|
legend {
|
||||||
|
display: inline-block;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
color: var(--fg-color);
|
||||||
|
font-weight: 700;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: all 0.2s ease-in-out;
|
||||||
|
|
||||||
|
* {
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
i {
|
||||||
|
margin-left: 8px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.blue legend {
|
||||||
|
color: #57b5f9;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.gray legend {
|
||||||
|
color: #bcc2cd;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.green legend {
|
||||||
|
color: #50fa7b;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.cyan legend {
|
||||||
|
color: #8be9fd;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.purple legend {
|
||||||
|
color: #bd93f9;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.orange legend {
|
||||||
|
color: #ffb86c;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.pink legend {
|
||||||
|
color: #ff79c6;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.red legend {
|
||||||
|
color: #ff5555;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.yellow legend {
|
||||||
|
color: #f1fa8c;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fieldset.no-colored-frames legend {
|
fieldset.no-colored-frames legend {
|
||||||
color: var(--fg-color);
|
color: var(--fg-color);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -167,6 +167,144 @@
|
|||||||
</aside>
|
</aside>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
$responsiveWidth: 768px;
|
||||||
|
|
||||||
|
.nav-first {
|
||||||
|
z-index: 1;
|
||||||
|
height: 100vh;
|
||||||
|
padding: 0 8px;
|
||||||
|
background-color: var(--bg-dark-color);
|
||||||
|
transition: all 0.2s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav.primary-nav {
|
||||||
|
display: flex;
|
||||||
|
flex-flow: column nowrap;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
svg {
|
||||||
|
fill: var(--fg-light-color);
|
||||||
|
transition: all 0.2s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
flex-shrink: 0;
|
||||||
|
padding: 14px;
|
||||||
|
border-radius: 50%;
|
||||||
|
background-color: var(--bg-light-color);
|
||||||
|
color: var(--fg-light-color);
|
||||||
|
fill: var(--fg-light-color);
|
||||||
|
margin: 8px 0;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: var(--fg-color);
|
||||||
|
fill: var(--fg-color);
|
||||||
|
|
||||||
|
svg {
|
||||||
|
fill: var(--fg-color);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.nuxt-link-exact-active {
|
||||||
|
background-color: var(--ac-color);
|
||||||
|
color: var(--act-color);
|
||||||
|
fill: var(--act-color);
|
||||||
|
border-radius: 16px;
|
||||||
|
|
||||||
|
svg {
|
||||||
|
fill: var(--act-color);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
nav.secondary-nav {
|
||||||
|
display: flex;
|
||||||
|
flex-flow: column nowrap;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
border-top: 2px dashed var(--brd-color);
|
||||||
|
margin-top: 4px;
|
||||||
|
|
||||||
|
ul {
|
||||||
|
display: flex;
|
||||||
|
flex-flow: column nowrap;
|
||||||
|
|
||||||
|
li {
|
||||||
|
display: flex;
|
||||||
|
|
||||||
|
a {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
flex-shrink: 0;
|
||||||
|
padding: 14px;
|
||||||
|
border-radius: 50%;
|
||||||
|
background-color: var(--bg-dark-color);
|
||||||
|
color: var(--fg-light-color);
|
||||||
|
fill: var(--fg-light-color);
|
||||||
|
margin: 8px 0;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: var(--fg-color);
|
||||||
|
fill: var(--fg-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.current {
|
||||||
|
color: var(--ac-color);
|
||||||
|
fill: var(--ac-color);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: $responsiveWidth) {
|
||||||
|
.nav-first {
|
||||||
|
position: fixed;
|
||||||
|
top: auto;
|
||||||
|
bottom: 0;
|
||||||
|
height: auto;
|
||||||
|
padding: 0;
|
||||||
|
width: 100%;
|
||||||
|
background-color: var(--bg-color);
|
||||||
|
box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.45);
|
||||||
|
}
|
||||||
|
|
||||||
|
nav.primary-nav {
|
||||||
|
flex-flow: row nowrap;
|
||||||
|
overflow: auto;
|
||||||
|
justify-content: space-between;
|
||||||
|
background-color: var(--bg-dark-color);
|
||||||
|
|
||||||
|
a {
|
||||||
|
background-color: transparent;
|
||||||
|
margin: 8px;
|
||||||
|
flex: 1;
|
||||||
|
|
||||||
|
&.nuxt-link-exact-active {
|
||||||
|
background-color: transparent;
|
||||||
|
color: var(--ac-color);
|
||||||
|
fill: var(--ac-color);
|
||||||
|
|
||||||
|
svg {
|
||||||
|
fill: var(--ac-color);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
nav.secondary-nav {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
|
|||||||
@@ -8,7 +8,6 @@
|
|||||||
<nuxt />
|
<nuxt />
|
||||||
<pw-footer />
|
<pw-footer />
|
||||||
</div>
|
</div>
|
||||||
<!-- <aside class="nav-second"></aside> -->
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user