mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 18:21:04 +08:00
114 lines
1.6 KiB
SCSS
114 lines
1.6 KiB
SCSS
// scss-lint:disable SelectorDepth SelectorFormat QualifyingElement
|
|
// scss-lint:disable NestingDepth ImportantRule
|
|
|
|
@import "constants";
|
|
|
|
.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-status-value-icon {
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.dropdown-selector-container {
|
|
width: 150px;
|
|
}
|
|
|
|
|
|
// Cells
|
|
|
|
|
|
// Assigned
|
|
|
|
.assigned-column {
|
|
.repository-row-edit-icon {
|
|
cursor: pointer;
|
|
display: none;
|
|
width: 30px;
|
|
}
|
|
|
|
.circle-icon {
|
|
margin-left: 30px;
|
|
}
|
|
}
|
|
|
|
// Checklists
|
|
.checklist-dropdown {
|
|
.dropdown-menu {
|
|
.checklist-item {
|
|
padding: 5px;
|
|
}
|
|
}
|
|
}
|
|
|
|
// DateTime
|
|
.dateonly {
|
|
input.time-part {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.timeonly {
|
|
input.date-part {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
// Actions
|
|
|
|
tbody {
|
|
tr:hover {
|
|
background-color: $color-concrete;
|
|
|
|
.assigned-column {
|
|
.repository-row-edit-icon {
|
|
display: inline-block;
|
|
}
|
|
|
|
.circle-icon {
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.editing {
|
|
border: 1px solid;
|
|
}
|
|
}
|
|
|
|
&.editing {
|
|
tbody {
|
|
tr:hover {
|
|
.assigned-column {
|
|
.repository-row-edit-icon {
|
|
display: none;
|
|
}
|
|
|
|
.circle-icon {
|
|
margin-left: 30px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|