File: altuploadform.less

package info (click to toggle)
jupyter-notebook 4.2.3-4~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 7,804 kB
  • sloc: python: 8,698; makefile: 240; sh: 74
file content (28 lines) | stat: -rw-r--r-- 497 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* We need an invisible input field on top of the sentense*/
/* "Drag file onto the list ..." */

.alternate_upload {
    background-color:none;
    display: inline;

    &.form
    {
        padding: 0;
        margin:0;
    }

    input.fileinput
    {
        text-align: center;
        vertical-align: middle;
        display: inline;
        opacity: 0;
        z-index: 2;
        width: 12ex;
        margin-right: -12ex;
    }

    .btn-upload {
        height: @btn_mini_height;
    }
}