2021-01-25 22:36:23 +08:00
|
|
|
// scss-lint:disable SelectorDepth SelectorFormat
|
|
|
|
// scss-lint:disable NestingDepth QualifyingElement
|
|
|
|
|
2020-06-01 16:24:03 +08:00
|
|
|
.content-pane {
|
2021-02-12 21:45:09 +08:00
|
|
|
--content-header-size: 9.5em;
|
2020-06-01 16:24:03 +08:00
|
|
|
background-color: $color-white;
|
|
|
|
margin: 20px 0;
|
|
|
|
padding: 25px 20px;
|
|
|
|
|
|
|
|
&.flexible {
|
|
|
|
margin: 0;
|
2021-01-05 16:11:05 +08:00
|
|
|
padding: 0 1em;
|
2020-06-01 16:24:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.content-header {
|
2021-01-25 22:36:23 +08:00
|
|
|
&.sticky-header {
|
|
|
|
background: $color-white;
|
|
|
|
position: sticky;
|
|
|
|
position: -webkit-sticky;
|
|
|
|
top: var(--navbar-height);
|
|
|
|
z-index: 10;
|
2020-06-01 16:24:03 +08:00
|
|
|
}
|
2020-06-03 19:42:09 +08:00
|
|
|
|
2021-01-25 22:36:23 +08:00
|
|
|
.title-row {
|
|
|
|
align-items: center;
|
2021-01-29 05:47:08 +08:00
|
|
|
background: $color-white;
|
2021-01-25 22:36:23 +08:00
|
|
|
border-bottom: $border-tertiary;
|
|
|
|
display: flex;
|
2021-02-11 06:33:16 +08:00
|
|
|
height: 4em;
|
2021-01-25 22:36:23 +08:00
|
|
|
margin-left: -2em;
|
2021-01-29 20:24:02 +08:00
|
|
|
padding: 0 2em;
|
2021-01-25 22:36:23 +08:00
|
|
|
width: calc(100% + 4em);
|
2020-06-03 19:42:09 +08:00
|
|
|
|
2021-01-25 22:36:23 +08:00
|
|
|
h1 {
|
2021-09-17 20:12:53 +08:00
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
2021-01-25 22:36:23 +08:00
|
|
|
flex-grow: 1;
|
|
|
|
margin: 0;
|
2020-12-17 01:32:07 +08:00
|
|
|
}
|
2021-01-25 22:36:23 +08:00
|
|
|
|
2021-03-09 05:01:26 +08:00
|
|
|
.name-readonly-placeholder {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2021-01-29 05:47:08 +08:00
|
|
|
.header-actions {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
2021-03-18 21:24:13 +08:00
|
|
|
flex-shrink: 0;
|
2021-01-29 05:47:08 +08:00
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
2021-01-25 22:36:23 +08:00
|
|
|
.view-switch {
|
|
|
|
margin-left: auto;
|
|
|
|
|
2020-06-03 19:42:09 +08:00
|
|
|
.caret {
|
2021-01-25 22:36:23 +08:00
|
|
|
margin: 8px 0 8px 8px;
|
2020-06-03 19:42:09 +08:00
|
|
|
}
|
|
|
|
|
2021-01-25 22:36:23 +08:00
|
|
|
&.open {
|
|
|
|
.caret {
|
|
|
|
transform: rotateX(180deg);
|
|
|
|
}
|
|
|
|
}
|
2020-06-03 19:42:09 +08:00
|
|
|
|
2021-01-25 22:36:23 +08:00
|
|
|
.dropdown-menu {
|
|
|
|
@include font-button;
|
|
|
|
min-width: auto;
|
2020-06-03 19:42:09 +08:00
|
|
|
|
2021-01-29 05:47:08 +08:00
|
|
|
.divider-label {
|
|
|
|
@include font-small;
|
|
|
|
color: $color-silver-chalice;
|
|
|
|
padding: .25em 1em;
|
|
|
|
}
|
|
|
|
|
2021-01-25 22:36:23 +08:00
|
|
|
li {
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 1em;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
.button-icon {
|
|
|
|
margin-right: .5em;
|
|
|
|
}
|
2020-06-03 19:42:09 +08:00
|
|
|
|
2021-01-25 22:36:23 +08:00
|
|
|
&:hover {
|
|
|
|
background: $color-concrete;
|
|
|
|
}
|
2020-06-03 19:42:09 +08:00
|
|
|
}
|
|
|
|
}
|
2021-01-29 05:47:08 +08:00
|
|
|
|
|
|
|
.cards-switch {
|
|
|
|
&.active::after {
|
|
|
|
@include font-awesome;
|
|
|
|
content: "\f00c";
|
|
|
|
position: absolute;
|
|
|
|
right: 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.sort-menu {
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
#sortMenu {
|
|
|
|
background: $color-white;
|
|
|
|
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: $color-concrete;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu {
|
|
|
|
@include font-button;
|
2021-08-16 16:51:46 +08:00
|
|
|
min-width: 200px;
|
2021-01-29 05:47:08 +08:00
|
|
|
padding: .5em 0;
|
|
|
|
|
|
|
|
a {
|
|
|
|
border-radius: unset;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: .5em 1em;
|
|
|
|
text-align: left;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: $color-concrete;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.selected::after {
|
|
|
|
@include font-awesome;
|
|
|
|
content: $font-fas-check;
|
|
|
|
margin-left: auto;
|
|
|
|
position: absolute;
|
|
|
|
right: 1em;
|
|
|
|
}
|
|
|
|
}
|
2021-08-16 16:51:46 +08:00
|
|
|
|
|
|
|
.fa-stack {
|
|
|
|
width: 2em;
|
|
|
|
}
|
2021-01-29 05:47:08 +08:00
|
|
|
}
|
2020-06-03 19:42:09 +08:00
|
|
|
}
|
|
|
|
}
|
2020-06-01 16:24:03 +08:00
|
|
|
|
2021-01-25 22:36:23 +08:00
|
|
|
.toolbar-row {
|
2021-01-29 05:47:08 +08:00
|
|
|
background: $color-white;
|
2021-01-25 22:36:23 +08:00
|
|
|
border-bottom: $border-tertiary;
|
|
|
|
margin-left: -2em;
|
|
|
|
padding: 1em 0;
|
|
|
|
padding-left: 2em;
|
|
|
|
width: calc(100% + 4em);
|
|
|
|
}
|
2020-06-01 16:24:03 +08:00
|
|
|
}
|
2021-02-12 21:45:09 +08:00
|
|
|
|
|
|
|
&[data-toolbar-visible="false"] {
|
|
|
|
--content-header-size: 5em;
|
|
|
|
|
|
|
|
.toolbar-row {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2020-06-01 16:24:03 +08:00
|
|
|
}
|