Skip to content

Commit 4115dc4

Browse files
author
Matthias ETIENNE
committed
maj
1 parent 3b863c8 commit 4115dc4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+1676
-445
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
composer.phar
22
vendor/
3-
3+
.idea
44
# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
55
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
66
# composer.lock

assets/css/theme.css

Lines changed: 183 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,183 @@
1+
2+
.limedocs-highlighter {
3+
font-family: limedocs-highlighter.font-family;
4+
font-size: 0.78em;
5+
line-height: 1.6;
6+
display: block;
7+
position: relative;
8+
background-color: limedocs-highlighter.background;
9+
color: limedocs-highlighter.color;
10+
zoom: 1;
11+
}
12+
13+
.limedocs-highlighter-table {
14+
border: 0;
15+
border-collapse: collapse;
16+
border-spacing: 0;
17+
width: 100%;
18+
font-size: inherit;
19+
color: inherit;
20+
line-height: inherit;
21+
}
22+
23+
.limedocs-highlighter-table-gutter,
24+
.limedocs-highlighter-table-content {
25+
position: relative;
26+
color: inherit;
27+
line-height: inherit;
28+
}
29+
30+
.limedocs-highlighter-table-content {
31+
overflow-x: auto;
32+
overflow-y: visible;
33+
max-height: none;
34+
35+
}
36+
37+
.limedocs-highlighter-table-gutter {
38+
width: 30px;
39+
background: limedocs-highlighter-gutter.background;
40+
padding-bottom: 13px;
41+
42+
}
43+
44+
.limedocs-line-num {
45+
display: block;
46+
text-align: right;
47+
padding-right: 2px;
48+
font-size: 100%;
49+
width: 100%;
50+
}
51+
52+
.limedocs-line-num a, .limedocs-line-num a:visited {
53+
text-decoration: none;
54+
display: inline-block;
55+
text-align: right;
56+
color: inherit;
57+
line-height: inherit;
58+
}
59+
60+
.limedocs-line-num a:hover {
61+
text-decoration: underline;
62+
}
63+
64+
.limedocs-highlighter > div {
65+
box-sizing: border-box;
66+
}
67+
68+
.limedocs-highlighter-editor,
69+
.limedocs-highlighter-lines-layer {
70+
position: absolute;
71+
top: 0;
72+
right: 0;
73+
bottom: 0;
74+
left: 0;
75+
z-index: 1001;
76+
padding: 4px 8px;
77+
color:inherit;
78+
}
79+
80+
/*
81+
.limedocs-highlighter-editor
82+
{
83+
overflow-x: auto;
84+
overflow-y: hidden;
85+
}*/
86+
87+
.limedocs-highlighter-lines-layer {
88+
background-color: transparent;
89+
padding: 4px 0;
90+
z-index: 1000;
91+
}
92+
93+
.limedocs-line-layer {
94+
display: block;
95+
}
96+
97+
.limedocs-line-layer:after {
98+
content: "\00a0";
99+
}
100+
101+
.limedocs-line-layer-highlighted {
102+
background: limedocs-line-layer-highlighted.background;
103+
}
104+
105+
.limedocs-highlighter-gutter {
106+
background: limedocs-highlighter-gutter.background;
107+
color:limedocs-highlighter-gutter.color;
108+
z-index: 1001;
109+
padding: 4px 8px;
110+
width: 30px;
111+
}
112+
113+
.limedocs-generic-new-line {
114+
content: "\A";
115+
white-space: pre;
116+
}
117+
118+
119+
.limedocs-highlighter .limedocs-generic-new-line:last-child:after {
120+
content: " ";
121+
}
122+
123+
.limedocs-highlighter-editor a, .limedocs-highlighter-editor a:visited {
124+
color: inherit;
125+
text-decoration: none;
126+
border-bottom: 1px solid transparent;
127+
}
128+
129+
.limedocs-highlighter-editor a:hover {
130+
border-bottom: 1px solid;
131+
}
132+
133+
.limedocs-line-layer:nth-child(even) {
134+
135+
}
136+
137+
138+
.limedocs-generic-whitespace {
139+
white-space: pre;
140+
}
141+
142+
.limedocs-generic-predefined-constant {
143+
color:limedocs-generic-predefined-constant.color;
144+
}
145+
146+
.limedocs-generic-keyword {
147+
font-weight: limedocs-generic-keyword.font-weight;
148+
color: limedocs-generic-keyword.color;
149+
}
150+
151+
.limedocs-generic-variable {
152+
color: limedocs-generic-variable.color
153+
}
154+
155+
.limedocs-generic-language-string {
156+
color: limedocs-generic-language-string.color
157+
}
158+
159+
.limedocs-generic-function {
160+
color: limedocs-generic-function.color
161+
}
162+
163+
.limedocs-generic-heredoc {
164+
white-space: pre;
165+
color:limedocs-generic-heredoc.color
166+
}
167+
168+
.limedocs-generic-quoted-string {
169+
color:limedocs-generic-quoted-string.color;
170+
}
171+
172+
.limedocs-generic-comment {
173+
color: limedocs-generic-comment.color;
174+
white-space: pre;
175+
}
176+
177+
.limedocs-generic-class {
178+
color: limedocs-generic-class.color;
179+
}
180+
181+
.limedocs-generic-namespace {
182+
color: limedocs-generic-namespace.color;
183+
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
],
2121
"require": {
2222
"rodneyrehm/plist": "~2.0",
23-
"symfony/event-dispatcher": "~2.6"
23+
"symfony/event-dispatcher": "~2.6",
24+
"symfony/dependency-injection": "~2.6"
2425
},
2526
"autoload": {
2627
"psr-4": {

composer.lock

Lines changed: 58 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)