Continued tool tutorials

Also fixed fill tool history bug
This commit is contained in:
Nicola
2022-01-25 23:47:01 +01:00
parent 238f313fdc
commit b616579c65
15 changed files with 127 additions and 15 deletions

View File

@@ -3,7 +3,8 @@
#splash {
width:100% !important;
height:100%!important;
position:absolute;
position:fixed;
margin-top:-20px;
background-color: #232125 !important;
opacity: 1 !important;

View File

@@ -10,7 +10,7 @@
background-color: $basecolor;
box-sizing: border-box;
position: fixed;
z-index: 1120;
z-index: 1108;
}
#tools-menu li {
@@ -110,11 +110,35 @@
background: $basehover;
}
@keyframes fadeIn {
to {
opacity: 1;
}
}
@keyframes fadeOut {
to {
opacity: 0;
}
}
.fade-in {
opacity: 0;
animation: fadeIn .1s forwards;
}
.fade-out {
animation: fadeOut .1s forwards;
}
.is-paused {
animation-play-state: paused;
}
/* Tool tutorial */
#tool-tutorial {
display:inline-block;
position:absolute;
z-index:4000;
z-index:1109;
margin-left:48px;
margin-top:48px;
background-color: $basehover;
@@ -126,6 +150,11 @@
img {
width:100%;
}
h3 {
margin-left:20px;
margin-bottom:-5px;
}
}
#tool-tutorial:after {