Sampler Source Code?

Hi, I’m trying to understand the Drag n’ Drop from a Desktop (http://demo.vaadin.com/sampler/#ui/drag-drop/drag-from-desktop).

The code available in the sampler is partial, and I’ve searched everywhere for the code. I can find the V6 code, but it is different. Specifically, I would like to view the dragndropexample.css file and see the code where the label text is applied.

Can you point me in the right direction?

Thanks
-Dustin

Sorry for the Sampler source code not being available at the moment and some of the examples being incomplete. Here is the CSS file in question:


.dropdisplaywindow img{
        max-height: 300px;
        max-width: 500px;
}

.dropdisplaywindow .v-label{
        max-width: 500px;
        white-space: normal;
}

.drop-area {
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
        
        padding: 40px;
        border: 8px dashed #a4a4a2;
}

.drop-area .v-label {
        color: #919083;
        font-weight: bold;
        font-size: 17px;
}

Crikey that was fast.

Thanks, this helps.