2022-10-18 20:54:29 +08:00
|
|
|
// scss-lint:disable SelectorDepth NestingDepth IdSelector
|
|
|
|
|
2022-12-23 17:35:17 +08:00
|
|
|
#experimentTable,
|
2023-01-06 17:54:38 +08:00
|
|
|
#experiment-canvas,
|
|
|
|
#module-archive {
|
2022-12-23 17:35:17 +08:00
|
|
|
.experimnet-name {
|
|
|
|
max-width: calc(100% - 300px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-20 17:21:52 +08:00
|
|
|
#experimentTable {
|
|
|
|
&.archived {
|
|
|
|
[data-view-mode="active"] {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-18 20:54:29 +08:00
|
|
|
#experiment-canvas {
|
|
|
|
[data-view-mode="archived"] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2023-04-06 17:50:56 +08:00
|
|
|
padding: 0;
|
|
|
|
|
2022-10-18 20:54:29 +08:00
|
|
|
.toolbar-row {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
margin: 10px 0;
|
|
|
|
|
|
|
|
.toolbar-right-block {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.zoom-text {
|
|
|
|
margin-right: .5em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-12-05 19:55:57 +08:00
|
|
|
|
|
|
|
#new-my-module-modal {
|
|
|
|
.my-module-user-tags {
|
|
|
|
img {
|
|
|
|
border-radius: 50%;
|
|
|
|
display: inline;
|
|
|
|
margin-right: .5em;
|
|
|
|
max-height: 20px;
|
|
|
|
max-width: 20px;
|
|
|
|
}
|
|
|
|
}
|
2022-12-19 18:55:38 +08:00
|
|
|
.dropdown-selector-container {
|
|
|
|
.my-module-white-tags {
|
|
|
|
color: $color-white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.my-module-tags-color {
|
2023-01-10 20:07:10 +08:00
|
|
|
align-items: center;
|
2022-12-19 18:55:38 +08:00
|
|
|
border-radius: 8px;
|
2023-01-10 20:07:10 +08:00
|
|
|
display: inline-flex;
|
2022-12-19 18:55:38 +08:00
|
|
|
height: 16px;
|
2023-01-10 20:07:10 +08:00
|
|
|
justify-content: center;
|
2022-12-19 18:55:38 +08:00
|
|
|
margin-right: 5px;
|
|
|
|
width: 16px;
|
2023-01-10 20:07:10 +08:00
|
|
|
|
|
|
|
&.new {
|
|
|
|
color: $color-silver-chalice;
|
|
|
|
}
|
2022-12-19 18:55:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.my-module-tags-create-new {
|
2023-01-10 20:07:10 +08:00
|
|
|
margin-left: 3px;
|
2022-12-19 18:55:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&.open {
|
|
|
|
.input-field {
|
|
|
|
border: 1px solid $color-alto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(.view-mode):hover {
|
|
|
|
.input-field {
|
|
|
|
border: 1px solid $color-alto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-12-05 19:55:57 +08:00
|
|
|
|
|
|
|
.datetime-picker-container {
|
|
|
|
width: 45%;
|
|
|
|
|
|
|
|
.fa-calendar-alt {
|
|
|
|
color: $color-volcano !important;
|
|
|
|
font-size: 14px !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-12-07 21:51:48 +08:00
|
|
|
|
|
|
|
.dropdown-experiment-actions,
|
|
|
|
.my-module-menu {
|
|
|
|
.divider-label {
|
|
|
|
@include font-small;
|
|
|
|
color: $color-silver-chalice;
|
|
|
|
padding: .25em 1em;
|
|
|
|
|
|
|
|
&.footer {
|
|
|
|
border-top: 1px solid $color-concrete;
|
|
|
|
padding-top: .5em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
@include font-button;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: .5em 1em;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
.fas {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: .25em;
|
|
|
|
width: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover:not(.divider-label) {
|
|
|
|
background: $color-concrete;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
display: inline-block;
|
|
|
|
margin: -.5em -1em;
|
|
|
|
padding: .5em 1em;
|
|
|
|
width: calc(100% + 2em);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|