You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
1.4 KiB
95 lines
1.4 KiB
2 years ago
|
|
||
|
#browser_steps {
|
||
|
/* convert rows to horizontal cells */
|
||
|
th {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
li {
|
||
2 years ago
|
&:not(:first-child) {
|
||
|
&:hover {
|
||
|
opacity: 1.0;
|
||
|
}
|
||
|
}
|
||
2 years ago
|
list-style: decimal;
|
||
|
padding: 5px;
|
||
|
.control {
|
||
|
padding-left: 5px;
|
||
|
padding-right: 5px;
|
||
|
a {
|
||
|
font-size: 70%;
|
||
|
}
|
||
|
}
|
||
|
&.empty {
|
||
|
padding: 0px;
|
||
|
opacity: 0.35;
|
||
|
.control {
|
||
|
display: none;
|
||
|
}
|
||
|
}
|
||
|
&:hover {
|
||
|
background: #eee;
|
||
|
}
|
||
|
> label {
|
||
|
display: none;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#browser-steps-fieldlist {
|
||
|
height: 100%;
|
||
|
overflow-y: scroll;
|
||
|
}
|
||
|
|
||
|
#browser-steps .flex-wrapper {
|
||
|
display: flex;
|
||
|
flex-flow: row;
|
||
|
height: 600px; /*@todo make this dynamic */
|
||
|
}
|
||
|
|
||
|
/* this is duplicate :( */
|
||
|
#browsersteps-selector-wrapper {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
overflow-y: scroll;
|
||
|
position: relative;
|
||
|
//width: 100%;
|
||
|
> img {
|
||
|
position: absolute;
|
||
|
max-width: 100%;
|
||
|
}
|
||
|
|
||
|
> canvas {
|
||
|
position: relative;
|
||
|
max-width: 100%;
|
||
|
|
||
|
&:hover {
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.loader {
|
||
|
position: absolute;
|
||
|
left: 50%;
|
||
|
top: 50%;
|
||
|
transform: translate(-50%, -50%);
|
||
|
margin-left: -40px;
|
||
|
z-index: 100;
|
||
2 years ago
|
max-width: 350px;
|
||
|
text-align: center;
|
||
2 years ago
|
}
|
||
|
|
||
|
/* nice tall skinny one */
|
||
|
.spinner, .spinner:after {
|
||
|
width: 80px;
|
||
|
height: 80px;
|
||
|
font-size: 3px;
|
||
|
}
|
||
2 years ago
|
|
||
|
#browsersteps-click-start {
|
||
|
&:hover {
|
||
|
cursor: pointer;
|
||
|
}
|
||
2 years ago
|
color: var(--color-grey-400);
|
||
2 years ago
|
}
|
||
2 years ago
|
}
|