2022-10-11 10:44:36 -04:00
|
|
|
@project-list-sidebar-wrapper-flex: 0 0 15%;
|
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.project-list-react {
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
|
|
|
body > .content& {
|
|
|
|
padding-top: @header-height;
|
|
|
|
padding-bottom: 0;
|
|
|
|
min-height: calc(~'100vh -' @header-height);
|
|
|
|
}
|
|
|
|
|
|
|
|
.container:before {
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fill {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
clear: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.project-list-wrapper {
|
2022-10-06 10:37:44 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: stretch;
|
|
|
|
min-height: calc(~'100vh -' @header-height);
|
2022-09-13 09:57:47 -04:00
|
|
|
}
|
|
|
|
|
2022-10-06 10:37:44 -04:00
|
|
|
.project-list-sidebar-wrapper-react {
|
|
|
|
background-color: @sidebar-bg;
|
2022-10-11 10:44:36 -04:00
|
|
|
flex: @project-list-sidebar-wrapper-flex;
|
2022-10-06 10:37:44 -04:00
|
|
|
min-height: calc(~'100vh -' @header-height);
|
2022-10-03 10:17:27 -04:00
|
|
|
|
2022-10-06 10:37:44 -04:00
|
|
|
.project-list-sidebar-subwrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
.project-list-sidebar-react {
|
|
|
|
height: 100%;
|
|
|
|
padding-left: 15px;
|
|
|
|
padding-right: 15px;
|
|
|
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
|
|
|
padding-top: @content-margin-vertical;
|
|
|
|
padding-bottom: @content-margin-vertical;
|
|
|
|
color: @sidebar-color;
|
2022-10-21 07:32:50 -04:00
|
|
|
|
2022-10-06 10:37:44 -04:00
|
|
|
.small {
|
|
|
|
color: @sidebar-color;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-10-17 11:54:29 -04:00
|
|
|
button {
|
|
|
|
white-space: normal;
|
|
|
|
word-wrap: anywhere;
|
|
|
|
// prevents buttons from expanding sidebar width
|
|
|
|
}
|
|
|
|
|
2022-10-06 10:37:44 -04:00
|
|
|
> .dropdown {
|
2022-09-13 09:57:47 -04:00
|
|
|
width: 100%;
|
2022-10-06 10:37:44 -04:00
|
|
|
|
|
|
|
.new-project-button {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2022-09-13 09:57:47 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-06 10:37:44 -04:00
|
|
|
.project-list-welcome-wrapper {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.project-list-main-react {
|
2022-11-04 06:05:02 -04:00
|
|
|
max-width: 100%;
|
2022-10-06 10:37:44 -04:00
|
|
|
padding: @content-margin-vertical @grid-gutter-width / 2;
|
2022-09-13 09:57:47 -04:00
|
|
|
}
|
|
|
|
|
2022-10-06 10:37:52 -04:00
|
|
|
ul.project-list-filters {
|
|
|
|
margin: @margin-sm @folders-menu-margin;
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.subdued {
|
|
|
|
color: @gray-light;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
> li {
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
> button {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
font-weight: normal;
|
|
|
|
text-align: left;
|
|
|
|
color: @sidebar-link-color;
|
|
|
|
background-color: transparent;
|
|
|
|
border-radius: unset;
|
|
|
|
border: none;
|
|
|
|
border-bottom: solid 1px transparent;
|
|
|
|
padding: @folders-menu-item-v-padding @folders-menu-item-h-padding;
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
&:hover {
|
|
|
|
background-color: @sidebar-hover-bg;
|
|
|
|
text-decoration: @sidebar-hover-text-decoration;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
&:focus {
|
|
|
|
text-decoration: none;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.separator {
|
|
|
|
padding: @folders-menu-item-v-padding @folders-menu-item-h-padding;
|
|
|
|
cursor: auto;
|
|
|
|
}
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
> li.active {
|
|
|
|
border-radius: @sidebar-active-border-radius;
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
> button {
|
|
|
|
background-color: @sidebar-active-bg;
|
|
|
|
font-weight: @sidebar-active-font-weight;
|
|
|
|
color: @sidebar-active-color;
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.subdued {
|
|
|
|
color: @sidebar-active-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
h2 {
|
|
|
|
margin-top: @folders-title-margin-top;
|
|
|
|
margin-bottom: @folders-title-margin-bottom;
|
|
|
|
font-size: @folders-title-font-size;
|
|
|
|
color: @folders-title-color;
|
|
|
|
text-transform: @folders-title-text-transform;
|
|
|
|
padding: @folders-title-padding;
|
|
|
|
font-weight: @folders-title-font-weight;
|
|
|
|
font-family: @font-family-sans-serif;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
> li.tag {
|
|
|
|
&.active {
|
|
|
|
.tag-menu > button {
|
|
|
|
color: white;
|
|
|
|
border-color: white;
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
&:hover {
|
|
|
|
background-color: @folders-tag-menu-active-hover;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
&.untagged {
|
|
|
|
button.tag-name {
|
|
|
|
span.name {
|
|
|
|
font-style: italic;
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
&:hover {
|
|
|
|
&:not(.active) {
|
|
|
|
background-color: @folders-tag-hover;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.tag-menu {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
&:not(.active) {
|
|
|
|
.tag-menu > a:hover {
|
|
|
|
background-color: @folders-tag-menu-hover;
|
|
|
|
}
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
button.tag-name {
|
|
|
|
position: relative;
|
|
|
|
padding: @folders-tag-padding;
|
|
|
|
display: @folders-tag-display;
|
2022-10-11 10:44:21 -04:00
|
|
|
word-wrap: anywhere;
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
span.name {
|
|
|
|
padding-left: 0.5em;
|
|
|
|
line-height: @folders-tag-line-height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.tag-menu {
|
|
|
|
button.dropdown-toggle {
|
|
|
|
border: 1px solid @folders-tag-border-color;
|
|
|
|
border-radius: @border-radius-small;
|
|
|
|
background-color: transparent;
|
|
|
|
color: @folders-tag-menu-color;
|
|
|
|
display: block;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
position: relative;
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.caret {
|
|
|
|
position: absolute;
|
|
|
|
top: 6px;
|
|
|
|
left: 1px;
|
|
|
|
}
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
display: none;
|
|
|
|
width: auto;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
margin-top: -8px; // Half the element height.
|
|
|
|
right: 4px;
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
&.open {
|
|
|
|
display: block;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
button.tag-action {
|
|
|
|
border-radius: unset;
|
|
|
|
width: 100%;
|
|
|
|
background-color: transparent;
|
|
|
|
border-color: transparent;
|
|
|
|
color: @gray-dark;
|
|
|
|
text-align: left;
|
|
|
|
font-weight: normal;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: @white;
|
|
|
|
background-color: @ol-green;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
&:active {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.project-dash-table {
|
|
|
|
width: 100%;
|
|
|
|
table-layout: fixed;
|
|
|
|
|
|
|
|
tr {
|
|
|
|
border-bottom: 1px solid @structured-list-border-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
th,
|
|
|
|
td {
|
|
|
|
padding: (@line-height-computed / 4) @line-height-computed / 2;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr {
|
|
|
|
th:first-child,
|
|
|
|
td:first-child,
|
|
|
|
th:last-child,
|
|
|
|
td:last-child {
|
|
|
|
padding-right: @line-height-computed - (@grid-gutter-width / 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2022-09-16 09:35:55 -04:00
|
|
|
&:not(.no-projects) {
|
|
|
|
background-color: @structured-list-hover-color;
|
|
|
|
}
|
2022-09-13 09:57:47 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
thead {
|
|
|
|
tr:hover {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tbody {
|
|
|
|
tr:last-child {
|
|
|
|
border-bottom: 0 none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.table-header-sort-btn {
|
|
|
|
border: 0;
|
|
|
|
text-align: left;
|
|
|
|
color: @ol-type-color;
|
|
|
|
padding: 0;
|
|
|
|
font-weight: bold;
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
color: @ol-type-color;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dash-cell-checkbox {
|
|
|
|
width: 5%;
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
input[type='checkbox'] {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.dash-cell-name {
|
|
|
|
width: 50%;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.dash-cell-owner {
|
|
|
|
width: 20%;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.dash-cell-date {
|
|
|
|
width: 25%;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.dash-cell-actions {
|
|
|
|
display: none;
|
|
|
|
text-align: right;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2022-09-23 04:37:02 -04:00
|
|
|
.dash-cell-date-owner {
|
|
|
|
font-size: 14px;
|
|
|
|
.text-overflow();
|
|
|
|
}
|
|
|
|
|
|
|
|
.dash-cell-tag {
|
|
|
|
.tag-label {
|
|
|
|
padding: 14px 0;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:not(.tag-label-close-hover) {
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
.label.tag-label-name {
|
|
|
|
color: @tag-color;
|
|
|
|
background-color: @tag-bg-hover-color;
|
|
|
|
outline-width: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
margin-left: initial;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
@media (min-width: @screen-xs) {
|
|
|
|
.dash-cell-checkbox {
|
|
|
|
width: 4%;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.dash-cell-name {
|
|
|
|
width: 50%;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.dash-cell-owner {
|
|
|
|
width: 21%;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.dash-cell-date {
|
|
|
|
width: 25%;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.dash-cell-actions {
|
|
|
|
width: 0%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: @screen-sm) {
|
|
|
|
.dash-cell-checkbox {
|
|
|
|
width: 3%;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.dash-cell-name {
|
|
|
|
width: 48%;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.dash-cell-owner {
|
|
|
|
width: 13%;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.dash-cell-date {
|
|
|
|
width: 15%;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.dash-cell-actions {
|
|
|
|
display: table-cell;
|
|
|
|
width: 21%;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
|
|
|
.project-tools {
|
|
|
|
float: none;
|
|
|
|
}
|
2022-09-13 09:57:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: @screen-md) {
|
|
|
|
.dash-cell-checkbox {
|
|
|
|
width: 3%;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.dash-cell-name {
|
|
|
|
width: 50%;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.dash-cell-owner {
|
|
|
|
width: 13%;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.dash-cell-date {
|
|
|
|
width: 16%;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.dash-cell-actions {
|
|
|
|
width: 18%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: @screen-lg) {
|
|
|
|
.dash-cell-checkbox {
|
|
|
|
width: 3%;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.dash-cell-name {
|
|
|
|
width: 50%;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.dash-cell-owner {
|
|
|
|
width: 15%;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.dash-cell-date {
|
|
|
|
width: 19%;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.dash-cell-actions {
|
|
|
|
width: 13%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 1440px) {
|
|
|
|
.dash-cell-checkbox {
|
|
|
|
width: 2%;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.dash-cell-name {
|
|
|
|
width: 50%;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.dash-cell-owner {
|
|
|
|
width: 16%;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.dash-cell-date {
|
|
|
|
width: 19%;
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
.dash-cell-actions {
|
|
|
|
width: 13%;
|
|
|
|
}
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
|
|
@actions-btn-size: 48px;
|
|
|
|
|
|
|
|
tr {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
td {
|
|
|
|
padding-top: @line-height-computed / 6;
|
|
|
|
padding-bottom: @line-height-computed / 6;
|
|
|
|
}
|
|
|
|
|
|
|
|
td:not(.dash-cell-actions) {
|
|
|
|
padding-right: @actions-btn-size + 12.5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dash-cell-name,
|
|
|
|
.dash-cell-owner,
|
|
|
|
.dash-cell-date,
|
|
|
|
.dash-cell-tag,
|
|
|
|
.dash-cell-actions {
|
|
|
|
display: block;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dash-cell-actions {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
padding: 0 !important;
|
|
|
|
|
|
|
|
.dropdown-toggle {
|
|
|
|
padding: 13px 15px;
|
|
|
|
border-radius: 0;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-09-13 09:57:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.loading-container {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
min-height: calc(~'100vh -' @header-height);
|
|
|
|
|
|
|
|
.loading-screen-brand-container {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
|
|
.project-tools {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.projects-toolbar,
|
|
|
|
.tag-item {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.projects-toolbar {
|
2022-11-04 06:05:02 -04:00
|
|
|
.dropdown,
|
|
|
|
.dropdown-toggle {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown {
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-toggle {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: baseline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.projects-sort-dropdown {
|
|
|
|
flex-shrink: 0;
|
|
|
|
margin-left: auto;
|
2022-09-23 04:37:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#projects-types-dropdown {
|
|
|
|
font-family: @font-family-serif;
|
|
|
|
|
|
|
|
& + .projects-dropdown-menu {
|
|
|
|
min-width: 226px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#projects-sort-dropdown {
|
|
|
|
& + .projects-dropdown-menu {
|
|
|
|
min-width: 156px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.projects-dropdown-menu {
|
|
|
|
.dropdown-header {
|
|
|
|
padding: 14px 20px;
|
|
|
|
font-size: 13px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.projects-types-menu-item {
|
|
|
|
.menu-item-button-icon {
|
|
|
|
left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.projects-types-menu-tag-item {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.edit-btn {
|
|
|
|
padding: 12px 14px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.projects-sort-menu-item {
|
|
|
|
.menu-item-button-icon {
|
|
|
|
left: 14px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.projects-action-menu-item {
|
|
|
|
.menu-item-button-icon {
|
|
|
|
left: 11px;
|
|
|
|
}
|
|
|
|
}
|
2022-09-13 09:57:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.current-plan {
|
|
|
|
vertical-align: middle;
|
|
|
|
line-height: @line-height-base;
|
2022-09-23 04:37:02 -04:00
|
|
|
|
2022-09-13 09:57:47 -04:00
|
|
|
a.current-plan-label {
|
|
|
|
text-decoration: none;
|
|
|
|
color: @text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.project-list-upload-project-modal-uppy-dashboard .uppy-Root {
|
|
|
|
.uppy-Dashboard-AddFiles-title {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
color: @ol-blue-gray-3;
|
|
|
|
white-space: pre-line;
|
|
|
|
|
|
|
|
button.uppy-Dashboard-browse {
|
|
|
|
background-color: @ol-green;
|
|
|
|
color: @white;
|
|
|
|
margin-bottom: @margin-md;
|
|
|
|
padding: 4px 16px 5px;
|
|
|
|
height: 46px;
|
|
|
|
border-radius: 23px;
|
|
|
|
font-weight: 700;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
font-size: @font-size-large;
|
|
|
|
font-family: @font-family-sans-serif;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-09-23 04:37:02 -04:00
|
|
|
|
|
|
|
.btn-transparent {
|
|
|
|
box-shadow: none !important;
|
|
|
|
background: none !important;
|
|
|
|
border-radius: 0 !important;
|
|
|
|
color: inherit !important;
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
box-shadow: none !important;
|
|
|
|
background: none !important;
|
|
|
|
color: inherit !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-item-button,
|
|
|
|
#new-project-button-projects-table + .dropdown-menu [role='menuitem'] {
|
|
|
|
padding: 12px 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-item-button {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
border: none;
|
|
|
|
box-shadow: none;
|
|
|
|
background: inherit;
|
|
|
|
color: @ol-blue-gray-5;
|
|
|
|
text-align: left;
|
|
|
|
|
|
|
|
.menu-item-button-text {
|
|
|
|
padding-left: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-item-button-icon {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
}
|
|
|
|
}
|
2022-09-26 04:57:09 -04:00
|
|
|
|
|
|
|
.project-list-load-more {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.project-list-load-more-button {
|
|
|
|
margin-bottom: @margin-sm;
|
|
|
|
}
|
2022-10-03 09:36:18 -04:00
|
|
|
|
|
|
|
.tag-dropdown-button {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
font-weight: normal;
|
|
|
|
font-size: @font-size-base;
|
|
|
|
text-align: left;
|
|
|
|
color: @gray-dark;
|
|
|
|
background-color: transparent;
|
|
|
|
border-radius: unset;
|
|
|
|
border: none;
|
|
|
|
border-bottom: solid 1px transparent;
|
|
|
|
padding: 3px 20px;
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
color: @gray-dark;
|
|
|
|
background-color: transparent;
|
|
|
|
text-decoration: none;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: @white;
|
|
|
|
background-color: @ol-green;
|
|
|
|
}
|
|
|
|
}
|
2022-10-11 10:44:36 -04:00
|
|
|
|
|
|
|
.project-list-sidebar-survey-wrapper {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
2022-10-24 09:55:56 -04:00
|
|
|
width: 15%;
|
2022-10-21 07:32:50 -04:00
|
|
|
|
|
|
|
.project-list-sidebar-survey-dismiss {
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: @screen-xs-max) {
|
2022-10-24 09:55:56 -04:00
|
|
|
line-height: @mobile-action-element-height;
|
2022-10-21 07:32:50 -04:00
|
|
|
position: static;
|
|
|
|
display: block;
|
|
|
|
margin-top: @margin-sm;
|
2022-10-24 09:55:56 -04:00
|
|
|
width: initial;
|
2022-10-21 07:32:50 -04:00
|
|
|
|
|
|
|
.project-list-sidebar-survey {
|
|
|
|
font-size: unset;
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.project-list-sidebar-survey-link {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
min-width: @mobile-action-element-width;
|
|
|
|
min-height: @mobile-action-element-height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.project-list-sidebar-survey-dismiss {
|
|
|
|
width: @mobile-action-element-width;
|
|
|
|
height: @mobile-action-element-height;
|
|
|
|
border: 0;
|
|
|
|
}
|
2022-10-11 10:44:36 -04:00
|
|
|
}
|
|
|
|
}
|