Ignore:
Timestamp:
12/07/11 14:36:09 (13 years ago)
Author:
fpvanagthoven
Message:
  • returnQuestionDisplay.php is vergelijkbaar met returnStep.php. Stuur "uids=blablablabla" erheen en je krijgt de HTML markup voor de question display terug als plain text. Deze gaat worden gebruikt in de surveyEditor, zelfde principe als pipelineSequencer/returnStep.php
  • Nieuwe icons, alpha channel. Betere styling mee mogelijk, formaat/cropping is nog wel een beetje weird.
  • surveyEditorWidget.php is de survey versie van pipelineSequencer.php. (Ook hier weer een consistent naming scheme toepassen? Als in: pipelineEditor->pipelineEditorWidget, surveyEditor->surveyEditorWidget, etc...?
  • layout van pipelineEditor.php klopt nu weer en werkt nu helemaal op de nieuwe stylesheet, visualeditors.css. Logo, header en navbar stuff moet nog wel gemaakt worden.
  • surveyEditorScripts.js: scripts voor, verrassing, surveyEditor.php. loadSurvey werkt, drawQuestions ook bijna. BELANGRIJK! Deze editor werkt met global variables ipv de hidden fields die in pipelineSequencer.php gebruikt worden. Om conflicten te voorkomen wordt alles opgeslagen in een object literal "surveyEditor".
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Dev/trunk/css/visualeditors.css

    r177 r178  
    3434    padding: 2em 0;
    3535}
    36 
    37 #surveyEditor {
    38     background-color: #0000FF;
    39 }
    40 
    41 
    42 
    43 
    44 
    45 
    46 
    47 
    4836
    4937
     
    202190    margin: 0.25em;
    203191    border: 1px solid #555;
    204     border-radius: 0.5em;
    205     -moz-border-radius: 0.5em;
     192    border-radius: 0.25em;
     193    -moz-border-radius: 0.25em;
    206194    background-color: transparent;
    207195}
     
    286274}
    287275
    288 .displayStep.selected {
    289     -moz-box-shadow: 0 0 50px #FFF;
     276.displayStep.selected .displayStepIcon{
     277    background-color: #bbbbbb;
     278    /*-moz-box-shadow: 0 0 50px #FFF;
    290279    -webkit-box-shadow: 0 0 50px #FFF;
    291     box-shadow: 0 0 50px #FFF;
     280    box-shadow: 0 0 50px #FFF;*/
     281    border-color: #1c94c4;
    292282
    293283}
     
    296286    width: 50px;
    297287    height: 50px;
    298     border: 2px solid #444444;
     288    border: 2px solid #555;
    299289    color: #FFF;
    300290}
     
    321311}
    322312
     313#infoPanel {
     314    margin-top: 2em;
     315    margin-left: 2em;
     316    clear: right;
     317}
     318
     319#infoPanel .content {
     320    clear: both;
     321    min-height: 10em;
     322    width: 30em;
     323}
     324
     325.content .property {
     326    float: left;
     327    clear: left;
     328    font-weight: bold;
     329    width: 8em;
     330    color: #FFF;
     331}
     332
     333.content .value {
     334    float: left;
     335}
     336
     337/**************************/
     338/* Survey Editor Specific */
     339/**************************/
     340
     341
     342#surveyEditor {
     343    background-color: #0000FF;
     344}
Note: See TracChangeset for help on using the changeset viewer.