source: OpenRLabs-Git/deploy/rlabs-docker/web2py-rlabs/applications/admin/static/css/web2py-codemirror.css

main
Last change on this file was 42bd667, checked in by David Fuertes <dfuertes@…>, 4 years ago

Historial Limpio

  • Property mode set to 100755
File size: 1.3 KB
Line 
1/* TODO rename this file as web2py-editor.css */
2/* Fullscreen */
3.CodeMirror-fullscreen {
4        z-index: 1030;
5}
6.CodeMirror {
7    border-top: 1px solid #ddd;
8    /*border-left: 1px solid #ddd;*/
9    border-bottom: 1px solid #ddd;
10}
11
12/* BREAKPOINTS */
13
14.breakpoints {width: .8em;}
15.breakpoint { color: #822; }
16
17/* Trailing Whitespace */
18
19.cm-trailingspace {
20        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAACCAYAAAB/qH1jAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QUXCToH00Y1UgAAACFJREFUCNdjPMDBUc/AwNDAAAFMTAwMDA0OP34wQgX/AQBYgwYEx4f9lQAAAABJRU5ErkJggg==);
21        background-position: bottom left;
22        background-repeat: repeat-x;
23}
24
25/* Close button on tab*/
26.nav-tabs li a > .close {
27    font-size: 18px;
28    padding-left: 5px;
29    float: right;
30    margin-right: -10px;
31    padding-right: 5px;
32}
33
34.nav-tabs>li>a {
35    overflow: hidden;
36    white-space: nowrap;
37    word-wrap: normal;
38    -o-text-overflow: ellipsis;
39    text-overflow: ellipsis;
40}
41
42/*.nav-tabs>li {
43    min-width: 100px;
44}*/
45
46#windows_divs > div {
47    position: fixed;
48    height: 30%;
49    left: 0;
50    background: white;
51    right: 0;
52    bottom: 41px;
53    z-index: 1030;
54    overflow: inherit;
55    border-top: 1px solid #ddd;
56}
57
58#editor_main {
59    margin-top:40px;
60    margin-bottom:40px;
61}
62
63#editform {
64    margin-bottom: 0px;
65}
66
Note: See TracBrowser for help on using the repository browser.