mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 18:21:04 +08:00
5adb745743
Fix assign/unassign buttons [SCI-3785]
185 lines
2.8 KiB
SCSS
185 lines
2.8 KiB
SCSS
// scss-lint:disable SelectorDepth SelectorFormat QualifyingElement
|
|
// scss-lint:disable NestingDepth ImportantRule
|
|
|
|
@import "constants";
|
|
|
|
.repositories-dropdown-menu {
|
|
height: auto;
|
|
max-height: 400px;
|
|
overflow-x: hidden;
|
|
text-transform: initial;
|
|
}
|
|
|
|
.repository-table {
|
|
margin-top: 20px;
|
|
|
|
// Datatables generated name
|
|
.dataTables_length {
|
|
display: inline-block;
|
|
float: right;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.dataTables_filter {
|
|
float: right;
|
|
}
|
|
|
|
// hack only for firefox
|
|
@-moz-document url-prefix() {
|
|
input.form-control[type="file"] {
|
|
font-size: 13px;
|
|
height: auto;
|
|
padding: 3px 12px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.repository-cog {
|
|
display: inline-block;
|
|
float: right;
|
|
padding-left: 4px;
|
|
}
|
|
|
|
#repository-table_paginate {
|
|
float: right;
|
|
text-align: inherit;
|
|
}
|
|
|
|
.breadcrumb.breadcrumb-repository {
|
|
background-color: $color-concrete;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
#repository-toolbar {
|
|
display: flex;
|
|
|
|
.repository-title {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-grow: 1;
|
|
font-size: 18px;
|
|
font-weight: 500;
|
|
margin-right: 20px;
|
|
overflow: hidden;
|
|
|
|
span {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.repository-label {
|
|
flex-shrink: 0;
|
|
margin-right: 5px;
|
|
opacity: .8;
|
|
}
|
|
|
|
.repository-share-icon {
|
|
flex-shrink: 0;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.repository-name {
|
|
display: inline-block;
|
|
overflow: hidden;
|
|
}
|
|
|
|
}
|
|
|
|
.datatables-buttons {
|
|
flex-shrink: 0;
|
|
}
|
|
}
|
|
|
|
.toolbarButtonsDatatable {
|
|
.view-only-label {
|
|
opacity: .6;
|
|
}
|
|
|
|
.btn {
|
|
border: 0;
|
|
}
|
|
}
|
|
|
|
.sidebar-button {
|
|
color: $brand-primary !important;
|
|
|
|
span {
|
|
display: inline-block !important;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
.fas {
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
|
|
.share-repo-modal {
|
|
|
|
.modal-dialog {
|
|
width: 350px;
|
|
}
|
|
|
|
.share-repo-container {
|
|
padding: 15px 30px;
|
|
|
|
// Main structure css
|
|
.header,
|
|
.data-list {
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
|
|
.data-list {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.all-teams,
|
|
.teams-list {
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
|
|
.teams-list {
|
|
flex-direction: column;
|
|
max-height: 400px;
|
|
position: relative;
|
|
|
|
.team-container {
|
|
align-items: center;
|
|
display: flex;
|
|
padding: 5px 0;
|
|
}
|
|
}
|
|
|
|
.permission-selector {
|
|
display: flex;
|
|
flex-basis: 100px;
|
|
flex-shrink: 0;
|
|
justify-content: center;
|
|
}
|
|
|
|
.team-selector {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-grow: 1;
|
|
|
|
.checkbox-label {
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
|
|
// header
|
|
.header {
|
|
align-items: center;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
padding: 5px 0;
|
|
}
|
|
|
|
.all-teams {
|
|
align-items: center;
|
|
border-bottom: 1px solid $color-gainsboro;
|
|
padding: 5px 0;
|
|
user-select: none;
|
|
}
|
|
}
|
|
}
|