Changeset - e7ed2105f3bd
[Not reviewed]
default
0 1 0
drewp@bigasterisk.com - 6 years ago 2019-06-09 22:18:22
drewp@bigasterisk.com
clearer time axis numbers
Ignore-this: c78aba201553578a3fb1aa21a423519
1 file changed with 17 insertions and 8 deletions:
0 comments (0 inline, 0 general)
light9/web/timeline/timeline-elements.html
Show inline comments
 
@@ -170,34 +170,43 @@
 
    <canvas id="canvas"></canvas>
 
  </template>
 
</dom-module>
 
      
 

	
 
<!-- seconds labels -->
 
<dom-module id="light9-timeline-time-axis">
 
  <template>
 
    <style>
 
     :host {
 
         display: block;
 
     }
 
      div {
 
          width: 100%;
 
          height: 31px;
 
      }
 
      svg {
 
          width: 100%;
 
          height: 30px;
 
      }
 
     div {
 
         width: 100%;
 
         height: 31px;
 
     }
 
     svg {
 
         width: 100%;
 
         height: 30px;
 
     }
 
    </style>
 
    <svg id="timeAxis" xmlns="http://www.w3.org/2000/svg">
 
      <style>
 
       text  {
 
           fill: white;
 
           color: white;
 
           font-size: 135%;
 
           font-weight: bold;
 
       }
 
       
 
      </style>
 
      <g id="axis" transform="translate(0,30)"></g>    
 
    </svg>
 
  </template>
 
</dom-module>
 

	
 
<!-- All the adjusters you can edit or select. Tells a light9-adjusters-canvas how to draw them. Probabaly doesn't need to be an element.
 
     This element manages their layout and suppresion.
 
     Owns the selection.
 
     Maybe includes selecting things that don't even have adjusters.
 
     Maybe manages the layout of other labels and text too, to avoid overlaps.
 
   -->
 
<dom-module id="light9-timeline-adjusters">
0 comments (0 inline, 0 general)