Start of implementation of Import and Export using LDIF
This commit is contained in:
28
public/css/fixes.css
vendored
28
public/css/fixes.css
vendored
@@ -240,4 +240,32 @@ p {
|
||||
/** Force our validation color to have a higher priority than any specified border **/
|
||||
.was-validated .form-control:invalid, .form-control.is-invalid {
|
||||
border-color: #d92550 !important;
|
||||
}
|
||||
|
||||
.text-monospace {
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
pre {
|
||||
padding:5px;
|
||||
white-space: -moz-pre-wrap; /* Mozilla, supported since 1999 */
|
||||
white-space: -pre-wrap; /* Opera */
|
||||
white-space: -o-pre-wrap; /* Opera */
|
||||
white-space: pre-wrap; /* CSS3 – Text module (Candidate Recommendation) http://www.w3.org/TR/css3-text/#white-space */
|
||||
word-wrap: break-word; /* IE 5.5+ */
|
||||
}
|
||||
pre code {
|
||||
counter-reset: line-numbering;
|
||||
}
|
||||
|
||||
pre code .line::before {
|
||||
content: counter(line-numbering);
|
||||
counter-increment: line-numbering;
|
||||
padding-right: .8em; /* space after numbers */
|
||||
margin-right: 1em;
|
||||
width: 4em;
|
||||
text-align: right;
|
||||
opacity: 0.5;
|
||||
display: inline-block;
|
||||
border-right: 1px solid rgba(0, 0, 0, .5);
|
||||
}
|
Reference in New Issue
Block a user