launcher/src/main/resources/org/apidesign/bck2brwsr/dew/css/app.css
author phrebejk
Tue, 22 Jan 2013 19:48:10 +0100
branchdew
changeset 542 7400dc9f48fb
parent 541 927a5f9fa430
permissions -rw-r--r--
Error badges + auto reload.
     1 /* app css stylesheet */
     2 .code-editor, .mono-font, .CodeMirror {
     3     font-family: "Inconsolata","Monaco","Consolas","Andale Mono","Bitstream Vera Sans Mono","Courier New",Courier,monospace;
     4     font-size: 13px;
     5     line-height: 15px;
     6 }
     7 
     8 .CodeMirror {                    
     9     border: 1px solid #d9edf7;      
    10     height: 300px;
    11 }
    12       
    13 .CodeMirror-scroll {
    14     overflow-y: auto;
    15     overflow-x: auto;
    16 }
    17 
    18 .error-hover:hover {
    19     text-decoration: underline;
    20     cursor: pointer;
    21 } 
    22 
    23 .ic-html5 {
    24   display: inline-block;  
    25   height: 20px;
    26   width: 20px;
    27   vertical-align: text-bottom;
    28   background-repeat: no-repeat;  
    29   background-image: url("../img/html5.png");  
    30 }
    31 
    32 .ic-java {
    33   display: inline-block;  
    34   height: 20px;
    35   width: 20px;
    36   vertical-align: text-bottom;
    37   background-repeat: no-repeat;  
    38   background-image: url("../img/java.png"); 
    39  
    40 }
    41 
    42 .issues {    
    43     width: 16px;
    44 }
    45 
    46 .issue { 
    47     height: 16px;
    48     width: 16px;
    49     vertical-align: middle;
    50     background-repeat: no-repeat;  
    51     background-image: url("../img/error.png"); 
    52     /* color: #822; */
    53 }
    54