2020-06-03 19:42:09 +08:00
|
|
|
.repositories-index {
|
2023-05-03 04:58:11 +08:00
|
|
|
|
2023-05-09 20:53:50 +08:00
|
|
|
.view-switch {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
2023-05-03 04:58:11 +08:00
|
|
|
.toolbar-wrapper {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
2020-06-03 19:42:09 +08:00
|
|
|
&.active {
|
|
|
|
[data-view-mode="archived"] {
|
2021-11-17 21:53:04 +08:00
|
|
|
display: none !important;
|
2020-06-03 19:42:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.archived {
|
|
|
|
[data-view-mode="active"] {
|
2021-11-17 21:53:04 +08:00
|
|
|
display: none !important;
|
2020-07-02 20:29:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&[data-readonly="true"] {
|
|
|
|
.main-actions {
|
|
|
|
.toolbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filter-container {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
2020-06-03 19:42:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-06 18:47:42 +08:00
|
|
|
|
|
|
|
#rename-repo-modal {
|
|
|
|
.modal-footer {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#create-repo-modal {
|
|
|
|
.modal-footer {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#new_repository {
|
|
|
|
.modal-footer {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
2022-01-05 22:02:09 +08:00
|
|
|
|
|
|
|
.main-actions {
|
2023-05-03 04:58:11 +08:00
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
.view-switch {
|
|
|
|
.caret {
|
|
|
|
margin: 8px 0 8px 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.open {
|
|
|
|
.caret {
|
|
|
|
transform: rotateX(180deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu {
|
|
|
|
@include font-button;
|
|
|
|
min-width: 100%;
|
|
|
|
|
|
|
|
.divider-label {
|
|
|
|
@include font-small;
|
|
|
|
color: $color-silver-chalice;
|
|
|
|
padding: .25em 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.divider {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
cursor: pointer;
|
|
|
|
padding: .5em 1em;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
.button-icon {
|
|
|
|
margin-right: .5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover:not(.divider-label) {
|
|
|
|
background: $color-concrete;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
height: 36px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
display: inline-block;
|
|
|
|
margin: -1em;
|
|
|
|
padding: .5em 1em;
|
|
|
|
width: calc(100% + 2em);
|
|
|
|
|
|
|
|
&.selected::after {
|
|
|
|
@include font-awesome;
|
|
|
|
content: $font-fas-check;
|
|
|
|
margin-left: auto;
|
|
|
|
position: absolute;
|
|
|
|
right: 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.cards-switch {
|
|
|
|
&.active::after {
|
|
|
|
@include font-awesome;
|
|
|
|
content: "\f00c";
|
|
|
|
position: absolute;
|
|
|
|
right: 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-05 22:02:09 +08:00
|
|
|
.dropdown-menu {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
}
|