Compare commits
55 Commits
74accb190f
...
a9ea9cfce2
Author | SHA1 | Date |
---|---|---|
chris | a9ea9cfce2 | |
jorge | 0cdd3ba1cb | |
jorge | 39855d1bb7 | |
jorge | c850da3421 | |
jorge | df6c4bcd34 | |
jorge | 0e46b528db | |
jorge | 53cf7f08e5 | |
jorge | 94f496b213 | |
jorge | aef6eba175 | |
jorge | 1df64ad110 | |
jorge | 1df83b1df5 | |
jorge | 6e9cc61485 | |
jorge | 7765a39ae0 | |
jorge | b3b4e57249 | |
jorge | bff2eab376 | |
jorge | 31c7edfe7b | |
jorge | 2a56062fd3 | |
jorge | 3b08513cfd | |
jorge | 4cf64b4fec | |
jorge | bb13d9b927 | |
jorge | 86f7d9d162 | |
jorge | 8475bc2a9a | |
jorge | 97f6ce8c95 | |
jorge | 516fef1843 | |
jorge | f66e1fd99d | |
jorge | dbc027b055 | |
jorge | 19b434b157 | |
jorge | 92cede002c | |
chris | a5261b3b50 | |
jorge | b6c511b708 | |
jorge | 0aa8b78b8a | |
jorge | 0ce8f05c6f | |
jorge | a0352f8762 | |
jorge | 8bf5006643 | |
chris | f26a558ff1 | |
jorge | ffad101b04 | |
jorge | 19f2272b11 | |
jorge | f68954df1c | |
jorge | b7a482a8a3 | |
jorge | ac6adfb403 | |
jorge | a061cc3275 | |
jorge | cbb5293728 | |
chris | d3407f57c6 | |
jorge | 72b5c09f28 | |
jorge | ae78aa260f | |
jorge | 990f8398b8 | |
chris | 323fd10438 | |
jorge | 59bc76ac9f | |
jorge | 43043f018b | |
jorge | 08af72a7ba | |
jorge | bab1d5c65d | |
jorge | f10e176744 | |
jorge | c99ef34eaf | |
jorge | c32fcdc520 | |
jorge | d3580b8d75 |
File diff suppressed because one or more lines are too long
Binary file not shown.
After Width: | Height: | Size: 97 KiB |
Binary file not shown.
After Width: | Height: | Size: 288 KiB |
|
@ -1,3 +1,6 @@
|
||||||
|
button {
|
||||||
|
@extend .button;
|
||||||
|
}
|
||||||
button,.button {
|
button,.button {
|
||||||
&.small{
|
&.small{
|
||||||
padding: $global-padding*0.5 $global-padding*1.5;
|
padding: $global-padding*0.5 $global-padding*1.5;
|
||||||
|
@ -58,3 +61,9 @@ button,.button {
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.end_of_page_button {
|
||||||
|
@extend .button.small;
|
||||||
|
display: flex;
|
||||||
|
margin: $global-margin auto;
|
||||||
|
padding: $global-padding*0.5 $global-padding*5;
|
||||||
|
}
|
||||||
|
|
|
@ -1,3 +1,41 @@
|
||||||
.card {
|
.card {
|
||||||
padding: $global-padding;
|
padding: $global-padding;
|
||||||
}
|
}
|
||||||
|
.collection-card {
|
||||||
|
ul {
|
||||||
|
&.arc-site-meta {
|
||||||
|
list-style: none;
|
||||||
|
margin: $global-margin 0;
|
||||||
|
li {
|
||||||
|
&:before{
|
||||||
|
content:'';
|
||||||
|
display: inline-block;
|
||||||
|
width: rem-calc(150);
|
||||||
|
min-height: rem-calc($global-lineheight);
|
||||||
|
}
|
||||||
|
&.artist:before {
|
||||||
|
content:'Artist';
|
||||||
|
}
|
||||||
|
&.date:before {
|
||||||
|
content: 'Year';
|
||||||
|
}
|
||||||
|
&.collection:before {
|
||||||
|
content: 'Collection';
|
||||||
|
}
|
||||||
|
&.tech-document-link:before {
|
||||||
|
//content: 'Keywords';
|
||||||
|
display:inline;
|
||||||
|
width: 0;
|
||||||
|
}
|
||||||
|
&.tech-document-link {
|
||||||
|
a {
|
||||||
|
@include button;
|
||||||
|
padding: $global-padding*0.5 $global-padding*1.5;
|
||||||
|
margin-left: 0;
|
||||||
|
font-size: $small-font-size;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
dl {
|
||||||
|
.property {
|
||||||
|
display:flex;
|
||||||
|
dt {
|
||||||
|
width: 14rem;
|
||||||
|
max-width: 14rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -39,7 +39,7 @@
|
||||||
//@include foundation-switch;
|
//@include foundation-switch;
|
||||||
@include foundation-table;
|
@include foundation-table;
|
||||||
// Basic components
|
// Basic components
|
||||||
@include foundation-badge;
|
//@include foundation-badge;
|
||||||
@include foundation-breadcrumbs;
|
@include foundation-breadcrumbs;
|
||||||
@include foundation-callout;
|
@include foundation-callout;
|
||||||
@include foundation-card;
|
@include foundation-card;
|
||||||
|
@ -82,6 +82,7 @@
|
||||||
|
|
||||||
// global project styles
|
// global project styles
|
||||||
|
|
||||||
|
@import "global/print-pdf";
|
||||||
@import "global/wp-overrides"; //errors
|
@import "global/wp-overrides"; //errors
|
||||||
@import "global/wp-admin"; //errors
|
@import "global/wp-admin"; //errors
|
||||||
@import "global/typography";
|
@import "global/typography";
|
||||||
|
@ -107,6 +108,7 @@
|
||||||
@import "components/buttons";
|
@import "components/buttons";
|
||||||
@import "components/accordion";
|
@import "components/accordion";
|
||||||
@import "components/tables";
|
@import "components/tables";
|
||||||
|
@import "components/lists";
|
||||||
|
|
||||||
|
|
||||||
// Templates
|
// Templates
|
||||||
|
|
|
@ -30,7 +30,8 @@
|
||||||
}
|
}
|
||||||
&.eu{
|
&.eu{
|
||||||
&::before {
|
&::before {
|
||||||
background-image: url('../img/eu_flag_creative_europe_co_funded_left.svg');
|
// background-image: url('../img/eu_flag_creative_europe_co_funded_left.svg');
|
||||||
|
background-image: url('../img/rechts_co-funded-by-the-creative-europe-media-programme-of-the-european-union-flag.png');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,6 @@
|
||||||
|
// https://developer.mozilla.org/en-US/docs/Web/CSS/Paged_Media
|
||||||
|
//
|
||||||
|
@media print {
|
||||||
|
|
||||||
|
|
||||||
|
}
|
|
@ -68,18 +68,11 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// page category
|
// .index max-width
|
||||||
//--------------
|
//--------------
|
||||||
.index{
|
.index {
|
||||||
main {
|
|
||||||
article {
|
|
||||||
header {
|
|
||||||
.entry-title {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
section {
|
|
||||||
}
|
|
||||||
.entry-content,.omekas-entry-content {
|
.entry-content,.omekas-entry-content {
|
||||||
@include breakpoint(small){
|
@include breakpoint(small){
|
||||||
}
|
}
|
||||||
|
@ -89,11 +82,30 @@ main {
|
||||||
@include breakpoint(xlarge){
|
@include breakpoint(xlarge){
|
||||||
max-width: unset;
|
max-width: unset;
|
||||||
}
|
}
|
||||||
}
|
@include breakpoint(xxlarge){
|
||||||
|
max-width: 60 rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// .contain selector for max-width
|
||||||
|
//--------------
|
||||||
|
.contain-width {
|
||||||
|
.entry-content,.omekas-entry-content {
|
||||||
|
@include breakpoint(small){
|
||||||
|
}
|
||||||
|
@include breakpoint(medium){
|
||||||
|
max-width: 50rem;
|
||||||
|
}
|
||||||
|
@include breakpoint(xlarge){
|
||||||
|
max-width: 50rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// news category
|
// news category
|
||||||
//--------------
|
//--------------
|
||||||
|
@ -184,9 +196,11 @@ main {
|
||||||
@include flex-align(center,top);
|
@include flex-align(center,top);
|
||||||
}
|
}
|
||||||
header {
|
header {
|
||||||
margin-top: 2*$global-margin;
|
display: none;
|
||||||
border-top: 1px solid $body-font-color;
|
|
||||||
padding: $global-padding*2 0;
|
// margin-top: 2*$global-margin;
|
||||||
|
// border-top: 1px solid $body-font-color;
|
||||||
|
// padding: $global-padding*2 0;
|
||||||
}
|
}
|
||||||
main {
|
main {
|
||||||
@include xy-grid;
|
@include xy-grid;
|
||||||
|
@ -223,6 +237,14 @@ main {
|
||||||
}
|
}
|
||||||
p {
|
p {
|
||||||
@include xy-cell(12);
|
@include xy-cell(12);
|
||||||
|
position: relative;
|
||||||
|
padding: $global-padding;
|
||||||
|
padding-bottom: $global-padding * 3;
|
||||||
|
.button {
|
||||||
|
position:absolute;
|
||||||
|
right:0;
|
||||||
|
margin-top: $global-padding * 3;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@include breakpoint(medium){
|
@include breakpoint(medium){
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
<?php
|
<?php
|
||||||
|
//
|
||||||
|
// as for 2021 07 28 this template is not being used
|
||||||
|
// consider deleting it
|
||||||
|
//
|
||||||
$archiveSiteHelper = $this->getHelperPluginManager()->get('archiveSiteMeta');
|
$archiveSiteHelper = $this->getHelperPluginManager()->get('archiveSiteMeta');
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
['class' => 'advanced-search']
|
['class' => 'advanced-search']
|
||||||
); ?>
|
); ?>
|
||||||
|
|
||||||
<h2><?php echo sprintf($this->translate('Item set results for "%s"'), $fulltextSearch); ?></h2>
|
<h3 class="item-set-resutls-title"><?php echo sprintf($this->translate('Item set results for "%s"'), $fulltextSearch); ?></h3>
|
||||||
|
|
||||||
<?php echo $this->pagination(); ?>
|
<?php echo $this->pagination(); ?>
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,8 @@ $hasResults = false;
|
||||||
<?php
|
<?php
|
||||||
$img_src = $this->getHelperPluginManager()->get('archiveSiteMeta')->getSiteImage($this->site);
|
$img_src = $this->getHelperPluginManager()->get('archiveSiteMeta')->getSiteImage($this->site);
|
||||||
if (!$img_src) {
|
if (!$img_src) {
|
||||||
$img_src = '/themes/archive/asset/img/default-header-image.jpg';
|
//$img_src = '/themes/archive/asset/img/default-header-image.jpg';
|
||||||
|
$img_src = $this->assetUrl('img/ARC-HIVE-logo.svg');
|
||||||
}
|
}
|
||||||
if ($this->site->title() == "Collections") {
|
if ($this->site->title() == "Collections") {
|
||||||
$image_height = "300px";
|
$image_height = "300px";
|
||||||
|
@ -34,7 +35,7 @@ $("#archive_page_title").html('<?php echo $_html ?>');
|
||||||
</script>
|
</script>
|
||||||
<!-- arc-hive insert ends -->
|
<!-- arc-hive insert ends -->
|
||||||
|
|
||||||
<h2><?php echo sprintf($this->translate('Search results for “%s”'), $fulltextSearch); ?></h2>
|
<h3 class="search-results-for-title"><?php echo sprintf($this->translate('Search results for “%s”'), $fulltextSearch); ?></h3>
|
||||||
|
|
||||||
|
|
||||||
<div class="results">
|
<div class="results">
|
||||||
|
|
|
@ -17,14 +17,6 @@
|
||||||
</main>
|
</main>
|
||||||
<nav>
|
<nav>
|
||||||
<menu class="">
|
<menu class="">
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
Este menu no lo genera Omeka.
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Creo que emula el menu del wordpress.
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<?php /*
|
<?php /*
|
||||||
echo $site->publicNav()
|
echo $site->publicNav()
|
||||||
->menu()
|
->menu()
|
||||||
|
|
|
@ -11,7 +11,7 @@ $showPagePagination = $this->siteSetting('show_page_pagination', true);
|
||||||
$img_src = null;
|
$img_src = null;
|
||||||
$img_src = $this->getHelperPluginManager()->get('headerImage')->getImage($page);
|
$img_src = $this->getHelperPluginManager()->get('headerImage')->getImage($page);
|
||||||
if (!$img_src) {
|
if (!$img_src) {
|
||||||
$img_src = $this->assetUrl('img/ARC-HIVE-logo.svg');
|
$img_src = $this->assetUrl('img/default-ARC-HIVE-hero-image.jpg');
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<style>
|
<style>
|
||||||
|
|
Loading…
Reference in New Issue