mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-13 20:56:52 +08:00
3f87d250ce
* Implement saving repository filters [SCI-6230] * Remove unnecessary logging [SCI-6230] * Refactor filter saving [SCI-6230] * Remove unnecessary files, linter fixes [SCI_6230]
49 lines
642 B
SCSS
49 lines
642 B
SCSS
.repositories-index {
|
|
&.active {
|
|
[data-view-mode="archived"] {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
&.archived {
|
|
[data-view-mode="active"] {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
&[data-readonly="true"] {
|
|
.main-actions {
|
|
.toolbar {
|
|
display: none;
|
|
}
|
|
|
|
.filter-container {
|
|
margin-left: auto;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#rename-repo-modal {
|
|
.modal-footer {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
#create-repo-modal {
|
|
.modal-footer {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
#new_repository {
|
|
.modal-footer {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
.main-actions {
|
|
.dropdown-menu {
|
|
font-size: 14px;
|
|
}
|
|
}
|