annotate static/css/code/fruity.less @ 102:f872c643b056

Updates to snippet functionality (see details) Sorry about the large commit, but it was difficult to break it up as a lot of new functionality was introduced. Most of it is specific to the snippet feature but there are some other changes as well. Commit highlights: * Added the ability to switch the syntax highlighting colour scheme when viewing a snippet. This is currently done on a per-snippet basis only, but eventually it will be possible to set a default in your profile to have all the snippets you view use that colour scheme. There are currently 8 different colour schemes, all of which were taken from the default pygments stylesheets (some were modified). * Added a "num_views" field to the Snippet model, with the field being incremented any time the snippet view is called (raw or regular view). * Created a simple "explore" view that lists the recently-posted snippets. Will implement pagination and sorting by other attributes ("popularity", for example, based on number of views) as well. * Added a post-save hook to the User model to ensure that a Profile is created for every user as soon as the User itself is created. This alleviates the need for a get_profile method that checks if the user has a profile or not and creates one if necessary. (The code is currently still there, will be cleaned up soon). * Added back the wordwrap toggling feature. Currently, if you want to enable word-wrapping, the line numbers have to be hidden in order to ensure that the lines and their numbers don't go out of sync. This will be fixed soon. * History/diff view is back * And some other minor cosmetic changes. Note: since some existing models have been changed, you'll likely need to delete the existing sqlite database before running syncdb. The alternative is to determine the necessary column changes/additions and run the SQL query yourself.
author dellsystem <ilostwaldo@gmail.com>
date Fri, 31 Aug 2012 02:53:22 -0400
parents
children 7d753658dc0e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
102
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
1 .highlight &.fruity {
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
2 background: @almostBlack;
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
3
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
4 .hll { background-color: #333333 }
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
5 .c { color: #008800; font-style: italic; } /* Comment */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
6 .err { color: #ffffff } /* Error */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
7 .g { color: #ffffff } /* Generic */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
8 .k { color: #fb660a; font-weight: bold } /* Keyword */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
9 .l { color: #ffffff } /* Literal */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
10 .n { color: #ffffff } /* Name */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
11 .o { color: #ffffff } /* Operator */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
12 .x { color: #ffffff } /* Other */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
13 .p { color: #ffffff } /* Punctuation */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
14 .cm { color: #008800; font-style: italic; } /* Comment.Multiline */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
15 .cp { color: #ff0007; font-weight: bold; font-style: italic; } /* Comment.Preproc */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
16 .c1 { color: #008800; font-style: italic; } /* Comment.Single */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
17 .cs { color: #008800; font-style: italic; } /* Comment.Special */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
18 .gd { color: #ffffff } /* Generic.Deleted */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
19 .ge { color: #ffffff } /* Generic.Emph */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
20 .gr { color: #ffffff } /* Generic.Error */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
21 .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
22 .gi { color: #ffffff } /* Generic.Inserted */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
23 .go { color: #444444; background-color: #222222 } /* Generic.Output */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
24 .gp { color: #ffffff } /* Generic.Prompt */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
25 .gs { color: #ffffff } /* Generic.Strong */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
26 .gu { color: #ffffff; font-weight: bold } /* Generic.Subheading */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
27 .gt { color: #ffffff } /* Generic.Traceback */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
28 .kc { color: #fb660a; font-weight: bold } /* Keyword.Constant */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
29 .kd { color: #fb660a; font-weight: bold } /* Keyword.Declaration */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
30 .kn { color: #fb660a; font-weight: bold } /* Keyword.Namespace */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
31 .kp { color: #fb660a } /* Keyword.Pseudo */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
32 .kr { color: #fb660a; font-weight: bold } /* Keyword.Reserved */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
33 .kt { color: #cdcaa9; font-weight: bold } /* Keyword.Type */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
34 .ld { color: #ffffff } /* Literal.Date */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
35 .m { color: #0086f7; font-weight: bold } /* Literal.Number */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
36 .s { color: #0086d2 } /* Literal.String */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
37 .na { color: #ff0086; font-weight: bold } /* Name.Attribute */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
38 .nb { color: #ffffff } /* Name.Builtin */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
39 .nc { color: #ffffff } /* Name.Class */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
40 .no { color: #0086d2 } /* Name.Constant */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
41 .nd { color: #ffffff } /* Name.Decorator */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
42 .ni { color: #ffffff } /* Name.Entity */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
43 .ne { color: #ffffff } /* Name.Exception */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
44 .nf { color: #ff0086; font-weight: bold } /* Name.Function */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
45 .nl { color: #ffffff } /* Name.Label */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
46 .nn { color: #ffffff } /* Name.Namespace */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
47 .nx { color: #ffffff } /* Name.Other */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
48 .py { color: #ffffff } /* Name.Property */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
49 .nt { color: #fb660a; font-weight: bold } /* Name.Tag */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
50 .nv { color: #fb660a } /* Name.Variable */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
51 .ow { color: #ffffff } /* Operator.Word */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
52 .w { color: #888888 } /* Text.Whitespace */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
53 .mf { color: #0086f7; font-weight: bold } /* Literal.Number.Float */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
54 .mh { color: #0086f7; font-weight: bold } /* Literal.Number.Hex */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
55 .mi { color: #0086f7; font-weight: bold } /* Literal.Number.Integer */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
56 .mo { color: #0086f7; font-weight: bold } /* Literal.Number.Oct */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
57 .sb { color: #0086d2 } /* Literal.String.Backtick */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
58 .sc { color: #0086d2 } /* Literal.String.Char */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
59 .sd { color: #0086d2 } /* Literal.String.Doc */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
60 .s2 { color: #0086d2 } /* Literal.String.Double */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
61 .se { color: #0086d2 } /* Literal.String.Escape */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
62 .sh { color: #0086d2 } /* Literal.String.Heredoc */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
63 .si { color: #0086d2 } /* Literal.String.Interpol */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
64 .sx { color: #0086d2 } /* Literal.String.Other */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
65 .sr { color: #0086d2 } /* Literal.String.Regex */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
66 .s1 { color: #0086d2 } /* Literal.String.Single */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
67 .ss { color: #0086d2 } /* Literal.String.Symbol */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
68 .bp { color: #ffffff } /* Name.Builtin.Pseudo */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
69 .vc { color: #fb660a } /* Name.Variable.Class */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
70 .vg { color: #fb660a } /* Name.Variable.Global */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
71 .vi { color: #fb660a } /* Name.Variable.Instance */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
72 .il { color: #0086f7; font-weight: bold } /* Literal.Number.Integer.Long */
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
73 }