Skip to content
Snippets Groups Projects
Select Git revision
  • 0ab51037ae6e15ca621972438d85b661652b0335
  • master default protected
  • typos
  • development protected
  • ReadMe_Typos
  • example
  • feat/autocomplete-vscode
  • v3.3
  • v3.2
  • v3.1
  • v3.0
  • v2.2
  • v2.1
  • v2.0
  • old-example
  • v1.5
  • v1.4
  • v1.3
  • v1.0
  • v1.1
  • v1.2
21 results

test.tex

Blame
  • events.less 1.30 KiB
    .severitycolor(@bg, @txt) {
        border-color: @bg;
        span {
            color: @txt;
            background-color: @bg; }
        i {
            color: @bg;
        }
    }
    
    .event.severity-debug    { .severitycolor(@nice-silver, black); }
    .event.severity-info     { .severitycolor(@nice-teal, black); }
    .event.severity-success  { .severitycolor(@nice-olive, black); }
    .event.severity-warning  { .severitycolor(@nice-orange, black); }
    .event.severity-critical { .severitycolor(@nice-maroon, white); }
    
    .event {
        position: relative;
        border-width: 2px;
        border-radius: 3px;
        border-style: solid;
    
        padding: 15px 15px 25px 15px;
        margin-bottom: 25px;
    
        .message, .message > pre {
            white-space: pre-wrap;
        }
    
        .corner-tag() {
            position: absolute;
            padding: 0px 3px;
            font-size: 0.9em;
        }
    
        span.tag {
            .corner-tag();
            border-bottom-left-radius: 2px;
            top: 0px;
            right: 0px;
        }
    
        span.minion-id {
            .corner-tag();
            border-top-left-radius: 2px;
            bottom: 0px;
            right: 0px;
        }
    
        span.timestamp {
            .corner-tag();
            border-top-right-radius: 2px;
            bottom: 0px;
            left: 0px;
        }
    
        p.title {
            font-weight: bold;
            font-size: 1.3em;
        }
    }
    
    #event-template, #job-template {
        display: none;
    }