We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7dc96a commit 29e8c95Copy full SHA for 29e8c95
highlight-line.js
@@ -1,3 +1,4 @@
1
+require("./highlight-line.less");
2
var $ = require("jquery");
3
4
var getLines = function(lineString) {
highlight-line.less
@@ -0,0 +1,23 @@
+article {
+ code {
+ .expand {
+ background-color: #eee;
5
+ text-align: center;
6
+ padding: 4px 0px;
7
+ border-top: 1px solid #ccc;
8
+ border-bottom: 1px solid #ccc;
9
+ color: black;
10
+ }
11
+ .expand:before {
12
+ content: '⇅ EXPAND ⇅';
13
+ display: block;
14
+ width: 15px;
15
+ height: 15px;
16
+ margin: 0 auto;
17
18
+ .expand:hover{
19
+ opacity: .6;
20
+ cursor: pointer;
21
22
23
+}
0 commit comments