Skip to content

Commit

Permalink
correct submodule path, minur cleanup in css
Browse files Browse the repository at this point in the history
  • Loading branch information
SjonHortensius committed Jul 12, 2014
1 parent c0f31f2 commit 556c35e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "shjs"]
path = shjs
url = git@github.com:SjonHortensius/shjs.git
url = https://github.com/SjonHortensius/shjs.git
8 changes: 4 additions & 4 deletions example.html → index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<head>
<script src="http://ajax.googleapis.com/ajax/libs/mootools/1.4.5/mootools-yui-compressed.js"></script>

<script src="src/shjs/lang/sh_php.js"></script>
<script src="src/shjs/sh_main.min.js"></script>
<script src="shjs/lang/sh_php.js"></script>
<script src="shjs/sh_main.min.js"></script>

<script src="src/LRTEditor.js"></script>
<script src="src/LRTEditor.MinimalPlugin.js"></script>
<script src="src/LRTEditor.UndoPlugin.js"></script>

<link rel="stylesheet" href="src/style.css" />
<link rel="stylesheet" href="src/shjs/sh_style.css" />
<link rel="stylesheet" href="shjs/sh_style.css" />

<script type="text/javascript">
window.addEvent('domready', function(){
Expand Down Expand Up @@ -62,4 +62,4 @@
$form-&gt;validate( );
echo $form-&gt;render( ); // outputs the form + elements</code>
</body>
</html>
</html>
3 changes: 1 addition & 2 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,19 @@
margin: 10px;
color: #333;
counter-reset: lineno;
background: linear-gradient(to right, #f7f7f7 0%, #f7f7f7 30px, #ffffff 30px, #ffffff 100%)
}

code
{
white-space: pre;
display: block;
background: linear-gradient(to right, #f7f7f7 0%, #f7f7f7 30px, #ffffff 30px, #ffffff 100%)
}

.line
{
counter-increment: lineno;
border-left: 1px solid gray;
/* padding-left: 5px;*/
}

.line::before
Expand Down

0 comments on commit 556c35e

Please sign in to comment.