annotate static/css/variables.less @ 130:5ab229c9d348

Add back ability to edit account settings * Account/profile editing is now done with a ModelForm, instead of processing the data manually. Help text and verbose names have been moved to the Profile model and to the UserForm (in the latter case, it's because we can't edit the User model directly). * The profile page now shows pygments style information and sections of the profile that are not filled are now hidden. * Some parts of apps/profiles/views.py have been rewritten (the getprofile() method has been removed, as it's no longer necessary, and the editprofile() view was rewritten in accordance with the switch to using ModelForms). * The styling for forms has been modified slightly.
author dellsystem <ilostwaldo@gmail.com>
date Sat, 22 Sep 2012 11:18:23 -0400
parents 2bca07be6e51
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
80
eaa36eaaf74a Start integration of new design
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
1 // Colour scheme
eaa36eaaf74a Start integration of new design
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
2 @black: #000;
102
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents: 87
diff changeset
3 @almostBlack: #1B1B1B;
80
eaa36eaaf74a Start integration of new design
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
4 @darkerGrey: #333;
eaa36eaaf74a Start integration of new design
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
5 @darkGrey: #555;
eaa36eaaf74a Start integration of new design
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
6 @mediumGrey: #AAA;
eaa36eaaf74a Start integration of new design
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
7 @lightGrey: #E6E6E6;
eaa36eaaf74a Start integration of new design
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
8 @lighterGrey: #F0F0F0;
eaa36eaaf74a Start integration of new design
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
9 @offWhite: #FBFBFB;
eaa36eaaf74a Start integration of new design
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
10 @white: #FFF;
eaa36eaaf74a Start integration of new design
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
11
107
2bca07be6e51 Add login popup box
dellsystem <ilostwaldo@gmail.com>
parents: 102
diff changeset
12 @darkOrange: #D45500;
80
eaa36eaaf74a Start integration of new design
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
13 @orange: #FF7F2A;
107
2bca07be6e51 Add login popup box
dellsystem <ilostwaldo@gmail.com>
parents: 102
diff changeset
14 @lightOrange: lighten(@orange, 25%);
80
eaa36eaaf74a Start integration of new design
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
15
eaa36eaaf74a Start integration of new design
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
16 @darkBlue: #1B749D;
eaa36eaaf74a Start integration of new design
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
17 @mediumBlue: #22A2CA;
eaa36eaaf74a Start integration of new design
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
18 @lightBlue: #60CAE1;
eaa36eaaf74a Start integration of new design
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
19
eaa36eaaf74a Start integration of new design
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
20 @darkSheer: rgba(0, 0, 0, 0.5);
eaa36eaaf74a Start integration of new design
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
21
eaa36eaaf74a Start integration of new design
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
22 // Dimensions and positioning
eaa36eaaf74a Start integration of new design
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
23 @fixedWidth: 960px;
eaa36eaaf74a Start integration of new design
dellsystem <ilostwaldo@gmail.com>
parents:
diff changeset
24 @headerHeight: 100px;
83
343d79b20dd5 Fix header-icon positioning in Firefox/Opera
dellsystem <ilostwaldo@gmail.com>
parents: 80
diff changeset
25 @headerIconHoverY: -60px;
102
f872c643b056 Updates to snippet functionality (see details)
dellsystem <ilostwaldo@gmail.com>
parents: 87
diff changeset
26 @sidebarWidth: 230px;
87
e0348cfbdf48 Update styling of snippets page
dellsystem <ilostwaldo@gmail.com>
parents: 83
diff changeset
27 @sidebarLeftSpace: 20px;
e0348cfbdf48 Update styling of snippets page
dellsystem <ilostwaldo@gmail.com>
parents: 83
diff changeset
28 @nonSidebarWidth: @fixedWidth - @sidebarWidth - @sidebarLeftSpace;
e0348cfbdf48 Update styling of snippets page
dellsystem <ilostwaldo@gmail.com>
parents: 83
diff changeset
29 @inputPadding: 5px;
e0348cfbdf48 Update styling of snippets page
dellsystem <ilostwaldo@gmail.com>
parents: 83
diff changeset
30 @sidebarPadding: 10px;
130
5ab229c9d348 Add back ability to edit account settings
dellsystem <ilostwaldo@gmail.com>
parents: 107
diff changeset
31 @fieldWidth: 400px;