mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 04:06:53 +08:00
feb596179f
Experiment table - fix new task modal CSS [SCI-7691]
123 lines
2 KiB
SCSS
123 lines
2 KiB
SCSS
// scss-lint:disable SelectorDepth NestingDepth IdSelector
|
|
|
|
#experimentTable,
|
|
#experiment-canvas,
|
|
#module-archive {
|
|
.experimnet-name {
|
|
max-width: calc(100% - 300px);
|
|
}
|
|
}
|
|
|
|
#experiment-canvas {
|
|
[data-view-mode="archived"] {
|
|
display: none;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|
|
}
|
|
|
|
#new-my-module-modal {
|
|
.my-module-due-date-container {
|
|
max-width: 200px;
|
|
}
|
|
|
|
.my-module-user-tags {
|
|
img {
|
|
border-radius: 50%;
|
|
display: inline;
|
|
margin-right: .5em;
|
|
max-height: 20px;
|
|
max-width: 20px;
|
|
}
|
|
}
|
|
.dropdown-selector-container {
|
|
.my-module-white-tags {
|
|
color: $color-white;
|
|
}
|
|
|
|
.my-module-tags-color {
|
|
border-radius: 8px;
|
|
display: inline-block;
|
|
height: 16px;
|
|
margin-right: 5px;
|
|
width: 16px;
|
|
}
|
|
|
|
.my-module-tags-create-new {
|
|
opacity: .6;
|
|
}
|
|
|
|
&.open {
|
|
.input-field {
|
|
border: 1px solid $color-alto;
|
|
}
|
|
}
|
|
|
|
&:not(.view-mode):hover {
|
|
.input-field {
|
|
border: 1px solid $color-alto;
|
|
}
|
|
}
|
|
}
|
|
|
|
.datetime-picker-container {
|
|
width: 45%;
|
|
|
|
.fa-calendar-alt {
|
|
color: $color-volcano !important;
|
|
font-size: 14px !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.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);
|
|
}
|
|
}
|
|
}
|