PluginProbe
GetResponse Forms by Optin Cat / 1.3.5
GetResponse Forms by Optin Cat v1.3.5
1.3.4 1.3.5 1.3.6 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 1.5.2 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.6.1 1.6.2 1.6.3 1.7.0 1.7.1 1.7.2 1.8.0 1.8.1 2.0.0 All 36 releases
getresponse / includes / classes / scssphp / tests / inputs / comments.scss

comments.scss in GetResponse Forms by Optin Cat 1.3.5, at includes/classes/scssphp/tests/inputs/comments.scss

45 lines 763 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2 // what is going on?
3
4 /** what the heck **/
5
6 /**
7
8 Here is a block comment
9
10 **/
11
12
13 // this is a comment
14
15 // trailing backslash \
16 /*hello*/div /*yeah*/ { //surew
17 border: 1px solid red; // world
18 /* another property */
19 color: url('http://mage-page.com');
20 string: "hello /* this is not a comment */";
21 world: "// neither is this";
22 string: 'hello /* this is not a comment */' /*what if this is a comment */;
23 world: '// neither is this' // hell world;
24 ;
25 what-ever: 100px;
26 background: url(/*this is not a comment?*/); // uhh what happens here
27 }
28
29 // begin
30
31 .dummy {
32 color: blue;
33 }
34
35 /* comment 1 */
36 a {
37 /* comment 2 */
38 /* comment 3 */ color: red; /* comment 4 */
39 background-color: red; /* comment 5 */
40 /* comment 6 */
41 }
42 /* comment 7 */
43
44 // end
45