Ignore:
Timestamp:
2021-11-23T14:22:36+13:00 (2 years ago)
Author:
cstephen
Message:

Improve macroniser funding/disclaimer.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/model-interfaces-dev/atea/macron-restoration/src/App.vue

    r35729 r35742  
    44        <div class="app-bar-content">
    55            <span class="heading1">{{ translations.get("Title") }}</span>
     6
     7            <toggle-button class="theme-primary-l1" v-model="showInfo" :reverseState="true">
     8                <span class="material-icons mdi-l">info</span>
     9            </toggle-button>
    610        </div>
     11
     12        <div v-if="showInfo" class="paper" v-html="translations.get('Description')" />
    713    </div>
    814
     
    1622        <div class="inner-content" v-if="selectedTab === 'file'">
    1723            <file-input />
    18         </div>
    19     </div>
    20 
    21     <div class="footer">
    22         <a href="https://www.waikato.ac.nz" target="_blank">
    23             <img src="img/logo_waikato_uni.jpg" alt="The University of Waikato Logo" />
    24         </a>
    25 
    26         <div>
    27             This service was funded by <a href="http://www.maramatanga.co.nz" target="_blank">Ngā Pae O Te Māramatanga</a> as
    28             part of the research related to the digitalization of the Pei Jones collection,
    29             and was developed at the <a href="https://www.waikato.ac.nz" target="_blank">University of Waikato</a>.
    30         </div>
    31 
    32         <a href="http://www.maramatanga.co.nz" target="_blank">
    33             <img src="img/logo_maramatanga.jpg" alt="The Ngā Pae o te Māramatanga Logo" />
    34         </a>
    35 
    36         <div>
    37             This website collects simple usage logs which will be used for development purposes only.
    38             No details which could be used to identify individuals will be collected and the data will be kept secure at the University of Waikato.
    39             If you do not wish for your activity to be included, click <a href="mailto:[email protected]">here</a> to notify Dr. Te Taka Keegan.
    40             Copyright &copy; 2014 University of Waikato
    4124        </div>
    4225    </div>
     
    8972    padding: 1em;
    9073}
    91 
    92 .footer {
    93     display: grid;
    94     grid-template-columns: auto 1fr;
    95     gap: 1em;
    96 
    97     box-shadow: 0px 0px 3px 2px #8a8a8a;
    98     padding: 1em;
    99     background-color: var(--paper-color);
    100 
    101     img {
    102         grid-column: 1;
    103         height: 48px;
    104     }
    105 
    106     div {
    107         grid-column: 2;
    108     }
    109 }
    110 
    111 .funding {
    112     display: flex;
    113     gap: 1em;
    114     align-items: center;
    115 }
    11674</style>
    11775
     
    13189    data() {
    13290        return {
    133             selectedTab: "direct"
     91            selectedTab: "direct",
     92            showInfo: false
    13493        }
    13594    },
Note: See TracChangeset for help on using the changeset viewer.