2022-03-18 21:10:34 +08:00
|
|
|
// scss-lint:disable SelectorDepth
|
|
|
|
// scss-lint:disable NestingDepth
|
|
|
|
|
|
|
|
.repository-show {
|
|
|
|
.repository-toolbar {
|
|
|
|
background-color: $color-white;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
2023-05-25 19:12:27 +08:00
|
|
|
height: 3.5rem;
|
2023-05-04 03:25:13 +08:00
|
|
|
justify-content: space-between;
|
2023-05-25 19:12:27 +08:00
|
|
|
padding-bottom: 1rem;
|
2023-05-22 21:47:59 +08:00
|
|
|
z-index: 99;
|
|
|
|
|
2023-05-04 03:25:13 +08:00
|
|
|
|
|
|
|
.view-switch,
|
|
|
|
.filter-container {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.view-switch {
|
|
|
|
margin-left: auto;
|
|
|
|
|
2023-05-11 14:32:52 +08:00
|
|
|
.view-switch-button {
|
2023-05-11 18:40:56 +08:00
|
|
|
outline: 1px solid $color-alto;
|
2023-05-11 14:32:52 +08:00
|
|
|
}
|
|
|
|
|
2023-05-04 03:25:13 +08:00
|
|
|
.caret {
|
|
|
|
margin: 8px 0 8px 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.open {
|
|
|
|
.caret {
|
|
|
|
transform: rotateX(180deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu {
|
|
|
|
@include font-button;
|
|
|
|
min-width: 100%;
|
2023-05-30 17:15:06 +08:00
|
|
|
padding: 0;
|
2023-05-04 03:25:13 +08:00
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-03-18 21:10:34 +08:00
|
|
|
|
|
|
|
.toolbar-left-block {
|
2023-06-20 21:53:33 +08:00
|
|
|
align-items: center;
|
2022-03-18 21:10:34 +08:00
|
|
|
display: flex;
|
2023-06-20 21:53:33 +08:00
|
|
|
gap: .25rem;
|
2022-03-18 21:10:34 +08:00
|
|
|
|
|
|
|
>* {
|
|
|
|
margin-left: .25em;
|
|
|
|
|
|
|
|
&:nth-child(1) {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
}
|
2022-08-12 20:55:14 +08:00
|
|
|
|
|
|
|
.view-only-label {
|
|
|
|
align-items: center;
|
|
|
|
margin: auto 0;
|
|
|
|
}
|
2022-03-18 21:10:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar-right-block {
|
|
|
|
display: flex;
|
|
|
|
flex-shrink: 0;
|
2023-06-19 21:45:22 +08:00
|
|
|
gap: .5rem;
|
2022-08-09 16:23:40 +08:00
|
|
|
|
|
|
|
.active-reminders-filter {
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.sci-checkbox-container {
|
|
|
|
margin-right: .5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active-reminders-short-label {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media(max-width:770px) {
|
|
|
|
.active-reminders-short-label {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active-reminders-label {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-03-18 21:10:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.repository-provisioning-notice {
|
|
|
|
color: $brand-info;
|
|
|
|
}
|
|
|
|
|
|
|
|
.archived-label {
|
|
|
|
color: $color-silver-chalice;
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 400px;
|
|
|
|
padding: 0 1em;
|
|
|
|
|
|
|
|
table {
|
|
|
|
tr {
|
|
|
|
td {
|
|
|
|
padding: 0 .5em;
|
|
|
|
|
|
|
|
&:nth-child(1) {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:nth-child(2) {
|
|
|
|
color: $color-black;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-31 23:25:24 +08:00
|
|
|
@media (max-width: 1000px) {
|
2022-03-18 21:10:34 +08:00
|
|
|
.repository-toolbar {
|
2022-04-04 18:02:59 +08:00
|
|
|
|
2022-04-28 20:32:34 +08:00
|
|
|
.btn:not(.prevent-shrink) {
|
2023-06-19 18:46:05 +08:00
|
|
|
height: 40px;
|
|
|
|
padding: .5rem;
|
|
|
|
width: 40px;
|
2022-04-28 20:32:34 +08:00
|
|
|
|
|
|
|
.button-text {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-03-18 21:10:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.auto-shrink-button {
|
|
|
|
.fas {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|