mirror of
https://github.com/Karaka-Management/cssOMS.git
synced 2026-01-11 19:18:40 +00:00
Fixed default pre
This commit is contained in:
parent
956fece5a7
commit
a071b1755b
46
default.css
Normal file
46
default.css
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
/* Global */
|
||||
/* Content Container */
|
||||
/* Content box */
|
||||
/* Navigation */
|
||||
/* Colors */
|
||||
body {
|
||||
background: #e7ebf3;
|
||||
font-family: Open Sans, sans-serif;
|
||||
font-size: 0.9em; }
|
||||
|
||||
.clear {
|
||||
clear: both; }
|
||||
|
||||
pre {
|
||||
background: #fff;
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
-ms-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
background-clip: padding-box;
|
||||
border: 1px solid #b7b7b7;
|
||||
padding: 5px;
|
||||
overflow-x: scroll;
|
||||
counter-reset: line;
|
||||
width: 100%;
|
||||
box-sizing: border-box; }
|
||||
pre span {
|
||||
display: block; }
|
||||
pre span:before {
|
||||
counter-increment: line;
|
||||
content: counter(line);
|
||||
display: inline-block;
|
||||
border-right: 1px solid #ddd;
|
||||
padding: 0 .5em;
|
||||
margin-right: .5em;
|
||||
color: #888;
|
||||
width: 30px; }
|
||||
|
||||
article {
|
||||
background: #fff;
|
||||
padding: 5px;
|
||||
margin: 0; }
|
||||
article p {
|
||||
line-height: 1.5em; }
|
||||
|
||||
/*# sourceMappingURL=default.css.map */
|
||||
|
|
@ -17,6 +17,8 @@ pre {
|
|||
padding: 5px;
|
||||
overflow-x: scroll;
|
||||
counter-reset: line;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
|
||||
span {
|
||||
display: block;
|
||||
|
|
|
|||
10
styles.css
10
styles.css
|
|
@ -63,7 +63,9 @@ pre {
|
|||
border: 1px solid #b7b7b7;
|
||||
padding: 5px;
|
||||
overflow-x: scroll;
|
||||
counter-reset: line; }
|
||||
counter-reset: line;
|
||||
width: 100%;
|
||||
box-sizing: border-box; }
|
||||
pre span {
|
||||
display: block; }
|
||||
pre span:before {
|
||||
|
|
@ -3701,11 +3703,9 @@ input:invalid {
|
|||
transition: all 0.5s;
|
||||
border: 1px solid #b85450; }
|
||||
|
||||
.textarea {
|
||||
overflow: auto;
|
||||
resize: both; }
|
||||
|
||||
textarea, .textarea {
|
||||
overflow: auto;
|
||||
resize: both;
|
||||
min-height: 100px;
|
||||
-moz-box-sizing: border-box;
|
||||
-webkit-box-sizing: border-box;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user