src/css/LdtPlayer.css
author hamidouk
Fri, 23 Dec 2011 15:44:16 +0100
branchpopcorn-port
changeset 524 a06527b99f22
parent 523 8dfeaec4724b
child 526 03edc46544ee
permissions -rw-r--r--
the sparklineWidget height and width are now parametrable.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
     1
    #demo-frame > div.demo { padding: 5px !important; };
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
     2
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
     3
    button.ui-button-icon-only  {
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
     4
      height:1.5em;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
     5
      width:1.5em;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
     6
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
     7
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
     8
    #Ldt-loader {
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
     9
      background:url(imgs/loader.gif) no-repeat;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    10
      width:20px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    11
      height:16px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    12
      float:left;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    13
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    14
344
9799f50b7ac5 WIP - integrating sprites for the play button.
hamidouk
parents: 339
diff changeset
    15
   /* general class for all buttons */
9799f50b7ac5 WIP - integrating sprites for the play button.
hamidouk
parents: 339
diff changeset
    16
   .Ldt-button {
9799f50b7ac5 WIP - integrating sprites for the play button.
hamidouk
parents: 339
diff changeset
    17
9799f50b7ac5 WIP - integrating sprites for the play button.
hamidouk
parents: 339
diff changeset
    18
   }
9799f50b7ac5 WIP - integrating sprites for the play button.
hamidouk
parents: 339
diff changeset
    19
334
e20f97514d44 move the styling of a segment from the templates to the css.
hamidouk
parents: 328
diff changeset
    20
    .Ldt-SegmentsWidget {
483
0bb36c79836c fixed positioning bug.
hamidouk
parents: 482
diff changeset
    21
     /* overflow: auto; /* clear the floats */
371
3da43513e638 segmentswidget hotfix to follow samuel's specs.
hamidouk
parents: 367
diff changeset
    22
      margin-top: 1px;
484
479a74f9ddf8 fixed display issue.
hamidouk
parents: 483
diff changeset
    23
      padding-bottom: 8px; /* FIXME: only a temporary fix. This should be put into the layout manager. */
334
e20f97514d44 move the styling of a segment from the templates to the css.
hamidouk
parents: 328
diff changeset
    24
    }
e20f97514d44 move the styling of a segment from the templates to the css.
hamidouk
parents: 328
diff changeset
    25
515
54324c5d82ab got a more or less correct (+- 1px) version of the segmentsWidget.
hamidouk
parents: 486
diff changeset
    26
    .Ldt-iri-chapter {
54324c5d82ab got a more or less correct (+- 1px) version of the segmentsWidget.
hamidouk
parents: 486
diff changeset
    27
      position: absolute;
328
279f188a5624 changed the height of a segmentWidget chapter to 10px from 3px;
hamidouk
parents: 325
diff changeset
    28
      height: 10px;
473
1a09ab7e7163 fixed display bugs in segmentsWidget
hamidouk
parents: 469
diff changeset
    29
      border-right: 1px solid white;
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    30
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    31
483
0bb36c79836c fixed positioning bug.
hamidouk
parents: 482
diff changeset
    32
    .Ldt-SegmentPositionMarker {
0bb36c79836c fixed positioning bug.
hamidouk
parents: 482
diff changeset
    33
      position: absolute;
0bb36c79836c fixed positioning bug.
hamidouk
parents: 482
diff changeset
    34
      z-index: 100;
0bb36c79836c fixed positioning bug.
hamidouk
parents: 482
diff changeset
    35
      width: 1px;
0bb36c79836c fixed positioning bug.
hamidouk
parents: 482
diff changeset
    36
      height: 10px;
0bb36c79836c fixed positioning bug.
hamidouk
parents: 482
diff changeset
    37
      background-color: white;
0bb36c79836c fixed positioning bug.
hamidouk
parents: 482
diff changeset
    38
    }
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    39
    .tooltip {
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    40
      display:none;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    41
      background:transparent url(imgs/white_arrow_mini.png);
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    42
      font-size:12px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    43
      height:55px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    44
      width:180px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    45
      padding:10px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    46
      padding-left:15px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    47
      padding-top:15px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    48
      padding-right:15px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    49
      color:#000;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    50
      font-family: "Trebuchet MS", "Helvetica", "Arial",  "Verdana", "sans-serif";
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    51
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    52
    #Ldt-Root{
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    53
      font-family: "Trebuchet MS", "Helvetica", "Arial",  "Verdana", "sans-serif";
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    54
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    55
    #Ldt-Hat{
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    56
      height:3px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    57
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    58
373
0e571ced5bc4 cleaned up the css and implemented double borders.
hamidouk
parents: 371
diff changeset
    59
    .Ldt-AnnotationsWidget {
0e571ced5bc4 cleaned up the css and implemented double borders.
hamidouk
parents: 371
diff changeset
    60
      font-size: 12px;
0e571ced5bc4 cleaned up the css and implemented double borders.
hamidouk
parents: 371
diff changeset
    61
      font-family: "Arial",  "Verdana", "sans-serif";
0e571ced5bc4 cleaned up the css and implemented double borders.
hamidouk
parents: 371
diff changeset
    62
      background-color:#eeeeee;
0e571ced5bc4 cleaned up the css and implemented double borders.
hamidouk
parents: 371
diff changeset
    63
      background:url('imgs/wire_pattern.png') repeat scroll transparent ;
438
7c86ac92133f added a double border around the tweetWidget, and fixed a couple of
hamidouk
parents: 436
diff changeset
    64
      border: 1px solid #b6b8b8;
373
0e571ced5bc4 cleaned up the css and implemented double borders.
hamidouk
parents: 371
diff changeset
    65
    }
0e571ced5bc4 cleaned up the css and implemented double borders.
hamidouk
parents: 371
diff changeset
    66
0e571ced5bc4 cleaned up the css and implemented double borders.
hamidouk
parents: 371
diff changeset
    67
    .Ldt-Annotation-DoubleBorder {
0e571ced5bc4 cleaned up the css and implemented double borders.
hamidouk
parents: 371
diff changeset
    68
      border: 1px solid white;
438
7c86ac92133f added a double border around the tweetWidget, and fixed a couple of
hamidouk
parents: 436
diff changeset
    69
      overflow: auto;
373
0e571ced5bc4 cleaned up the css and implemented double borders.
hamidouk
parents: 371
diff changeset
    70
    }
0e571ced5bc4 cleaned up the css and implemented double borders.
hamidouk
parents: 371
diff changeset
    71
0e571ced5bc4 cleaned up the css and implemented double borders.
hamidouk
parents: 371
diff changeset
    72
    .Ldt-AnnotationContent {
0e571ced5bc4 cleaned up the css and implemented double borders.
hamidouk
parents: 371
diff changeset
    73
      padding:5px;
0e571ced5bc4 cleaned up the css and implemented double borders.
hamidouk
parents: 371
diff changeset
    74
      padding-left: 12px;
0e571ced5bc4 cleaned up the css and implemented double borders.
hamidouk
parents: 371
diff changeset
    75
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    76
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    77
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    78
    .Ldt-SaTitle{
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    79
      padding-top:2px;
373
0e571ced5bc4 cleaned up the css and implemented double borders.
hamidouk
parents: 371
diff changeset
    80
      padding-bottom:3px;
0e571ced5bc4 cleaned up the css and implemented double borders.
hamidouk
parents: 371
diff changeset
    81
      font-size: 12pt;
307
db5ecd5bbcf2 style changes for the annotationsWidget.
hamidouk
parents: 306
diff changeset
    82
      color : #0068c4;
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    83
    }
307
db5ecd5bbcf2 style changes for the annotationsWidget.
hamidouk
parents: 306
diff changeset
    84
db5ecd5bbcf2 style changes for the annotationsWidget.
hamidouk
parents: 306
diff changeset
    85
    .Ldt-SaDescription{
db5ecd5bbcf2 style changes for the annotationsWidget.
hamidouk
parents: 306
diff changeset
    86
      font-size:12px;
db5ecd5bbcf2 style changes for the annotationsWidget.
hamidouk
parents: 306
diff changeset
    87
    }
373
0e571ced5bc4 cleaned up the css and implemented double borders.
hamidouk
parents: 371
diff changeset
    88
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    89
    .Ldt-SaKeyword{
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    90
      background-color:#b9b9b9;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    91
      color:#4D4D4D;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    92
      padding:5px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    93
      font-weight:bold;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    94
      text-align:left;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    95
      float:left;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    96
      font-size:10px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
    97
    }
383
a866fe187dad added the sharing tools.
hamidouk
parents: 378
diff changeset
    98
a866fe187dad added the sharing tools.
hamidouk
parents: 378
diff changeset
    99
    .Ldt-AnnotationShareIcons {
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   100
      float:right;
383
a866fe187dad added the sharing tools.
hamidouk
parents: 378
diff changeset
   101
      position: relative;
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   102
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   103
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   104
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   105
    #Ldt-PlaceHolder{
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   106
      position:absolue;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   107
      float:none;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   108
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   109
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   110
    .Ldt-Segments{
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   111
      float:left;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   112
      font-size: 62.5%;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   113
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   114
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   115
    .Ldt-mode-radio{
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   116
      visibility:hidden;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   117
      height:0px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   118
      display:none
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   119
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   120
311
43a1b7d95317 WIP - integrating the various changes samuel requested.
hamidouk
parents: 310
diff changeset
   121
    /* player */
43a1b7d95317 WIP - integrating the various changes samuel requested.
hamidouk
parents: 310
diff changeset
   122
    .Ldt-controler {
43a1b7d95317 WIP - integrating the various changes samuel requested.
hamidouk
parents: 310
diff changeset
   123
      font-size: 62.5%;
43a1b7d95317 WIP - integrating the various changes samuel requested.
hamidouk
parents: 310
diff changeset
   124
      font-family: "Trebuchet MS", "Helvetica", "Arial",  "Verdana", "sans-serif";
43a1b7d95317 WIP - integrating the various changes samuel requested.
hamidouk
parents: 310
diff changeset
   125
      background:url('imgs/player_gradient.png') repeat-x transparent ;
335
54c0686efd85 various css fixes and cleanups.
hamidouk
parents: 334
diff changeset
   126
      height: 25px;
311
43a1b7d95317 WIP - integrating the various changes samuel requested.
hamidouk
parents: 310
diff changeset
   127
      border-top: 1px solid #b6b8b8;
43a1b7d95317 WIP - integrating the various changes samuel requested.
hamidouk
parents: 310
diff changeset
   128
      border-bottom: 1px solid #b6b8b8;
43a1b7d95317 WIP - integrating the various changes samuel requested.
hamidouk
parents: 310
diff changeset
   129
    }
43a1b7d95317 WIP - integrating the various changes samuel requested.
hamidouk
parents: 310
diff changeset
   130
43a1b7d95317 WIP - integrating the various changes samuel requested.
hamidouk
parents: 310
diff changeset
   131
 
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   132
    .Ldt-LeftPlayerControls {
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   133
      float:left;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   134
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   135
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   136
    .Ldt-RightPlayerControls {
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   137
      float: right;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   138
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   139
345
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   140
    .Ldt-button {
335
54c0686efd85 various css fixes and cleanups.
hamidouk
parents: 334
diff changeset
   141
      border-left: 1px solid #b6b8b8;
311
43a1b7d95317 WIP - integrating the various changes samuel requested.
hamidouk
parents: 310
diff changeset
   142
      float: left;
348
c9833b9c86b9 changed the cursors for the interface buttons.
hamidouk
parents: 346
diff changeset
   143
      cursor: pointer;
345
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   144
     
311
43a1b7d95317 WIP - integrating the various changes samuel requested.
hamidouk
parents: 310
diff changeset
   145
    }
43a1b7d95317 WIP - integrating the various changes samuel requested.
hamidouk
parents: 310
diff changeset
   146
344
9799f50b7ac5 WIP - integrating sprites for the play button.
hamidouk
parents: 339
diff changeset
   147
    .Ldt-CtrlPlay {
9799f50b7ac5 WIP - integrating sprites for the play button.
hamidouk
parents: 339
diff changeset
   148
      background:url('imgs/play_sprite.png') no-repeat transparent ;
9799f50b7ac5 WIP - integrating sprites for the play button.
hamidouk
parents: 339
diff changeset
   149
      background-position: 0 0;
345
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   150
      width: 59px;
344
9799f50b7ac5 WIP - integrating sprites for the play button.
hamidouk
parents: 339
diff changeset
   151
      height: 25px;
9799f50b7ac5 WIP - integrating sprites for the play button.
hamidouk
parents: 339
diff changeset
   152
    }
9799f50b7ac5 WIP - integrating sprites for the play button.
hamidouk
parents: 339
diff changeset
   153
9799f50b7ac5 WIP - integrating sprites for the play button.
hamidouk
parents: 339
diff changeset
   154
    .Ldt-CtrlPlay:hover {
9799f50b7ac5 WIP - integrating sprites for the play button.
hamidouk
parents: 339
diff changeset
   155
      background-position: 0 -25px;
9799f50b7ac5 WIP - integrating sprites for the play button.
hamidouk
parents: 339
diff changeset
   156
    }
9799f50b7ac5 WIP - integrating sprites for the play button.
hamidouk
parents: 339
diff changeset
   157
345
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   158
    .Ldt-CtrlPlay:active {
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   159
      background-position: 0 -50px;
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   160
    }
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   161
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   162
    .Ldt-CtrlAnnotate {
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   163
      background:url('imgs/annotate_sprite.png') no-repeat scroll 0 0 transparent ;
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   164
      width: 33px;
335
54c0686efd85 various css fixes and cleanups.
hamidouk
parents: 334
diff changeset
   165
      height: 25px;
54c0686efd85 various css fixes and cleanups.
hamidouk
parents: 334
diff changeset
   166
      border-right: 1px solid #b6b8b8;
311
43a1b7d95317 WIP - integrating the various changes samuel requested.
hamidouk
parents: 310
diff changeset
   167
      float: left;
43a1b7d95317 WIP - integrating the various changes samuel requested.
hamidouk
parents: 310
diff changeset
   168
    }
43a1b7d95317 WIP - integrating the various changes samuel requested.
hamidouk
parents: 310
diff changeset
   169
345
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   170
    .Ldt-CtrlAnnotate:hover {
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   171
      background-position: 0 -25px;
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   172
    }
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   173
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   174
    .Ldt-CtrlAnnotate:active {
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   175
      background-position: 0 -50px;
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   176
    }
311
43a1b7d95317 WIP - integrating the various changes samuel requested.
hamidouk
parents: 310
diff changeset
   177
43a1b7d95317 WIP - integrating the various changes samuel requested.
hamidouk
parents: 310
diff changeset
   178
    .Ldt-CtrlSearch {
345
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   179
      background:url('imgs/search_sprite.png') no-repeat scroll 0 0 transparent ;
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   180
      width: 33px;
335
54c0686efd85 various css fixes and cleanups.
hamidouk
parents: 334
diff changeset
   181
      height: 25px;
54c0686efd85 various css fixes and cleanups.
hamidouk
parents: 334
diff changeset
   182
      border-right: 1px solid #b6b8b8;
311
43a1b7d95317 WIP - integrating the various changes samuel requested.
hamidouk
parents: 310
diff changeset
   183
      float: left;
386
c3a08790e8c8 fixed borders bug.
hamidouk
parents: 385
diff changeset
   184
      border-left: none;
311
43a1b7d95317 WIP - integrating the various changes samuel requested.
hamidouk
parents: 310
diff changeset
   185
    }
43a1b7d95317 WIP - integrating the various changes samuel requested.
hamidouk
parents: 310
diff changeset
   186
345
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   187
    .Ldt-CtrlSearch:hover {
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   188
      background-position: 0 -25px;
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   189
    }
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   190
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   191
    .Ldt-CtrlSearch:active {
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   192
      background-position: 0 -50px;
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   193
    }
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   194
8a088f7daa66 rollover over the interface buttons now works as expected.
hamidouk
parents: 344
diff changeset
   195
295
be44f374549e the total time of the video is now grayed out, as per samuel's spec.
hamidouk
parents: 290
diff changeset
   196
    .Ldt-Time {
339
a7e288ce7957 fixed time indicator positioning issues.
hamidouk
parents: 338
diff changeset
   197
      position: inherit;
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   198
      float: left;
335
54c0686efd85 various css fixes and cleanups.
hamidouk
parents: 334
diff changeset
   199
      border-right: 1px solid #b6b8b8;
339
a7e288ce7957 fixed time indicator positioning issues.
hamidouk
parents: 338
diff changeset
   200
      height: 25px;
a7e288ce7957 fixed time indicator positioning issues.
hamidouk
parents: 338
diff changeset
   201
      padding-right: 2px;
385
6915c4c6163d fixed time display font size.
hamidouk
parents: 383
diff changeset
   202
      font-size: 12px;
6915c4c6163d fixed time display font size.
hamidouk
parents: 383
diff changeset
   203
      font-family: Arial, Verdana, sans-serif;
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   204
    }
295
be44f374549e the total time of the video is now grayed out, as per samuel's spec.
hamidouk
parents: 290
diff changeset
   205
    
be44f374549e the total time of the video is now grayed out, as per samuel's spec.
hamidouk
parents: 290
diff changeset
   206
    .Ldt-ElapsedTime {
385
6915c4c6163d fixed time display font size.
hamidouk
parents: 383
diff changeset
   207
      margin-top: 4px;
338
3ff4499f79bb WIP - graphical integration.
hamidouk
parents: 335
diff changeset
   208
      float: left;
295
be44f374549e the total time of the video is now grayed out, as per samuel's spec.
hamidouk
parents: 290
diff changeset
   209
      color: #4a4a4a;
be44f374549e the total time of the video is now grayed out, as per samuel's spec.
hamidouk
parents: 290
diff changeset
   210
    }
be44f374549e the total time of the video is now grayed out, as per samuel's spec.
hamidouk
parents: 290
diff changeset
   211
    
339
a7e288ce7957 fixed time indicator positioning issues.
hamidouk
parents: 338
diff changeset
   212
    .Ldt-TimeSeparator {
385
6915c4c6163d fixed time display font size.
hamidouk
parents: 383
diff changeset
   213
      margin-top: 4px;
339
a7e288ce7957 fixed time indicator positioning issues.
hamidouk
parents: 338
diff changeset
   214
      float: left;
385
6915c4c6163d fixed time display font size.
hamidouk
parents: 383
diff changeset
   215
      padding-left: 1px;
6915c4c6163d fixed time display font size.
hamidouk
parents: 383
diff changeset
   216
      padding-right: 1px;
339
a7e288ce7957 fixed time indicator positioning issues.
hamidouk
parents: 338
diff changeset
   217
    }
a7e288ce7957 fixed time indicator positioning issues.
hamidouk
parents: 338
diff changeset
   218
295
be44f374549e the total time of the video is now grayed out, as per samuel's spec.
hamidouk
parents: 290
diff changeset
   219
    .Ldt-TotalTime {
385
6915c4c6163d fixed time display font size.
hamidouk
parents: 383
diff changeset
   220
      margin-top: 4px;
339
a7e288ce7957 fixed time indicator positioning issues.
hamidouk
parents: 338
diff changeset
   221
      float: left;
295
be44f374549e the total time of the video is now grayed out, as per samuel's spec.
hamidouk
parents: 290
diff changeset
   222
      color: #b2b2b2; 
be44f374549e the total time of the video is now grayed out, as per samuel's spec.
hamidouk
parents: 290
diff changeset
   223
    }
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   224
335
54c0686efd85 various css fixes and cleanups.
hamidouk
parents: 334
diff changeset
   225
    .Ldt-CtrlSound {
450
6c555484037b added styling for the mute/unmute button.
hamidouk
parents: 439
diff changeset
   226
      background:url('imgs/sound_sprite.png') no-repeat scroll 0 0 transparent ;
6c555484037b added styling for the mute/unmute button.
hamidouk
parents: 439
diff changeset
   227
      width: 33px;
6c555484037b added styling for the mute/unmute button.
hamidouk
parents: 439
diff changeset
   228
      height: 25px;
6c555484037b added styling for the mute/unmute button.
hamidouk
parents: 439
diff changeset
   229
      border-right: 1px solid #b6b8b8;
6c555484037b added styling for the mute/unmute button.
hamidouk
parents: 439
diff changeset
   230
      float: right;
6c555484037b added styling for the mute/unmute button.
hamidouk
parents: 439
diff changeset
   231
      border-left: none;
6c555484037b added styling for the mute/unmute button.
hamidouk
parents: 439
diff changeset
   232
    }
6c555484037b added styling for the mute/unmute button.
hamidouk
parents: 439
diff changeset
   233
6c555484037b added styling for the mute/unmute button.
hamidouk
parents: 439
diff changeset
   234
    .Ldt-CtrlSound:hover {
6c555484037b added styling for the mute/unmute button.
hamidouk
parents: 439
diff changeset
   235
      background-position: 0 -25px;
6c555484037b added styling for the mute/unmute button.
hamidouk
parents: 439
diff changeset
   236
    }
6c555484037b added styling for the mute/unmute button.
hamidouk
parents: 439
diff changeset
   237
6c555484037b added styling for the mute/unmute button.
hamidouk
parents: 439
diff changeset
   238
    .Ldt-CtrlSound:active {
6c555484037b added styling for the mute/unmute button.
hamidouk
parents: 439
diff changeset
   239
      background-position: 0 -50px;
6c555484037b added styling for the mute/unmute button.
hamidouk
parents: 439
diff changeset
   240
    }
6c555484037b added styling for the mute/unmute button.
hamidouk
parents: 439
diff changeset
   241
/*
6c555484037b added styling for the mute/unmute button.
hamidouk
parents: 439
diff changeset
   242
    .Ldt-CtrlSound {
335
54c0686efd85 various css fixes and cleanups.
hamidouk
parents: 334
diff changeset
   243
      float: right;
386
c3a08790e8c8 fixed borders bug.
hamidouk
parents: 385
diff changeset
   244
      border-left: none;
339
a7e288ce7957 fixed time indicator positioning issues.
hamidouk
parents: 338
diff changeset
   245
      height: 25px;
a7e288ce7957 fixed time indicator positioning issues.
hamidouk
parents: 338
diff changeset
   246
      top: 7px;
a7e288ce7957 fixed time indicator positioning issues.
hamidouk
parents: 338
diff changeset
   247
      position: inherit;
334
e20f97514d44 move the styling of a segment from the templates to the css.
hamidouk
parents: 328
diff changeset
   248
    }
450
6c555484037b added styling for the mute/unmute button.
hamidouk
parents: 439
diff changeset
   249
*/    
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   250
    .Ldt-cleaner {
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   251
      clear:both;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   252
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   253
299
d2005f747d5a added a new widget, the arrowWidget.
hamidouk
parents: 295
diff changeset
   254
    /* Arrow Widget */
d2005f747d5a added a new widget, the arrowWidget.
hamidouk
parents: 295
diff changeset
   255
    .Ldt-arrowWidget {
305
e8d05c3f77ed created an arrow widget.
hamidouk
parents: 299
diff changeset
   256
      position: relative;
299
d2005f747d5a added a new widget, the arrowWidget.
hamidouk
parents: 295
diff changeset
   257
      background:url('imgs/arrow.png') no-repeat scroll 0 0 transparent ;
d2005f747d5a added a new widget, the arrowWidget.
hamidouk
parents: 295
diff changeset
   258
      height:16px;
d2005f747d5a added a new widget, the arrowWidget.
hamidouk
parents: 295
diff changeset
   259
      width:27px;
377
2dc60fa78c41 the arrow looks more like it should be. there's still a border problem though.
hamidouk
parents: 375
diff changeset
   260
      margin-bottom: -3px;
2dc60fa78c41 the arrow looks more like it should be. there's still a border problem though.
hamidouk
parents: 375
diff changeset
   261
      z-index: 4;
314
da3eafabe9ce added default positioning for arrow widget.
hamidouk
parents: 311
diff changeset
   262
      left: 0%;
299
d2005f747d5a added a new widget, the arrowWidget.
hamidouk
parents: 295
diff changeset
   263
    }
d2005f747d5a added a new widget, the arrowWidget.
hamidouk
parents: 295
diff changeset
   264
 
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   265
    .cleaner {
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   266
      clear:both;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   267
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   268
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   269
    .share {
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   270
      background:url('imgs/widget20.png') no-repeat scroll 0 0 transparent ;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   271
      display:block;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   272
      height:16px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   273
      line-height:16px !important;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   274
      overflow:hidden;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   275
      width:16px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   276
      float:left;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   277
      cursor:pointer;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   278
      margin:2px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   279
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   280
    .shareFacebook{
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   281
      background-position:0 -704px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   282
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   283
    .shareMySpace{
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   284
      background-position:0 -736px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   285
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   286
    .shareTwitter{
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   287
      background-position:0 -1072px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   288
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   289
    .shareGoogle{
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   290
      background-position:0 -752px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   291
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   292
    .shareDelicious{
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   293
      background-position:0 -672px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   294
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   295
    .shareJamesPot{
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   296
      background-position:0 -1808px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   297
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   298
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   299
    .tip{
477
1e51d638e7ea fixes in a rush.
hamidouk
parents: 473
diff changeset
   300
    /* why not absolute instead of fixed ? because the div containing the tooltip widget is not a subdiv of its parent
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   301
                           widget */
477
1e51d638e7ea fixes in a rush.
hamidouk
parents: 473
diff changeset
   302
      /*position : fixed;  */
486
b1191f621343 changed positioning for tooltip.
hamidouk
parents: 484
diff changeset
   303
      position:fixed;
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   304
      padding : 3px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   305
      z-index: 10000000000;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   306
      max-width: 200px;
396
8191e4f07125 added a ressource which was grabbed from the internet previously.
hamidouk
parents: 386
diff changeset
   307
      background: transparent url("imgs/white_arrow_long.png");
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   308
      font-size: 12px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   309
      height: 125px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   310
      width: 180px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   311
      padding: 10px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   312
      padding-left: 15px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   313
      padding-top: 15px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   314
      padding-right: 15px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   315
      color: black;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   316
      font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif";
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   317
      overflow:hidden;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   318
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   319
324
abe961b7f295 a slider that more or less works.
hamidouk
parents: 316
diff changeset
   320
    /* slider */
abe961b7f295 a slider that more or less works.
hamidouk
parents: 316
diff changeset
   321
    .Ldt-SliderMinimized {
abe961b7f295 a slider that more or less works.
hamidouk
parents: 316
diff changeset
   322
      height: 6px;
abe961b7f295 a slider that more or less works.
hamidouk
parents: 316
diff changeset
   323
    }
abe961b7f295 a slider that more or less works.
hamidouk
parents: 316
diff changeset
   324
abe961b7f295 a slider that more or less works.
hamidouk
parents: 316
diff changeset
   325
    .Ldt-SliderMaximized {
abe961b7f295 a slider that more or less works.
hamidouk
parents: 316
diff changeset
   326
      height: 11px;
abe961b7f295 a slider that more or less works.
hamidouk
parents: 316
diff changeset
   327
    }
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   328
324
abe961b7f295 a slider that more or less works.
hamidouk
parents: 316
diff changeset
   329
    .Ldt-sliderElementMinimized {
abe961b7f295 a slider that more or less works.
hamidouk
parents: 316
diff changeset
   330
      width: 100%;
abe961b7f295 a slider that more or less works.
hamidouk
parents: 316
diff changeset
   331
      height: 5px;
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   332
    }
324
abe961b7f295 a slider that more or less works.
hamidouk
parents: 316
diff changeset
   333
abe961b7f295 a slider that more or less works.
hamidouk
parents: 316
diff changeset
   334
    .Ldt-sliderElementMaximized {
abe961b7f295 a slider that more or less works.
hamidouk
parents: 316
diff changeset
   335
      width: 100%;
abe961b7f295 a slider that more or less works.
hamidouk
parents: 316
diff changeset
   336
      height: 10px;
abe961b7f295 a slider that more or less works.
hamidouk
parents: 316
diff changeset
   337
    }
abe961b7f295 a slider that more or less works.
hamidouk
parents: 316
diff changeset
   338
316
3b11a798f5e4 WIP - reorganizing the sliderWidget.
hamidouk
parents: 314
diff changeset
   339
    .Ldt-sliderBackground  {
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   340
      background-color: #B6B8B8;
324
abe961b7f295 a slider that more or less works.
hamidouk
parents: 316
diff changeset
   341
      position: absolute;
abe961b7f295 a slider that more or less works.
hamidouk
parents: 316
diff changeset
   342
      z-index: 2;
abe961b7f295 a slider that more or less works.
hamidouk
parents: 316
diff changeset
   343
      bottom: 1px;
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   344
      width: 100%;
316
3b11a798f5e4 WIP - reorganizing the sliderWidget.
hamidouk
parents: 314
diff changeset
   345
      height: 5px;
324
abe961b7f295 a slider that more or less works.
hamidouk
parents: 316
diff changeset
   346
 
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   347
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   348
316
3b11a798f5e4 WIP - reorganizing the sliderWidget.
hamidouk
parents: 314
diff changeset
   349
    .Ldt-sliderForeground  {
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   350
      background-color: #747474;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   351
      z-index: 2;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   352
      width: 0px;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   353
      position: absolute;
324
abe961b7f295 a slider that more or less works.
hamidouk
parents: 316
diff changeset
   354
      bottom: 1px;
abe961b7f295 a slider that more or less works.
hamidouk
parents: 316
diff changeset
   355
      height: 5px;
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   356
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   357
316
3b11a798f5e4 WIP - reorganizing the sliderWidget.
hamidouk
parents: 314
diff changeset
   358
    .Ldt-sliderPositionMarker {
3b11a798f5e4 WIP - reorganizing the sliderWidget.
hamidouk
parents: 314
diff changeset
   359
      position: absolute;
3b11a798f5e4 WIP - reorganizing the sliderWidget.
hamidouk
parents: 314
diff changeset
   360
      z-index: 100;
469
154c049e0c06 made slider look like samuel's crea.
hamidouk
parents: 450
diff changeset
   361
      background-color: #f7268e;
316
3b11a798f5e4 WIP - reorganizing the sliderWidget.
hamidouk
parents: 314
diff changeset
   362
      height: 5px;
3b11a798f5e4 WIP - reorganizing the sliderWidget.
hamidouk
parents: 314
diff changeset
   363
      width: 5px;
324
abe961b7f295 a slider that more or less works.
hamidouk
parents: 316
diff changeset
   364
      bottom: 1px;
469
154c049e0c06 made slider look like samuel's crea.
hamidouk
parents: 450
diff changeset
   365
      border-left: 1px solid white;
154c049e0c06 made slider look like samuel's crea.
hamidouk
parents: 450
diff changeset
   366
      border-right: 1px solid white;
316
3b11a798f5e4 WIP - reorganizing the sliderWidget.
hamidouk
parents: 314
diff changeset
   367
    }
3b11a798f5e4 WIP - reorganizing the sliderWidget.
hamidouk
parents: 314
diff changeset
   368
307
db5ecd5bbcf2 style changes for the annotationsWidget.
hamidouk
parents: 306
diff changeset
   369
    /* tweet Widget */
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   370
    .Ldt-tweetWidget {
439
1c1eebd0d080 fixed font for tweet widget.
hamidouk
parents: 438
diff changeset
   371
      font-size: 12px;
1c1eebd0d080 fixed font for tweet widget.
hamidouk
parents: 438
diff changeset
   372
      font-family: "Arial",  "Verdana", "sans-serif";
306
38a494e0424e added a wire pattern to the tweetWidget.
hamidouk
parents: 305
diff changeset
   373
      background:url('imgs/wire_pattern.png') repeat scroll transparent ;
438
7c86ac92133f added a double border around the tweetWidget, and fixed a couple of
hamidouk
parents: 436
diff changeset
   374
      border: 1px solid #b6b8b8;
7c86ac92133f added a double border around the tweetWidget, and fixed a couple of
hamidouk
parents: 436
diff changeset
   375
      border-top: none;
7c86ac92133f added a double border around the tweetWidget, and fixed a couple of
hamidouk
parents: 436
diff changeset
   376
      overflow: auto;
7c86ac92133f added a double border around the tweetWidget, and fixed a couple of
hamidouk
parents: 436
diff changeset
   377
    }
7c86ac92133f added a double border around the tweetWidget, and fixed a couple of
hamidouk
parents: 436
diff changeset
   378
7c86ac92133f added a double border around the tweetWidget, and fixed a couple of
hamidouk
parents: 436
diff changeset
   379
    .Ldt-tweet-DoubleBorder {
7c86ac92133f added a double border around the tweetWidget, and fixed a couple of
hamidouk
parents: 436
diff changeset
   380
      border: 1px solid white;
7c86ac92133f added a double border around the tweetWidget, and fixed a couple of
hamidouk
parents: 436
diff changeset
   381
      padding: 5px;
7c86ac92133f added a double border around the tweetWidget, and fixed a couple of
hamidouk
parents: 436
diff changeset
   382
      overflow: auto;
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   383
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   384
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   385
    .Ldt-tweetAvatar {
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   386
      float: left;
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   387
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   388
366
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   389
    .Ldt-tweetAvatar-profileArrow {
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   390
      float: left;
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   391
      height: 48px;
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   392
      margin-left: 5px;
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   393
      margin-right: 5px;
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   394
    }
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   395
367
277a9f5f342c more graphical integration for the tweetsWidget.
hamidouk
parents: 366
diff changeset
   396
    .Ldt-tweet_userHandle {
277a9f5f342c more graphical integration for the tweetsWidget.
hamidouk
parents: 366
diff changeset
   397
       float: left;
371
3da43513e638 segmentswidget hotfix to follow samuel's specs.
hamidouk
parents: 367
diff changeset
   398
       color: #5c8df1;
367
277a9f5f342c more graphical integration for the tweetsWidget.
hamidouk
parents: 366
diff changeset
   399
    }
277a9f5f342c more graphical integration for the tweetsWidget.
hamidouk
parents: 366
diff changeset
   400
277a9f5f342c more graphical integration for the tweetsWidget.
hamidouk
parents: 366
diff changeset
   401
    .Ldt-tweet_realName {
277a9f5f342c more graphical integration for the tweetsWidget.
hamidouk
parents: 366
diff changeset
   402
      float: left;
277a9f5f342c more graphical integration for the tweetsWidget.
hamidouk
parents: 366
diff changeset
   403
      margin-left: 3px;
277a9f5f342c more graphical integration for the tweetsWidget.
hamidouk
parents: 366
diff changeset
   404
    }
366
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   405
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   406
    .Ldt-tweetContents {
366
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   407
    }
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   408
366
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   409
    .Ldt-tweet_date {
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   410
      float: left;
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   411
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   412
378
110311d59b2f implemented a second button to keep the tweetWidget open.
hamidouk
parents: 377
diff changeset
   413
    .Ldt-tweetWidgetKeepOpen {
110311d59b2f implemented a second button to keep the tweetWidget open.
hamidouk
parents: 377
diff changeset
   414
      position: relative;
110311d59b2f implemented a second button to keep the tweetWidget open.
hamidouk
parents: 377
diff changeset
   415
      float: right;
110311d59b2f implemented a second button to keep the tweetWidget open.
hamidouk
parents: 377
diff changeset
   416
      height: 17px;
110311d59b2f implemented a second button to keep the tweetWidget open.
hamidouk
parents: 377
diff changeset
   417
      width: 17px;
110311d59b2f implemented a second button to keep the tweetWidget open.
hamidouk
parents: 377
diff changeset
   418
      margin-right: 1px;
110311d59b2f implemented a second button to keep the tweetWidget open.
hamidouk
parents: 377
diff changeset
   419
    }
110311d59b2f implemented a second button to keep the tweetWidget open.
hamidouk
parents: 377
diff changeset
   420
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   421
    .Ldt-tweetWidgetMinimize {
360
326fd52d95bb minimize button is now positionned correctly.
hamidouk
parents: 348
diff changeset
   422
      position: relative;
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   423
      float: right;
360
326fd52d95bb minimize button is now positionned correctly.
hamidouk
parents: 348
diff changeset
   424
      height: 17px;
326fd52d95bb minimize button is now positionned correctly.
hamidouk
parents: 348
diff changeset
   425
      width: 17px;
326fd52d95bb minimize button is now positionned correctly.
hamidouk
parents: 348
diff changeset
   426
      right: 9px;
326fd52d95bb minimize button is now positionned correctly.
hamidouk
parents: 348
diff changeset
   427
    }
326fd52d95bb minimize button is now positionned correctly.
hamidouk
parents: 348
diff changeset
   428
326fd52d95bb minimize button is now positionned correctly.
hamidouk
parents: 348
diff changeset
   429
    .Ldt-tweetWidget * a:link {
326fd52d95bb minimize button is now positionned correctly.
hamidouk
parents: 348
diff changeset
   430
      color: #729efa;
326fd52d95bb minimize button is now positionned correctly.
hamidouk
parents: 348
diff changeset
   431
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   432
    }
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   433
366
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   434
    .Ldt-TweetReply {
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   435
      float: left;
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   436
      margin-left: 16px;
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   437
    }
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   438
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   439
    .Ldt-TweetReplyIcon {
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   440
      background:url('imgs/reply_sprite.png') no-repeat scroll 0 0 transparent ;
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   441
      width: 14px;
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   442
      height: 11px;
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   443
      float: left;
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   444
      margin-top: 2px;
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   445
    }
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   446
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   447
    .Ldt-TweetReplyIcon:hover {
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   448
      background-position: 0 -11px;
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   449
    }
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   450
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   451
    .Ldt-TweetReplyIcon:active {
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   452
      background-position: 0 -22px;
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   453
    }
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   454
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   455
    .Ldt-Retweet {
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   456
      float: left;
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   457
      margin-left: 16px;
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   458
    }
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   459
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   460
    .Ldt-RetweetIcon {
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   461
      background:url('imgs/retweet_sprite.png') no-repeat scroll 0 0 transparent ;
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   462
      width: 14px;
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   463
      height: 8px;
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   464
      float: left;
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   465
      margin-top: 3px;
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   466
    }
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   467
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   468
    .Ldt-RetweetIcon:hover {
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   469
      background-position: 0 -8px;
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   470
    }
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   471
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   472
    .Ldt-RetweetIcon:active {
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   473
      background-position: 0 -16px;
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   474
    }
82363c149ee8 added styling for the arrow and the retweet and reply buttons.
hamidouk
parents: 360
diff changeset
   475
375
8c41db3813e0 implemented highlighting for polemic tweet syntax.
hamidouk
parents: 373
diff changeset
   476
    /* styling of a "++" in a tweet */
8c41db3813e0 implemented highlighting for polemic tweet syntax.
hamidouk
parents: 373
diff changeset
   477
    .Ldt-PolemicPlusPlus {
8c41db3813e0 implemented highlighting for polemic tweet syntax.
hamidouk
parents: 373
diff changeset
   478
      background-color: #1d973d;
8c41db3813e0 implemented highlighting for polemic tweet syntax.
hamidouk
parents: 373
diff changeset
   479
    }
8c41db3813e0 implemented highlighting for polemic tweet syntax.
hamidouk
parents: 373
diff changeset
   480
8c41db3813e0 implemented highlighting for polemic tweet syntax.
hamidouk
parents: 373
diff changeset
   481
    /* styling of a "==" in a tweet */
8c41db3813e0 implemented highlighting for polemic tweet syntax.
hamidouk
parents: 373
diff changeset
   482
    .Ldt-PolemicEqualEqual {
8c41db3813e0 implemented highlighting for polemic tweet syntax.
hamidouk
parents: 373
diff changeset
   483
      background-color: #5c8df1
8c41db3813e0 implemented highlighting for polemic tweet syntax.
hamidouk
parents: 373
diff changeset
   484
    }
8c41db3813e0 implemented highlighting for polemic tweet syntax.
hamidouk
parents: 373
diff changeset
   485
8c41db3813e0 implemented highlighting for polemic tweet syntax.
hamidouk
parents: 373
diff changeset
   486
    /* styling of a "--" in a tweet */
8c41db3813e0 implemented highlighting for polemic tweet syntax.
hamidouk
parents: 373
diff changeset
   487
    .Ldt-PolemicMinusMinus {
8c41db3813e0 implemented highlighting for polemic tweet syntax.
hamidouk
parents: 373
diff changeset
   488
      background-color: #ce0a15;
8c41db3813e0 implemented highlighting for polemic tweet syntax.
hamidouk
parents: 373
diff changeset
   489
    }
8c41db3813e0 implemented highlighting for polemic tweet syntax.
hamidouk
parents: 373
diff changeset
   490
8c41db3813e0 implemented highlighting for polemic tweet syntax.
hamidouk
parents: 373
diff changeset
   491
    /* styling of a "??" in a tweet */
8c41db3813e0 implemented highlighting for polemic tweet syntax.
hamidouk
parents: 373
diff changeset
   492
    .Ldt-PolemicQuestion {
8c41db3813e0 implemented highlighting for polemic tweet syntax.
hamidouk
parents: 373
diff changeset
   493
      background-color: #c5a62d;
8c41db3813e0 implemented highlighting for polemic tweet syntax.
hamidouk
parents: 373
diff changeset
   494
    }
8c41db3813e0 implemented highlighting for polemic tweet syntax.
hamidouk
parents: 373
diff changeset
   495
290
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   496
    /* the styling of a spacer div */
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   497
    .Ldt-spacer {
1fd46a87bbc1 added a css class for spacers. Fixed line endings too.
hamidouk
parents: 278
diff changeset
   498
      background-color:#eeeeee;
299
d2005f747d5a added a new widget, the arrowWidget.
hamidouk
parents: 295
diff changeset
   499
    }
523
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   500
    
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   501
    /* sparkline widget */
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   502
    .Ldt-sparklineWidget {
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   503
      position: relative;
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   504
    }
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   505
    
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   506
    .Ldt-sparkLinePositionMarker {
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   507
      position: absolute;
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   508
      top: 0px;
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   509
      width: 0px;
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   510
      background-color: #333333;
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   511
      border-right: solid 1px pink;
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   512
      z-index: 3;
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   513
      opacity: 0.2;
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   514
    }
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   515
    
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   516
    .Ldt-sparkLine {
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   517
      position: absolute;
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   518
      top: 0px;
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   519
    }
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   520
    
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   521
    .Ldt-sparkLineClickOverlay {
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   522
      position: absolute;
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   523
      width: 640px;
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   524
      height: 60px;
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   525
      z-index: 4;
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   526
      top: 0px;
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   527
      opacity: 0.3;
8dfeaec4724b first version of the sparkline widget.
hamidouk
parents: 515
diff changeset
   528
    }