Ignore:
Timestamp:
2021-08-11T16:24:17+12:00 (3 years ago)
Author:
davidb
Message:

Convert error templating to Vue

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/model-interfaces-dev/atea/style/asr.scss

    r35282 r35284  
    9292    margin: 0 1px 3px 1px; /* Keeps space around the box shadow */
    9393
    94     -webkit-transition-duration: 0.2s;
    95     transition-duration: 0.2s;
     94    -webkit-transition-duration: 0.15s;
     95    transition-duration: 0.15s;
    9696
    9797    span {
     
    144144
    145145/* === End theme definitions === */
     146
     147/* === Start theme application === */
     148
     149button {
     150    @extend .btn-primary;
     151}
     152
     153/* === End theme application === */
    146154
    147155body {
     
    172180}
    173181
    174 #btnBeginTranscription {
    175     float: right;
    176 }
    177182
    178183/* Transcriptions */
     
    184189
    185190.transcription__container {
    186     margin-bottom: 1em;
     191    padding: 0.5em;
     192
     193    -webkit-transition-duration: 0.15s;
     194    transition-duration: 0.15s;
    187195
    188196    &:last-child {
    189197        margin-bottom: 0;
     198    }
     199
     200    &:hover {
     201        background-color: #EEE;
    190202    }
    191203}
     
    211223}
    212224
    213 .error-list-item {
    214     list-style-type: none;
    215     background-color: rgba(255, 0, 0, 0.329);
    216     border: 1px solid rgba(255, 0, 0, 0.651);
    217     border-radius: 5px;
    218     margin-bottom: 5px;
    219     padding: 1em;
    220 }
    221 
    222 .error-list-item .spaced-block {
    223     margin-bottom: 8px;
    224 
    225     &:last-child {
    226         margin-bottom: 0;
    227     }   
     225.transcription__error-container {
     226    @extend .transcription__container;
     227
     228    background-color: rgba(255, 0, 0, 0.226);
     229   
     230    &:hover {
     231        background-color: rgba(255, 0, 0, 0.226);
     232    }
    228233}
    229234
Note: See TracChangeset for help on using the changeset viewer.