2022-03-18 21:10:34 +08:00
|
|
|
// scss-lint:disable SelectorDepth
|
|
|
|
// scss-lint:disable NestingDepth
|
|
|
|
|
|
|
|
.repository-show {
|
|
|
|
.repository-toolbar {
|
|
|
|
align-items: center;
|
|
|
|
background-color: $color-white;
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
height: 6em;
|
|
|
|
left: var(--repository-sidebar-margin);
|
|
|
|
padding: 1em 2em 0;
|
|
|
|
position: fixed;
|
|
|
|
top: calc(4em + var(--navbar-height));
|
|
|
|
transition: .4s $timing-function-sharp;
|
|
|
|
width: calc(100% - var(--repository-sidebar-margin));
|
|
|
|
z-index: 99;
|
|
|
|
|
|
|
|
.toolbar-left-block {
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
|
|
|
|
>* {
|
|
|
|
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;
|
|
|
|
|
|
|
|
>* {
|
|
|
|
margin-right: .25em;
|
|
|
|
|
|
|
|
&:nth-last-child(1) {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|
2022-08-09 16:23:40 +08:00
|
|
|
|
|
|
|
.active-reminders-filter {
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
margin-right: 1em;
|
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-20 00:09:59 +08:00
|
|
|
@media (max-width: 1624px) {
|
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) {
|
2022-04-04 18:02:59 +08:00
|
|
|
padding: 7px;
|
|
|
|
width: 36px;
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|