2015-11-03 13:15:33 +01:00
|
|
|
// General listings, like for pages, images or snippets
|
2015-09-25 15:17:39 +02:00
|
|
|
ul.listing {
|
2014-02-11 18:18:59 +01:00
|
|
|
@include unlist();
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.listing {
|
|
|
|
margin-bottom: 2em;
|
2018-09-22 22:48:21 +02:00
|
|
|
color: $color-text-base;
|
2015-09-25 15:17:39 +02:00
|
|
|
font-size: 0.95em;
|
2014-07-24 16:11:45 +02:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
ul {
|
2015-11-19 07:05:57 +01:00
|
|
|
list-style-type: none;
|
|
|
|
padding-left: 0;
|
|
|
|
// @include unlist();
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
> li {
|
|
|
|
padding: 1em 0;
|
|
|
|
border-bottom: 1px dashed $color-input-border;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
h3 {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 1em;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2014-04-02 17:48:26 +02:00
|
|
|
|
2016-02-12 18:29:59 +01:00
|
|
|
td,
|
2015-11-03 13:15:33 +01:00
|
|
|
th {
|
2015-09-25 15:17:39 +02:00
|
|
|
padding: 1.2em 1em;
|
2017-01-05 11:45:41 +01:00
|
|
|
|
|
|
|
&.no-padding {
|
|
|
|
padding: 0;
|
|
|
|
}
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
|
2016-02-12 18:29:59 +01:00
|
|
|
&.small td,
|
2015-11-03 13:15:33 +01:00
|
|
|
th {
|
2015-09-25 15:17:39 +02:00
|
|
|
padding: 0.6em 1em;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
thead {
|
|
|
|
font-size: 1.1em;
|
2014-07-24 16:11:45 +02:00
|
|
|
color: $color-text-base;
|
2015-09-25 15:17:39 +02:00
|
|
|
border-bottom: 1px solid $color-grey-4;
|
2014-04-02 17:48:26 +02:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
th {
|
2019-05-23 16:55:14 +02:00
|
|
|
font-size: 0.9em;
|
2015-09-25 15:17:39 +02:00
|
|
|
text-align: left;
|
|
|
|
font-weight: normal;
|
2014-01-24 18:34:26 +01:00
|
|
|
white-space: nowrap;
|
2015-09-25 15:17:39 +02:00
|
|
|
text-transform: uppercase;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
th.children {
|
|
|
|
border: 0;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
th a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
|
|
|
position: relative;
|
2014-01-24 18:34:26 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
&.icon:after {
|
|
|
|
opacity: 0.5;
|
|
|
|
right: 0;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.full-width td:first-child,
|
2015-09-25 15:17:39 +02:00
|
|
|
&.full-width th:first-child {
|
|
|
|
padding-left: 20px;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
&.full-width {
|
2015-11-03 13:15:33 +01:00
|
|
|
margin-bottom: -3em; // this negates the padding added to the bottom of .content
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
&.full-width th {
|
|
|
|
background-color: $color-thead-bg;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.table-headers {
|
2015-11-03 13:15:33 +01:00
|
|
|
border-bottom: 1px solid $color-grey-4;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
tbody {
|
|
|
|
border-bottom: 1px dashed $color-input-border;
|
2016-02-12 18:29:59 +01:00
|
|
|
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
tr {
|
|
|
|
border-top: 1px dashed $color-input-border;
|
2016-02-12 18:29:59 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
&:first-child {
|
|
|
|
border-top: 1px dashed $color-input-border;
|
2014-07-24 16:11:45 +02:00
|
|
|
}
|
2016-02-12 18:29:59 +01:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: #fcfcfc;
|
|
|
|
}
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2017-08-23 17:21:21 +02:00
|
|
|
|
|
|
|
tr.selected {
|
|
|
|
background-color: #c8eae9;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: #b5e3e2;
|
|
|
|
}
|
|
|
|
}
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2014-07-24 16:11:45 +02:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
&.full-width tbody {
|
|
|
|
border: 0;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2014-07-24 14:28:10 +02:00
|
|
|
&.chooser {
|
2015-09-25 15:17:39 +02:00
|
|
|
tbody .title a {
|
2014-07-24 14:28:10 +02:00
|
|
|
@include transition(none);
|
2015-11-03 13:15:33 +01:00
|
|
|
display: block;
|
2014-07-24 14:28:10 +02:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
tbody tr:hover {
|
|
|
|
background-color: $color-teal;
|
2015-11-03 13:15:33 +01:00
|
|
|
color: $color-white;
|
2014-07-24 14:28:10 +02:00
|
|
|
|
2016-02-12 18:29:59 +01:00
|
|
|
.title a,
|
2015-11-03 13:15:33 +01:00
|
|
|
.title a:hover {
|
|
|
|
color: $color-white;
|
2014-07-24 14:28:10 +02:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2016-10-13 23:41:48 +02:00
|
|
|
.parent a {
|
2019-05-23 16:55:14 +02:00
|
|
|
color: $color-white;
|
2016-10-13 23:41:48 +02:00
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.status-tag {
|
2015-11-03 13:15:33 +01:00
|
|
|
border-color: $color-white;
|
2014-07-24 14:28:10 +02:00
|
|
|
}
|
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
tbody tr.disabled td {
|
|
|
|
opacity: 0.25;
|
2014-07-24 14:28:10 +02:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
tbody tr.disabled td.children {
|
|
|
|
opacity: 1;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
tbody tr.disabled:hover {
|
|
|
|
background-color: inherit;
|
|
|
|
color: inherit;
|
2014-07-24 14:28:10 +02:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.title {
|
|
|
|
cursor: not-allowed;
|
2014-07-24 14:28:10 +02:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.status-tag {
|
|
|
|
border-color: inherit;
|
2014-07-24 14:28:10 +02:00
|
|
|
}
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
&.small tbody tr {
|
|
|
|
font-size: 1em;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
&.full-width .divider td {
|
|
|
|
padding-left: 20px;
|
2014-04-02 17:48:26 +02:00
|
|
|
}
|
|
|
|
|
2015-11-03 13:15:33 +01:00
|
|
|
// specific columns
|
2015-09-25 15:17:39 +02:00
|
|
|
.bulk {
|
|
|
|
padding-right: 0;
|
2014-01-24 18:34:26 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
label {
|
|
|
|
font-size: 1em;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
position: relative;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
label span {
|
2014-02-11 18:18:59 +01:00
|
|
|
@include visuallyhidden();
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
input {
|
|
|
|
margin-top: 3px;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
}
|
2014-03-07 16:41:17 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.title {
|
2019-07-11 13:40:27 +02:00
|
|
|
word-break: break-word;
|
|
|
|
|
2019-05-22 18:17:51 +02:00
|
|
|
.title-wrapper,
|
2015-09-25 15:17:39 +02:00
|
|
|
h2 {
|
|
|
|
text-transform: none;
|
|
|
|
margin: 0;
|
|
|
|
font-size: 1.15em;
|
|
|
|
font-weight: 600;
|
2018-09-26 22:53:48 +02:00
|
|
|
color: $color-text-base;
|
2015-09-25 15:17:39 +02:00
|
|
|
line-height: 1.5em;
|
2014-04-02 17:48:26 +02:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
2014-01-24 18:34:26 +01:00
|
|
|
|
2017-08-26 00:04:10 +02:00
|
|
|
// stylelint-disable max-nesting-depth
|
2015-09-25 15:17:39 +02:00
|
|
|
&:hover {
|
|
|
|
color: $color-link;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.actions {
|
2014-03-28 18:05:29 +01:00
|
|
|
@include clearfix();
|
2015-09-25 15:17:39 +02:00
|
|
|
margin-top: 0.8em;
|
|
|
|
text-transform: uppercase;
|
|
|
|
margin-bottom: -0.5em;
|
|
|
|
font-size: 0.8rem;
|
2014-01-24 18:34:26 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
2014-04-02 17:48:26 +02:00
|
|
|
}
|
2014-01-24 18:34:26 +01:00
|
|
|
|
2015-11-19 07:05:57 +01:00
|
|
|
> li {
|
2015-09-25 15:17:39 +02:00
|
|
|
float: left;
|
|
|
|
padding: 0 0.5em 0 0;
|
2015-11-03 13:15:33 +01:00
|
|
|
margin: 0 0 0.5em;
|
2015-11-19 07:05:57 +01:00
|
|
|
|
|
|
|
// line-height: 1em;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2014-03-07 16:41:17 +01:00
|
|
|
}
|
2014-01-24 18:34:26 +01:00
|
|
|
|
2020-06-10 11:51:09 +02:00
|
|
|
&--inline-actions .actions {
|
|
|
|
display: inline-block;
|
|
|
|
margin-top: 0;
|
|
|
|
vertical-align: inherit;
|
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.button-secondary {
|
|
|
|
border-color: $color-grey-3;
|
2015-11-03 13:15:33 +01:00
|
|
|
background: $color-white;
|
2014-03-07 16:41:17 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
&:hover {
|
|
|
|
border-color: $color-teal;
|
|
|
|
background-color: $color-teal;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
}
|
2016-02-12 18:29:59 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.button-secondary {
|
2015-11-03 13:15:33 +01:00
|
|
|
background-color: $color-white;
|
2014-11-07 17:09:42 +01:00
|
|
|
}
|
2014-01-24 18:34:26 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.moderate-actions form {
|
|
|
|
float: left;
|
|
|
|
margin: 0 1em 1em 0;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.children,
|
2015-09-25 15:17:39 +02:00
|
|
|
.no-children {
|
2015-11-03 13:15:33 +01:00
|
|
|
padding: 0;
|
2016-02-12 18:29:59 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
&:hover {
|
|
|
|
background-color: $color-grey-5;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2014-07-24 16:11:45 +02:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
a {
|
|
|
|
display: block;
|
|
|
|
padding: 2em 0;
|
2014-07-24 16:11:45 +02:00
|
|
|
}
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.children a {
|
|
|
|
color: $color-teal;
|
|
|
|
display: block;
|
2016-02-12 18:29:59 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
&:before {
|
|
|
|
font-size: 3rem;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
}
|
2014-07-24 16:11:45 +02:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.no-children a {
|
|
|
|
color: $color-grey-3;
|
|
|
|
display: block;
|
2016-02-12 18:29:59 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
&:before {
|
|
|
|
font-size: 1.5rem;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2019-06-17 19:11:04 +02:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2015-09-25 15:17:39 +02:00
|
|
|
color: $color-teal;
|
2014-03-28 18:05:29 +01:00
|
|
|
}
|
2019-06-17 19:11:04 +02:00
|
|
|
|
|
|
|
&:focus {
|
|
|
|
opacity: 1; //opacity is already changed on hover on the parent tr
|
|
|
|
}
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2014-07-24 16:11:45 +02:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
&.small .children a:before {
|
|
|
|
font-size: 30px;
|
2014-04-02 17:48:26 +02:00
|
|
|
}
|
2014-01-24 18:34:26 +01:00
|
|
|
|
2019-03-29 15:38:05 +01:00
|
|
|
th.ord {
|
|
|
|
text-align: center;
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2019-03-29 15:38:05 +01:00
|
|
|
.icon {
|
2018-04-11 10:35:03 +02:00
|
|
|
width: 15px;
|
|
|
|
height: 18px;
|
|
|
|
vertical-align: middle;
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2019-03-29 15:38:05 +01:00
|
|
|
&::before {
|
|
|
|
margin-right: 2px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--active a,
|
|
|
|
a:hover {
|
|
|
|
color: $color-teal;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--active .icon {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.handle {
|
|
|
|
cursor: move;
|
|
|
|
width: 20px;
|
2014-01-24 18:34:26 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
&:before {
|
|
|
|
font-size: 20px;
|
|
|
|
color: $color-grey-3;
|
|
|
|
width: 1em;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
&:hover:before {
|
|
|
|
color: $color-text-base;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.ui-sortable-helper {
|
|
|
|
border: 1px dashed $color-input-border;
|
|
|
|
border-width: 1px 0;
|
2014-04-02 17:48:26 +02:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
td {
|
|
|
|
display: none;
|
2014-04-02 17:48:26 +02:00
|
|
|
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2014-04-02 17:48:26 +02:00
|
|
|
|
2015-11-03 13:15:33 +01:00
|
|
|
.ord,
|
|
|
|
.title {
|
|
|
|
display: table-cell;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.dropzone {
|
|
|
|
height: 80px;
|
|
|
|
background-color: $color-grey-1;
|
2014-01-24 18:34:26 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
&:hover {
|
|
|
|
background-color: $color-grey-1;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
td {
|
2015-11-03 13:15:33 +01:00
|
|
|
padding: 0;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
table .no-results-message {
|
|
|
|
padding-left: 20px;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
|
2019-06-10 14:42:45 +02:00
|
|
|
.unpublished .title-wrapper {
|
2015-09-25 15:17:39 +02:00
|
|
|
opacity: 0.7;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2014-03-07 16:41:17 +01:00
|
|
|
|
|
|
|
.index {
|
2015-09-25 15:17:39 +02:00
|
|
|
background-color: $color-grey-4;
|
2014-03-07 16:41:17 +01:00
|
|
|
|
2019-06-10 14:42:45 +02:00
|
|
|
.title .title-wrapper {
|
2015-09-25 15:17:39 +02:00
|
|
|
font-size: 1.2em;
|
|
|
|
opacity: 1;
|
2014-07-24 16:23:05 +02:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
a {
|
2014-03-07 16:41:17 +01:00
|
|
|
@include transition(opacity 0.2s ease);
|
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
a:hover {
|
|
|
|
opacity: 0.7;
|
2014-03-07 16:41:17 +01:00
|
|
|
}
|
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.actions {
|
|
|
|
margin-top: 1em;
|
2014-03-07 16:41:17 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.button {
|
2016-02-17 15:54:34 +01:00
|
|
|
background-color: $color-white;
|
|
|
|
color: $color-teal;
|
2018-10-10 12:49:50 +02:00
|
|
|
border-color: rgba(0, 0, 0, 0.35);
|
2014-03-07 16:41:17 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
&:hover {
|
2015-11-03 13:15:33 +01:00
|
|
|
color: $color-white;
|
2015-09-25 15:17:39 +02:00
|
|
|
background: $color-teal-darker;
|
2016-02-17 15:54:34 +01:00
|
|
|
border-color: $color-teal-darker;
|
2014-03-07 16:41:17 +01:00
|
|
|
}
|
|
|
|
|
2015-11-19 07:05:57 +01:00
|
|
|
&:active {
|
|
|
|
color: $color-white;
|
|
|
|
background: #333;
|
|
|
|
border-color: #333;
|
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
&.bicolor {
|
|
|
|
background: $color-teal-darker;
|
2015-11-19 07:05:57 +01:00
|
|
|
border: solid 1px darken($color-teal-darker, 10%);
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
color: $color-white;
|
|
|
|
background: #484848;
|
|
|
|
border-color: #333;
|
|
|
|
}
|
2014-03-07 16:41:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-10-13 12:31:10 +02:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.indicator {
|
|
|
|
margin-right: 0;
|
|
|
|
font-size: 1em;
|
|
|
|
opacity: 0.7;
|
2014-10-13 12:31:10 +02:00
|
|
|
}
|
2015-01-08 18:00:34 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
&.images img {
|
2015-01-09 16:55:13 +01:00
|
|
|
@include transition(border-color 0.2s ease);
|
2015-11-03 13:15:33 +01:00
|
|
|
border: 3px solid $color-white;
|
2015-01-08 18:00:34 +01:00
|
|
|
}
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2018-02-10 00:56:30 +01:00
|
|
|
.image-choice {
|
2019-05-23 18:58:03 +02:00
|
|
|
// Force the link to be displayed as a block, so its focus outline has the right shape.
|
|
|
|
display: block;
|
2018-02-10 00:56:30 +01:00
|
|
|
color: inherit;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
ul.listing {
|
|
|
|
border-top: 1px dashed $color-input-border;
|
|
|
|
margin-bottom: 2em;
|
2014-03-03 18:56:24 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
table.listing {
|
|
|
|
width: 100%;
|
2014-03-03 18:56:24 +01:00
|
|
|
}
|
2014-01-24 18:34:26 +01:00
|
|
|
|
2015-11-03 13:15:33 +01:00
|
|
|
// explorer specific tweaks
|
2014-03-07 16:41:17 +01:00
|
|
|
.page-explorer .listing {
|
2015-09-25 15:17:39 +02:00
|
|
|
position: relative;
|
2014-06-12 15:40:34 +02:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.index {
|
2015-11-03 13:15:33 +01:00
|
|
|
color: $color-white;
|
2015-09-25 15:17:39 +02:00
|
|
|
background-color: $color-header-bg;
|
2014-03-07 16:41:17 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
td {
|
|
|
|
padding-top: 1.5em;
|
|
|
|
padding-bottom: 1.5em;
|
2014-03-28 18:05:29 +01:00
|
|
|
}
|
2014-03-07 16:41:17 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.privacy-indicator {
|
|
|
|
font-size: 1em;
|
|
|
|
opacity: 1;
|
|
|
|
position: absolute;
|
2016-10-25 19:40:44 +02:00
|
|
|
right: 10%;
|
2015-09-25 15:17:39 +02:00
|
|
|
top: 2em;
|
2014-06-12 15:40:34 +02:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.locked-indicator {
|
|
|
|
font-size: 0.8em;
|
2014-09-16 18:06:10 +02:00
|
|
|
}
|
2014-06-12 15:40:34 +02:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.title {
|
|
|
|
h2 {
|
2015-11-03 13:15:33 +01:00
|
|
|
color: $color-white;
|
2015-09-25 15:17:39 +02:00
|
|
|
font-size: 1.8em;
|
|
|
|
font-weight: 500;
|
2014-03-07 16:41:17 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
a:hover {
|
2015-11-03 13:15:33 +01:00
|
|
|
color: $color-white;
|
2014-03-07 16:41:17 +01:00
|
|
|
}
|
|
|
|
}
|
2016-02-17 16:48:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
background-color: transparent;
|
|
|
|
color: $color-white;
|
2018-10-10 12:49:50 +02:00
|
|
|
border-color: rgba(0, 0, 0, 0.35);
|
2016-02-17 16:48:08 +01:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $color-white;
|
|
|
|
background: $color-teal-darker;
|
|
|
|
}
|
2014-06-12 15:40:34 +02:00
|
|
|
|
2016-02-17 16:48:08 +01:00
|
|
|
&.bicolor {
|
|
|
|
background: $color-teal-darker;
|
|
|
|
}
|
2014-03-07 16:41:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.table-headers {
|
2019-03-29 15:38:05 +01:00
|
|
|
height: 35px;
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.title {
|
|
|
|
padding-left: 0;
|
2014-03-07 16:41:17 +01:00
|
|
|
}
|
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
tbody .title {
|
|
|
|
padding-left: 0;
|
2014-03-07 16:41:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.pagination {
|
|
|
|
text-align: center;
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
p {
|
|
|
|
margin: 0;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
ul {
|
2014-02-11 18:18:59 +01:00
|
|
|
@include unlist();
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
ul {
|
|
|
|
margin-top: -1.7em;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
li {
|
|
|
|
line-height: 1em;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.prev {
|
|
|
|
float: left;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.next {
|
|
|
|
float: right;
|
2014-04-02 17:48:26 +02:00
|
|
|
}
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.listing.full-width + .pagination {
|
2014-02-05 13:19:20 +01:00
|
|
|
margin-top: 3em;
|
|
|
|
border-top: 1px dashed #d9d9d9;
|
2015-11-03 13:15:33 +01:00
|
|
|
padding: 2em 50px 0;
|
2014-02-05 13:19:20 +01:00
|
|
|
}
|
|
|
|
|
2014-03-18 13:40:45 +01:00
|
|
|
|
2015-11-03 13:15:33 +01:00
|
|
|
// listing filters
|
2015-09-25 15:17:39 +02:00
|
|
|
.listing-filter {
|
2014-03-18 13:40:45 +01:00
|
|
|
@include clearfix();
|
2015-09-25 15:17:39 +02:00
|
|
|
background-color: $color-grey-5;
|
|
|
|
border-width: 1px 0;
|
|
|
|
margin: 3em 0;
|
2014-03-18 13:40:45 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.filter-title {
|
|
|
|
float: left;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 0.95em;
|
|
|
|
padding: 1em;
|
2015-11-03 13:15:33 +01:00
|
|
|
margin: 0 1em 0 0;
|
2015-09-25 15:17:39 +02:00
|
|
|
background-color: $color-grey-4;
|
2014-03-18 13:40:45 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.filter-options {
|
2014-03-18 13:40:45 +01:00
|
|
|
@include unlist();
|
|
|
|
@include clearfix();
|
2015-09-25 15:17:39 +02:00
|
|
|
overflow: hidden;
|
2014-03-18 13:40:45 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
li {
|
|
|
|
padding: 0.8em;
|
|
|
|
float: left;
|
2014-03-18 13:40:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-04 22:46:42 +01:00
|
|
|
@include media-breakpoint-up(sm) {
|
2015-09-25 15:17:39 +02:00
|
|
|
.listing {
|
|
|
|
&.horiz > li {
|
2015-11-03 13:15:33 +01:00
|
|
|
float: left;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2014-01-24 18:34:26 +01:00
|
|
|
&.images {
|
2014-02-11 18:18:59 +01:00
|
|
|
@include clearfix();
|
|
|
|
border: 1px solid $color-grey-4;
|
2015-11-03 13:15:33 +01:00
|
|
|
border-width: 0 0 0 1px;
|
2014-01-24 18:34:26 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
> li {
|
|
|
|
padding: 1.3em;
|
|
|
|
width: 200px;
|
|
|
|
height: 220px;
|
|
|
|
text-align: center;
|
|
|
|
margin-top: -1px;
|
|
|
|
border: 1px solid $color-grey-4;
|
2015-09-25 18:14:46 +02:00
|
|
|
border-width: 1px 1px 1px 0;
|
2014-01-24 18:34:26 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.image {
|
|
|
|
text-align: center;
|
|
|
|
height: 180px;
|
2014-04-02 17:48:26 +02:00
|
|
|
|
2014-01-24 18:34:26 +01:00
|
|
|
&:before {
|
|
|
|
content: '';
|
|
|
|
display: inline-block;
|
|
|
|
height: 100%;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-right: -0.25em;
|
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
img {
|
|
|
|
display: inline-block;
|
2014-01-24 18:34:26 +01:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
&:hover {
|
2015-11-03 13:15:33 +01:00
|
|
|
background-color: #fdfdfd;
|
2014-01-24 18:34:26 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
img {
|
|
|
|
border-color: $color-teal;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-04-02 17:48:26 +02:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.actions {
|
2015-11-03 13:15:33 +01:00
|
|
|
visibility: hidden;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.index .actions {
|
|
|
|
visibility: visible;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-11-19 07:05:57 +01:00
|
|
|
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
td:hover .actions {
|
|
|
|
visibility: visible;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2014-01-24 18:34:26 +01:00
|
|
|
.no-children {
|
2015-09-25 15:17:39 +02:00
|
|
|
border-color: transparent;
|
2016-02-12 18:29:59 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
a {
|
|
|
|
opacity: 0;
|
2014-07-24 16:11:45 +02:00
|
|
|
}
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
tr:hover .no-children a {
|
|
|
|
opacity: 1;
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
tr:hover .children {
|
|
|
|
background-color: $color-teal;
|
2014-07-24 16:25:54 +02:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
a:before {
|
2015-11-03 13:15:33 +01:00
|
|
|
color: $color-white;
|
2014-07-24 16:25:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
td.children:hover {
|
|
|
|
background-color: $color-teal-darker;
|
2014-07-24 16:25:54 +02:00
|
|
|
}
|
2014-02-05 12:10:09 +01:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
table .no-results-message {
|
|
|
|
padding-left: 50px;
|
2014-02-05 12:10:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&.full-width td:first-child,
|
2015-09-25 15:17:39 +02:00
|
|
|
&.full-width th:first-child {
|
2016-10-26 23:20:08 +02:00
|
|
|
padding-left: 25px;
|
2014-02-05 12:10:09 +01:00
|
|
|
}
|
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
&.full-width .divider td {
|
|
|
|
padding-left: 50px;
|
2014-02-05 12:10:09 +01:00
|
|
|
}
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-19 07:05:57 +01:00
|
|
|
|
|
|
|
// State
|
|
|
|
.listing__item--active {
|
|
|
|
> .actions {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-03 13:15:33 +01:00
|
|
|
// Transitions
|
2014-01-24 18:34:26 +01:00
|
|
|
.listing {
|
2015-09-25 15:17:39 +02:00
|
|
|
thead .dropdown ul {
|
2014-02-11 18:18:59 +01:00
|
|
|
@include transition(none);
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
|
|
|
.children,
|
|
|
|
.no-children {
|
2014-02-11 18:18:59 +01:00
|
|
|
@include transition(background-color 0.2s ease);
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
|
2014-01-24 18:34:26 +01:00
|
|
|
.children a,
|
2015-09-25 15:17:39 +02:00
|
|
|
.no-children a {
|
2014-02-11 18:18:59 +01:00
|
|
|
@include transition(all 0.2s ease);
|
2014-01-24 18:34:26 +01:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
}
|
2016-10-26 23:20:08 +02:00
|
|
|
|
|
|
|
// Ordering
|
|
|
|
td.ord {
|
|
|
|
.handle {
|
2019-03-29 15:38:05 +01:00
|
|
|
// Align with the row's title text, and the column's label.
|
2016-10-27 22:26:22 +02:00
|
|
|
margin-top: -28px;
|
2019-03-29 15:38:05 +01:00
|
|
|
margin-left: 13px;
|
2016-10-26 23:20:08 +02:00
|
|
|
}
|
|
|
|
}
|
2017-10-25 17:57:33 +02:00
|
|
|
|
|
|
|
table.listing {
|
|
|
|
th.ordered {
|
|
|
|
color: $color-teal;
|
|
|
|
|
|
|
|
&.ascending {
|
|
|
|
&:before {
|
|
|
|
content: '\25B2'; // up arrow
|
|
|
|
display: inline-block;
|
|
|
|
height: 100%;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.descending {
|
|
|
|
&:before {
|
|
|
|
content: '\25BC'; // down arrow
|
|
|
|
display: inline-block;
|
|
|
|
height: 100%;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|