File: edit.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 (51 lines) | stat: -rw-r--r-- 950 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
.dirty-indicator{
    .fa();
    width:20px;
}
.dirty-indicator-dirty{
    .dirty-indicator();
}

.dirty-indicator-clean{
    .dirty-indicator();
    &:before{
        .icon(@fa-var-check);
    }
}

#filename {
    font-size: 16pt;
    display: table;
    padding: 0px 5px;
}

#current-mode{
    padding-left: 5px;
    padding-right: 5px;
}

#texteditor-backdrop {
    padding-top: @page-header-padding;
    padding-bottom: @page-header-padding;
    
    @media not print{
        background-color: @page-backdrop-color;
    }

    #texteditor-container {
        .CodeMirror-gutter, .CodeMirror-gutters {
            @media print {
                background-color: @body-bg;
            }
            @media not print {
                background-color: @page-color;
            }
        }

        @media not print{
            padding: 0px;
            background-color :  @page-color;
            .box-shadow(@global-shadow);
        }
    }
}