~didrocks/+junk/face-detection-15.04

« back to all changes in this revision

Viewing changes to facedetection/www/bower_components/prism/plugins/command-line/prism-command-line.css

  • Committer: Didier Roche
  • Date: 2016-05-10 23:09:11 UTC
  • Revision ID: didier.roche@canonical.com-20160510230911-c7xr490zrj3yrzxd
New version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.command-line-prompt {
 
2
        border-right: 1px solid #999;
 
3
        display: block;
 
4
        float: left;
 
5
        font-size: 100%;
 
6
        letter-spacing: -1px;
 
7
        margin-right: 1em;
 
8
        pointer-events: none;
 
9
 
 
10
        -webkit-user-select: none;
 
11
        -moz-user-select: none;
 
12
        -ms-user-select: none;
 
13
        user-select: none;
 
14
}
 
15
 
 
16
.command-line-prompt > span:before {
 
17
        color: #999;
 
18
        content: ' ';
 
19
        display: block;
 
20
        padding-right: 0.8em;
 
21
}
 
22
 
 
23
.command-line-prompt > span[data-user]:before {
 
24
        content: "[" attr(data-user) "@" attr(data-host) "] $";
 
25
}
 
26
 
 
27
.command-line-prompt > span[data-user="root"]:before {
 
28
        content: "[" attr(data-user) "@" attr(data-host) "] #";
 
29
}
 
30
 
 
31
.command-line-prompt > span[data-prompt]:before {
 
32
        content: attr(data-prompt);
 
33
}