2019-01-13 10:54:55 -05:00
|
|
|
|
|
|
|
.book-contents .entity-list-item {
|
|
|
|
.icon {
|
2019-03-30 10:27:00 -04:00
|
|
|
width: 4px;
|
|
|
|
border-radius: 1px;
|
2019-03-17 11:07:03 -04:00
|
|
|
justify-self: stretch;
|
|
|
|
align-self: stretch;
|
|
|
|
height: auto;
|
2020-04-05 08:07:19 -04:00
|
|
|
margin-inline-end: $-l;
|
2015-09-03 11:51:10 -04:00
|
|
|
}
|
2019-03-30 10:27:00 -04:00
|
|
|
.icon:after {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
.icon svg {
|
|
|
|
display: none;
|
|
|
|
}
|
2019-01-13 10:54:55 -05:00
|
|
|
p {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
.inner-page {
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
2015-09-03 11:51:10 -04:00
|
|
|
}
|
2019-03-17 11:07:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.entity-list-item + .chapter-expansion {
|
|
|
|
display: flex;
|
|
|
|
padding: 0 $-m $-m $-m;
|
|
|
|
align-items: center;
|
|
|
|
border: 0;
|
|
|
|
width: 100%;
|
|
|
|
position: relative;
|
|
|
|
> .icon {
|
2019-03-30 10:27:00 -04:00
|
|
|
width: 4px;
|
2019-03-17 11:07:03 -04:00
|
|
|
height: auto;
|
2019-03-30 10:27:00 -04:00
|
|
|
border-radius: 0 0 1px 1px;
|
2019-03-17 11:07:03 -04:00
|
|
|
align-self: stretch;
|
|
|
|
flex-shrink: 0;
|
|
|
|
&:before {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 1px;
|
|
|
|
background-color: currentColor;
|
|
|
|
content: '';
|
2019-03-30 10:27:00 -04:00
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
&:after {
|
|
|
|
opacity: 0.5;
|
2019-03-17 11:07:03 -04:00
|
|
|
}
|
|
|
|
}
|
2019-03-30 10:27:00 -04:00
|
|
|
.icon svg {
|
|
|
|
display: none;
|
|
|
|
}
|
2019-03-17 11:07:03 -04:00
|
|
|
> .content {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
.chapter-expansion-toggle {
|
|
|
|
border-radius: 0 4px 4px 0;
|
|
|
|
padding: $-xs $-m;
|
2019-08-25 12:21:25 -04:00
|
|
|
width: 100%;
|
2020-04-05 08:07:19 -04:00
|
|
|
text-align: start;
|
2019-03-17 11:07:03 -04:00
|
|
|
}
|
|
|
|
.chapter-expansion-toggle:hover {
|
|
|
|
background-color: rgba(0, 0, 0, 0.06);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.entity-list-item.has-children {
|
|
|
|
padding-bottom: 0;
|
|
|
|
> .icon {
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.inset-list {
|
|
|
|
display: none;
|
|
|
|
.entity-list-item-name {
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
.entity-list-item-children {
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
2018-03-18 08:23:48 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-18 09:49:36 -04:00
|
|
|
.sidebar-page-nav {
|
2019-02-16 10:39:11 -05:00
|
|
|
$nav-indent: $-m;
|
2015-09-03 11:51:10 -04:00
|
|
|
list-style: none;
|
2020-04-05 08:07:19 -04:00
|
|
|
@include margin($-s, 0, $-m, $-xs);
|
2019-02-16 10:39:11 -05:00
|
|
|
position: relative;
|
|
|
|
&:after {
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
2020-04-05 08:07:19 -04:00
|
|
|
@include rtl {
|
|
|
|
left: auto;
|
|
|
|
right: 0;
|
|
|
|
}
|
2019-02-16 10:39:11 -05:00
|
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
|
|
width: 2px;
|
|
|
|
top: 5px;
|
|
|
|
bottom: 5px;
|
|
|
|
z-index: 0;
|
|
|
|
}
|
2015-09-03 11:51:10 -04:00
|
|
|
li {
|
|
|
|
margin-bottom: 4px;
|
2016-09-18 09:49:36 -04:00
|
|
|
font-size: 0.95em;
|
2019-02-16 10:39:11 -05:00
|
|
|
position: relative;
|
2015-09-03 11:51:10 -04:00
|
|
|
}
|
2016-09-18 09:49:36 -04:00
|
|
|
.h1 {
|
2020-04-05 08:07:19 -04:00
|
|
|
padding-inline-start: $nav-indent;
|
2015-09-03 11:51:10 -04:00
|
|
|
}
|
2016-09-18 09:49:36 -04:00
|
|
|
.h2 {
|
2020-04-05 08:07:19 -04:00
|
|
|
padding-inline-start: $nav-indent * 1.5;
|
2016-09-18 09:49:36 -04:00
|
|
|
}
|
|
|
|
.h3 {
|
2020-04-05 08:07:19 -04:00
|
|
|
padding-inline-start: $nav-indent * 2;
|
2015-09-03 11:51:10 -04:00
|
|
|
}
|
2016-09-18 09:49:36 -04:00
|
|
|
.h4 {
|
2020-04-05 08:07:19 -04:00
|
|
|
padding-inline-start: $nav-indent * 2.5;
|
2015-09-03 11:51:10 -04:00
|
|
|
}
|
2016-09-18 09:49:36 -04:00
|
|
|
.h5 {
|
2020-04-05 08:07:19 -04:00
|
|
|
padding-inline-start: $nav-indent*3;
|
2015-09-03 11:51:10 -04:00
|
|
|
}
|
2016-09-18 09:49:36 -04:00
|
|
|
.h6 {
|
2020-04-05 08:07:19 -04:00
|
|
|
padding-inline-start: $nav-indent*3.5;
|
2015-09-03 11:51:10 -04:00
|
|
|
}
|
2017-11-01 15:44:06 -04:00
|
|
|
.current-heading {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2019-02-16 10:39:11 -05:00
|
|
|
li:not(.current-heading) .sidebar-page-nav-bullet {
|
|
|
|
background-color: #BBB !important;
|
|
|
|
}
|
|
|
|
.sidebar-page-nav-bullet {
|
|
|
|
width: 6px;
|
|
|
|
height: 6px;
|
|
|
|
position: absolute;
|
|
|
|
left: -2px;
|
|
|
|
top: 30%;
|
|
|
|
border-radius: 50%;
|
|
|
|
box-shadow: 0 0 0 6px #F2F2F2;
|
|
|
|
z-index: 1;
|
2020-04-05 08:07:19 -04:00
|
|
|
@include rtl {
|
|
|
|
left: auto;
|
|
|
|
right: -2px;
|
|
|
|
}
|
2019-02-16 10:39:11 -05:00
|
|
|
}
|
2015-09-03 11:51:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Sidebar list
|
2019-03-30 11:15:01 -04:00
|
|
|
.book-tree .sidebar-page-list {
|
2015-09-03 11:51:10 -04:00
|
|
|
list-style: none;
|
2020-04-05 08:07:19 -04:00
|
|
|
@include margin($-xs, -$-s, 0, -$-s);
|
|
|
|
padding-inline-start: 0;
|
|
|
|
padding-inline-end: 0;
|
2018-11-11 08:11:36 -05:00
|
|
|
position: relative;
|
2019-03-30 11:15:01 -04:00
|
|
|
|
|
|
|
&:after, .sub-menu:after {
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
left: $-m;
|
|
|
|
top: 1rem;
|
|
|
|
bottom: 1rem;
|
2020-04-05 08:07:19 -04:00
|
|
|
border-inline-start: 4px solid rgba(0, 0, 0, 0.1);
|
2019-03-30 11:15:01 -04:00
|
|
|
z-index: 0;
|
2020-04-05 08:07:19 -04:00
|
|
|
@include rtl {
|
|
|
|
left: auto;
|
|
|
|
right: $-m;
|
|
|
|
}
|
2019-03-30 11:15:01 -04:00
|
|
|
}
|
|
|
|
|
2015-09-03 11:51:10 -04:00
|
|
|
ul {
|
|
|
|
list-style: none;
|
2020-04-05 08:07:19 -04:00
|
|
|
padding-inline-start: 1rem;
|
|
|
|
padding-inline-end: 0;
|
2018-11-11 08:11:36 -05:00
|
|
|
}
|
2019-05-25 11:52:17 -04:00
|
|
|
|
2019-03-30 11:15:01 -04:00
|
|
|
.entity-list-item {
|
|
|
|
padding-top: $-xxs;
|
|
|
|
padding-bottom: $-xxs;
|
2019-05-25 11:52:17 -04:00
|
|
|
background-clip: content-box;
|
|
|
|
border-radius: 0 3px 3px 0;
|
2019-03-30 11:15:01 -04:00
|
|
|
.content {
|
|
|
|
padding-top: $-xs;
|
|
|
|
padding-bottom: $-xs;
|
2019-03-30 13:07:01 -04:00
|
|
|
max-width: calc(100% - 20px);
|
2019-03-30 11:15:01 -04:00
|
|
|
}
|
|
|
|
}
|
2019-05-25 11:52:17 -04:00
|
|
|
.entity-list-item.selected {
|
|
|
|
background-color: rgba(0, 0, 0, 0.08);
|
|
|
|
}
|
2019-03-30 11:15:01 -04:00
|
|
|
.entity-list-item.no-hover {
|
|
|
|
margin-top: -$-xs;
|
2020-04-05 08:07:19 -04:00
|
|
|
padding-inline-end: 0;
|
2018-11-11 08:11:36 -05:00
|
|
|
}
|
|
|
|
.entity-list-item-name {
|
|
|
|
font-size: 1em;
|
2015-09-03 11:51:10 -04:00
|
|
|
margin: 0;
|
|
|
|
}
|
2018-11-11 08:11:36 -05:00
|
|
|
.chapter-child-menu {
|
2019-03-30 11:15:01 -04:00
|
|
|
font-size: .8rem;
|
2018-11-11 08:11:36 -05:00
|
|
|
margin-top: -.2rem;
|
2020-04-05 08:07:19 -04:00
|
|
|
margin-inline-start: -1rem;
|
2018-02-17 08:30:52 -05:00
|
|
|
}
|
2017-08-06 16:08:03 -04:00
|
|
|
[chapter-toggle] {
|
2020-04-05 08:07:19 -04:00
|
|
|
padding-inline-start: .7rem;
|
2018-11-11 08:11:36 -05:00
|
|
|
padding-bottom: .2rem;
|
2015-11-29 13:06:55 -05:00
|
|
|
}
|
2019-03-30 11:15:01 -04:00
|
|
|
.entity-list-item .icon {
|
2019-01-31 15:37:12 -05:00
|
|
|
z-index: 2;
|
2019-03-30 11:15:01 -04:00
|
|
|
width: 4px;
|
|
|
|
height: auto;
|
|
|
|
align-self: stretch;
|
|
|
|
flex-shrink: 0;
|
|
|
|
border-radius: 1px;
|
2018-11-11 08:11:36 -05:00
|
|
|
opacity: 0.6;
|
2019-03-30 11:15:01 -04:00
|
|
|
}
|
2019-03-30 12:54:15 -04:00
|
|
|
.entity-list-item .icon:after {
|
2019-03-30 11:15:01 -04:00
|
|
|
opacity: 1;
|
|
|
|
}
|
2019-03-30 12:54:15 -04:00
|
|
|
.entity-list-item .icon svg {
|
2019-03-30 11:15:01 -04:00
|
|
|
display: none;
|
2015-09-03 11:51:10 -04:00
|
|
|
}
|
2018-11-11 08:11:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.chapter-child-menu {
|
|
|
|
ul.sub-menu {
|
2015-11-29 13:06:55 -05:00
|
|
|
display: none;
|
2020-04-05 08:07:19 -04:00
|
|
|
padding-inline-start: 0;
|
2018-11-11 08:11:36 -05:00
|
|
|
position: relative;
|
2015-11-29 13:06:55 -05:00
|
|
|
}
|
2018-09-22 11:36:35 -04:00
|
|
|
[chapter-toggle].open + .sub-menu {
|
2015-11-29 13:06:55 -05:00
|
|
|
display: block;
|
|
|
|
}
|
2015-09-03 11:51:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Sortable Lists
|
|
|
|
.sortable-page-list, .sortable-page-list ul {
|
|
|
|
list-style: none;
|
2015-09-06 09:35:53 -04:00
|
|
|
}
|
|
|
|
.sort-box {
|
|
|
|
margin-bottom: $-m;
|
2019-02-17 06:44:02 -05:00
|
|
|
padding: $-m $-xl;
|
2019-08-26 09:37:53 -04:00
|
|
|
position: relative;
|
|
|
|
&::before {
|
2019-09-07 08:08:55 -04:00
|
|
|
pointer-events: none;
|
2019-08-26 09:37:53 -04:00
|
|
|
content: '';
|
|
|
|
border-radius: 4px;
|
|
|
|
opacity: 0.5;
|
|
|
|
border: 2px solid var(--color-book);
|
|
|
|
display: block;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
position: absolute;
|
|
|
|
}
|
2019-02-17 06:44:02 -05:00
|
|
|
}
|
|
|
|
.sort-box-options {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
.sort-box-options .button {
|
2020-04-05 08:07:19 -04:00
|
|
|
margin-inline-start: 0;
|
2015-09-03 11:51:10 -04:00
|
|
|
}
|
|
|
|
.sortable-page-list {
|
2020-04-05 08:07:19 -04:00
|
|
|
margin-inline-start: 0;
|
2019-02-17 06:44:02 -05:00
|
|
|
padding: 0;
|
|
|
|
.entity-list-item > span:first-child {
|
|
|
|
align-self: flex-start;
|
|
|
|
}
|
|
|
|
.entity-list-item > div {
|
|
|
|
display: block;
|
|
|
|
flex: 1;
|
|
|
|
}
|
2015-09-06 09:35:53 -04:00
|
|
|
> ul {
|
2020-04-05 08:07:19 -04:00
|
|
|
margin-inline-start: 0;
|
2015-09-06 09:35:53 -04:00
|
|
|
}
|
2015-09-03 11:51:10 -04:00
|
|
|
ul {
|
2019-02-17 06:44:02 -05:00
|
|
|
margin-bottom: $-m;
|
2015-09-03 11:51:10 -04:00
|
|
|
margin-top: 0;
|
2020-04-05 08:07:19 -04:00
|
|
|
padding-inline-start: $-m;
|
2015-09-03 11:51:10 -04:00
|
|
|
}
|
|
|
|
li {
|
|
|
|
border: 1px solid #DDD;
|
|
|
|
margin-top: -1px;
|
|
|
|
min-height: 38px;
|
2019-08-26 09:37:53 -04:00
|
|
|
}
|
|
|
|
li.text-page, li.text-chapter {
|
2020-04-05 08:07:19 -04:00
|
|
|
border-inline-start: 2px solid currentColor;
|
2015-09-03 11:51:10 -04:00
|
|
|
}
|
|
|
|
li:first-child {
|
|
|
|
margin-top: $-xs;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.sortable-page-list li.placeholder {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.sortable-page-list li.placeholder:before {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.activity-list-item {
|
2019-01-13 10:54:55 -05:00
|
|
|
padding: $-s 0;
|
2018-10-16 13:49:16 -04:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: min-content 1fr;
|
|
|
|
grid-column-gap: $-m;
|
2015-09-03 11:51:10 -04:00
|
|
|
font-size: 0.9em;
|
2015-11-09 14:46:04 -05:00
|
|
|
}
|
2019-01-13 10:54:55 -05:00
|
|
|
.card .activity-list-item {
|
|
|
|
padding: $-s $-m;
|
|
|
|
}
|
2015-11-09 14:46:04 -05:00
|
|
|
|
2019-02-03 12:34:15 -05:00
|
|
|
.user-list-item {
|
|
|
|
display: inline-grid;
|
|
|
|
padding: $-s;
|
|
|
|
grid-template-columns: min-content 1fr;
|
|
|
|
grid-column-gap: $-m;
|
|
|
|
font-size: 0.9em;
|
|
|
|
align-items: center;
|
|
|
|
> div:first-child {
|
|
|
|
line-height: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-09 14:46:04 -05:00
|
|
|
ul.pagination {
|
|
|
|
display: inline-block;
|
|
|
|
list-style: none;
|
|
|
|
margin: $-m 0;
|
2020-04-05 08:07:19 -04:00
|
|
|
padding-inline-start: 1px;
|
2015-11-09 14:46:04 -05:00
|
|
|
li {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
li:first-child {
|
|
|
|
a, span {
|
|
|
|
border-radius: 3px 0 0 3px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
li:last-child {
|
|
|
|
a, span {
|
|
|
|
border-radius: 0 3px 3px 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
a, span {
|
|
|
|
display: block;
|
|
|
|
padding: $-xxs $-s;
|
|
|
|
border: 1px solid #CCC;
|
2020-04-05 08:07:19 -04:00
|
|
|
margin-inline-start: -1px;
|
2015-11-09 14:46:04 -05:00
|
|
|
user-select: none;
|
|
|
|
&.disabled {
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
li.active span {
|
2018-07-29 10:44:10 -04:00
|
|
|
color: #FFF;
|
2015-11-09 14:46:04 -05:00
|
|
|
}
|
2016-02-20 07:37:06 -05:00
|
|
|
}
|
|
|
|
|
2016-05-22 05:44:31 -04:00
|
|
|
.compact ul.pagination {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2018-12-01 15:28:17 -05:00
|
|
|
.entity-list, .icon-list {
|
|
|
|
margin: 0 (-$-m);
|
2016-09-18 09:49:36 -04:00
|
|
|
h4 {
|
2016-02-20 07:37:06 -05:00
|
|
|
margin: 0;
|
|
|
|
}
|
2016-02-20 13:51:01 -05:00
|
|
|
hr {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.text-small.text-muted {
|
|
|
|
color: #AAA;
|
|
|
|
font-size: 0.75em;
|
|
|
|
margin-top: $-xs;
|
|
|
|
}
|
2016-12-03 13:35:40 -05:00
|
|
|
.text-muted p.text-muted {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2016-03-13 08:04:08 -04:00
|
|
|
.page.draft .text-page {
|
2019-08-26 09:37:53 -04:00
|
|
|
color: var(--color-page-draft);
|
|
|
|
fill: var(--color-page-draft);
|
2016-03-13 08:04:08 -04:00
|
|
|
}
|
2018-12-09 11:51:31 -05:00
|
|
|
> .dropdown-container {
|
|
|
|
display: block;
|
|
|
|
}
|
2016-02-20 13:51:01 -05:00
|
|
|
}
|
2016-09-18 09:49:36 -04:00
|
|
|
|
2019-04-13 07:46:15 -04:00
|
|
|
.icon-list hr {
|
|
|
|
margin: $-s $-m;
|
|
|
|
max-width: 140px;
|
|
|
|
opacity: 0.25;
|
|
|
|
height: 1.1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon-list hr + hr, .icon-list hr:first-child, .icon-list hr:last-child {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2018-12-01 15:28:17 -05:00
|
|
|
.entity-list-item, .icon-list-item {
|
2018-10-16 13:49:16 -04:00
|
|
|
padding: $-s $-m;
|
2019-02-16 10:05:18 -05:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
|
|
|
width: 100%;
|
|
|
|
position: relative;
|
2019-04-06 12:31:59 -04:00
|
|
|
word-break: break-word;
|
2018-10-16 13:49:16 -04:00
|
|
|
h4 a {
|
|
|
|
color: #666;
|
|
|
|
}
|
2019-02-16 10:05:18 -05:00
|
|
|
> span:first-child {
|
2020-04-05 08:07:19 -04:00
|
|
|
margin-inline-end: $-m;
|
2019-02-16 10:05:18 -05:00
|
|
|
flex-basis: 1.88em;
|
|
|
|
flex: none;
|
|
|
|
}
|
|
|
|
> span:last-child {
|
|
|
|
flex: 1;
|
2020-04-05 08:07:19 -04:00
|
|
|
text-align: start;
|
2019-02-16 10:05:18 -05:00
|
|
|
}
|
2019-02-17 06:44:02 -05:00
|
|
|
&:not(.no-hover) {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
&:not(.no-hover):hover {
|
2018-12-01 15:28:17 -05:00
|
|
|
text-decoration: none;
|
2019-03-30 10:27:00 -04:00
|
|
|
background-color: rgba(0, 0, 0, 0.1);
|
2018-12-01 15:28:17 -05:00
|
|
|
border-radius: 4px;
|
|
|
|
}
|
2019-03-30 10:27:00 -04:00
|
|
|
&.outline-hover {
|
|
|
|
border: 1px solid transparent;
|
|
|
|
}
|
|
|
|
&.outline-hover:hover {
|
|
|
|
background-color: transparent;
|
|
|
|
border-color: rgba(0, 0, 0, 0.1);
|
|
|
|
}
|
2019-08-24 13:26:28 -04:00
|
|
|
&:focus {
|
|
|
|
background-color: #eee;
|
|
|
|
outline: 1px dotted #666;
|
|
|
|
outline-offset: -2px;
|
|
|
|
}
|
2018-10-16 13:49:16 -04:00
|
|
|
}
|
2018-12-01 15:28:17 -05:00
|
|
|
|
2019-03-30 12:54:15 -04:00
|
|
|
.entity-list-item-path-sep {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
|
|
|
svg {
|
2020-04-05 08:07:19 -04:00
|
|
|
margin-inline-end: 0;
|
2019-03-30 12:54:15 -04:00
|
|
|
}
|
|
|
|
}
|
2019-02-17 06:44:02 -05:00
|
|
|
|
|
|
|
.card .entity-list-item:not(.no-hover):hover {
|
2018-10-16 13:49:16 -04:00
|
|
|
background-color: #F2F2F2;
|
2017-08-20 08:57:25 -04:00
|
|
|
}
|
2019-01-13 10:54:55 -05:00
|
|
|
.card .entity-list-item .entity-list-item:hover {
|
|
|
|
background-color: #EEEEEE;
|
|
|
|
}
|
2017-08-20 08:57:25 -04:00
|
|
|
|
2019-02-16 12:13:01 -05:00
|
|
|
.entity-list-item-children {
|
|
|
|
padding: $-m;
|
|
|
|
> div {
|
|
|
|
overflow: hidden;
|
|
|
|
padding: $-xs 0;
|
|
|
|
margin-top: -$-xs;
|
|
|
|
}
|
|
|
|
.entity-chip {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
height: 2.5em;
|
|
|
|
overflow: hidden;
|
2020-04-05 08:07:19 -04:00
|
|
|
text-align: start;
|
2019-02-16 12:13:01 -05:00
|
|
|
display: block;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-01 11:29:57 -05:00
|
|
|
.entity-list-item-image {
|
2019-02-16 10:05:18 -05:00
|
|
|
align-self: stretch;
|
2018-12-01 11:29:57 -05:00
|
|
|
width: 140px;
|
2019-02-16 12:13:01 -05:00
|
|
|
flex: none;
|
2018-12-01 11:29:57 -05:00
|
|
|
background-size: cover;
|
|
|
|
background-position: 50% 50%;
|
|
|
|
border-radius: 3px;
|
2019-02-16 10:05:18 -05:00
|
|
|
position: relative;
|
2020-04-05 08:07:19 -04:00
|
|
|
margin-inline-end: $-l;
|
2019-02-16 12:13:01 -05:00
|
|
|
|
2019-05-05 10:54:22 -04:00
|
|
|
&.entity-list-item-image-wide {
|
|
|
|
width: 220px;
|
|
|
|
}
|
|
|
|
|
2019-02-16 12:13:01 -05:00
|
|
|
.svg-icon {
|
|
|
|
color: #FFF;
|
|
|
|
fill: #FFF;
|
2019-03-17 11:07:03 -04:00
|
|
|
font-size: 1.66rem;
|
2020-04-05 08:07:19 -04:00
|
|
|
margin-inline-end: 0;
|
2019-02-16 12:13:01 -05:00
|
|
|
position: absolute;
|
|
|
|
bottom: $-xs;
|
|
|
|
left: $-xs;
|
|
|
|
}
|
|
|
|
|
2018-12-08 18:34:06 -05:00
|
|
|
@include smaller-than($m) {
|
|
|
|
width: 80px;
|
|
|
|
}
|
2018-12-01 11:29:57 -05:00
|
|
|
}
|
|
|
|
|
2019-03-17 11:07:03 -04:00
|
|
|
.chapter > .entity-list-item-image {
|
|
|
|
width: 60px;
|
|
|
|
}
|
|
|
|
|
2016-02-20 13:51:01 -05:00
|
|
|
.entity-list.compact {
|
2018-10-16 13:49:16 -04:00
|
|
|
font-size: 0.6 * $fs-m;
|
2016-09-18 09:49:36 -04:00
|
|
|
h4, a {
|
2016-02-20 13:51:01 -05:00
|
|
|
line-height: 1.2;
|
|
|
|
}
|
2017-08-06 16:08:03 -04:00
|
|
|
.entity-item-snippet {
|
2016-02-20 07:37:06 -05:00
|
|
|
display: none;
|
2017-08-06 16:08:03 -04:00
|
|
|
}
|
2017-08-26 08:24:55 -04:00
|
|
|
.entity-list-item p {
|
2016-02-20 07:37:06 -05:00
|
|
|
font-size: $fs-m * 0.8;
|
|
|
|
padding-top: $-xs;
|
2017-08-26 08:24:55 -04:00
|
|
|
}
|
|
|
|
p {
|
2016-02-20 07:37:06 -05:00
|
|
|
margin: 0;
|
|
|
|
}
|
2016-07-03 05:12:12 -04:00
|
|
|
> p.empty-text {
|
|
|
|
display: block;
|
|
|
|
font-size: $fs-m;
|
|
|
|
}
|
2016-02-20 07:37:06 -05:00
|
|
|
hr {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2018-10-16 13:49:16 -04:00
|
|
|
@include smaller-than($m) {
|
|
|
|
h4 {
|
|
|
|
font-size: 1.666em;
|
|
|
|
}
|
|
|
|
}
|
2016-02-20 13:51:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-container {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2019-05-05 09:43:26 -04:00
|
|
|
.dropdown-menu {
|
2016-02-20 13:51:01 -05:00
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 999;
|
|
|
|
top: 0;
|
|
|
|
list-style: none;
|
|
|
|
right: 0;
|
|
|
|
margin: $-m 0;
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
|
|
|
|
border-radius: 1px;
|
|
|
|
border: 1px solid #EEE;
|
|
|
|
min-width: 180px;
|
|
|
|
padding: $-xs 0;
|
|
|
|
color: #555;
|
2018-02-17 08:30:52 -05:00
|
|
|
fill: #555;
|
2020-04-05 08:07:19 -04:00
|
|
|
text-align: start !important;
|
2016-02-20 13:51:01 -05:00
|
|
|
&.wide {
|
|
|
|
min-width: 220px;
|
|
|
|
}
|
|
|
|
.text-muted {
|
|
|
|
color: #999;
|
2018-02-17 08:30:52 -05:00
|
|
|
fill: #999;
|
2016-02-20 13:51:01 -05:00
|
|
|
}
|
2018-12-07 13:33:32 -05:00
|
|
|
li.active a {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
2018-09-15 05:45:42 -04:00
|
|
|
a, button {
|
2016-02-20 13:51:01 -05:00
|
|
|
display: block;
|
|
|
|
padding: $-xs $-m;
|
|
|
|
color: #555;
|
2019-08-25 12:21:25 -04:00
|
|
|
fill: currentColor;
|
2018-09-22 17:29:03 -04:00
|
|
|
white-space: nowrap;
|
2019-08-24 13:26:28 -04:00
|
|
|
&:hover, &:focus {
|
2016-02-20 13:51:01 -05:00
|
|
|
text-decoration: none;
|
2019-08-25 12:21:25 -04:00
|
|
|
background-color: var(--color-primary-light);
|
|
|
|
color: var(--color-primary);
|
2016-02-20 13:51:01 -05:00
|
|
|
}
|
2019-08-24 13:26:28 -04:00
|
|
|
&:focus {
|
2019-08-25 12:21:25 -04:00
|
|
|
outline: 1px solid var(--color-primary);
|
2019-08-24 13:26:28 -04:00
|
|
|
outline-offset: -2px;
|
|
|
|
}
|
2018-02-17 14:49:00 -05:00
|
|
|
svg {
|
2020-04-05 08:07:19 -04:00
|
|
|
margin-inline-end: $-s;
|
2016-07-10 07:12:52 -04:00
|
|
|
display: inline-block;
|
|
|
|
width: 16px;
|
2016-02-20 13:51:01 -05:00
|
|
|
}
|
|
|
|
}
|
2018-09-15 05:45:42 -04:00
|
|
|
button {
|
|
|
|
width: 100%;
|
2020-04-05 08:07:19 -04:00
|
|
|
text-align: start;
|
2018-09-15 05:45:42 -04:00
|
|
|
}
|
2016-02-20 13:51:01 -05:00
|
|
|
li.border-bottom {
|
|
|
|
border-bottom: 1px solid #DDD;
|
|
|
|
}
|
|
|
|
}
|
2017-12-06 11:34:26 -05:00
|
|
|
|
|
|
|
// Books grid view
|
|
|
|
.featured-image-container {
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
2019-03-16 12:00:41 -04:00
|
|
|
min-height: 140px;
|
|
|
|
background-size: cover;
|
|
|
|
background-position: 50% 50%;
|
|
|
|
transition: opacity ease-in-out 240ms;
|
2018-02-11 06:36:51 -05:00
|
|
|
a {
|
|
|
|
display: block;
|
|
|
|
}
|
2017-12-06 11:34:26 -05:00
|
|
|
img {
|
|
|
|
display: block;
|
2018-02-11 06:36:51 -05:00
|
|
|
width: 100%;
|
2017-12-06 11:34:26 -05:00
|
|
|
max-width: 100%;
|
|
|
|
height: auto;
|
|
|
|
}
|
2018-12-09 09:04:28 -05:00
|
|
|
}
|
2019-03-16 12:00:41 -04:00
|
|
|
.featured-image-container-wrap {
|
|
|
|
position: relative;
|
|
|
|
.svg-icon {
|
|
|
|
color: #FFF;
|
|
|
|
fill: #FFF;
|
|
|
|
font-size: 2rem;
|
2020-04-05 08:07:19 -04:00
|
|
|
margin-inline-end: 0;
|
2019-03-16 12:00:41 -04:00
|
|
|
position: absolute;
|
|
|
|
bottom: 10px;
|
|
|
|
left: 6px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.grid-card:hover .featured-image-container {
|
2018-12-09 09:04:28 -05:00
|
|
|
opacity: .5;
|
2017-12-06 11:34:26 -05:00
|
|
|
}
|
|
|
|
|
2018-12-01 15:28:17 -05:00
|
|
|
.action-link-list {
|
|
|
|
//padding: $-s 0;
|
|
|
|
}
|
|
|
|
.action-link {
|
|
|
|
background: transparent;
|
|
|
|
border: none;
|
|
|
|
color: currentColor;
|
|
|
|
padding: $-m 0;
|
|
|
|
}
|
|
|
|
|
2019-02-02 10:49:57 -05:00
|
|
|
.active-link-list {
|
|
|
|
a {
|
|
|
|
display: inline-block;
|
|
|
|
padding: $-s;
|
|
|
|
}
|
|
|
|
a:not(.active) {
|
|
|
|
color: #444;
|
|
|
|
fill: #444;
|
|
|
|
}
|
|
|
|
a:hover {
|
|
|
|
background-color: rgba(0, 0, 0, 0.05);
|
|
|
|
border-radius: 3px;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|