bootstrap_devise_base 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (137) hide show
  1. data/Gemfile +54 -0
  2. data/Gemfile.lock +237 -0
  3. data/Rakefile +7 -0
  4. data/app/.svn/all-wcprops +5 -0
  5. data/app/.svn/entries +31 -0
  6. data/app/assets/images/rails.png +0 -0
  7. data/app/assets/javascripts/application.js +16 -0
  8. data/app/assets/javascripts/registrations.js.coffee +3 -0
  9. data/app/assets/stylesheets/application.css +23 -0
  10. data/app/assets/stylesheets/bootstrap.scss +29 -0
  11. data/app/assets/stylesheets/forms.scss +481 -0
  12. data/app/assets/stylesheets/mixins.scss +220 -0
  13. data/app/assets/stylesheets/patterns.scss +1061 -0
  14. data/app/assets/stylesheets/registrations.css.scss +3 -0
  15. data/app/assets/stylesheets/reset.scss +144 -0
  16. data/app/assets/stylesheets/scaffolding.scss +144 -0
  17. data/app/assets/stylesheets/tables.scss +226 -0
  18. data/app/assets/stylesheets/type.scss +190 -0
  19. data/app/assets/stylesheets/variables.scss +60 -0
  20. data/app/controllers/.svn/all-wcprops +11 -0
  21. data/app/controllers/.svn/entries +62 -0
  22. data/app/controllers/.svn/text-base/assets_offline_controller.rb.svn-base +85 -0
  23. data/app/controllers/application_controller.rb +6 -0
  24. data/app/controllers/authentications_controller.rb +34 -0
  25. data/app/controllers/home_controller.rb +83 -0
  26. data/app/controllers/registrations_controller.rb +18 -0
  27. data/app/helpers/application_helper.rb +2 -0
  28. data/app/helpers/authentications_helper.rb +2 -0
  29. data/app/helpers/devise_helper.rb +29 -0
  30. data/app/helpers/home_helper.rb +2 -0
  31. data/app/helpers/registrations_helper.rb +2 -0
  32. data/app/mailers/.gitkeep +0 -0
  33. data/app/models/.gitkeep +0 -0
  34. data/app/models/authentication.rb +3 -0
  35. data/app/models/user.rb +20 -0
  36. data/app/views/authentications/_form.html.erb +16 -0
  37. data/app/views/authentications/edit.html.erb +8 -0
  38. data/app/views/authentications/index.html.erb +22 -0
  39. data/app/views/authentications/new.html.erb +5 -0
  40. data/app/views/authentications/show.html.erb +20 -0
  41. data/app/views/devise/confirmations/new.html.erb +12 -0
  42. data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  43. data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  44. data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  45. data/app/views/devise/passwords/edit.html.erb +16 -0
  46. data/app/views/devise/passwords/new.html.erb +12 -0
  47. data/app/views/devise/sessions/new.html.erb +58 -0
  48. data/app/views/devise/shared/_links.erb +25 -0
  49. data/app/views/devise/unlocks/new.html.erb +12 -0
  50. data/app/views/home/_form.html.erb +17 -0
  51. data/app/views/home/edit.html.erb +6 -0
  52. data/app/views/home/index.html.erb +21 -0
  53. data/app/views/home/new.html.erb +5 -0
  54. data/app/views/home/show.html.erb +5 -0
  55. data/app/views/layouts/application.html.erb +112 -0
  56. data/app/views/registrations/edit.html.erb +25 -0
  57. data/app/views/registrations/new.html.erb +47 -0
  58. data/bootstrap_devise_base.gemspec +20 -0
  59. data/config.ru +4 -0
  60. data/config/.svn/all-wcprops +11 -0
  61. data/config/.svn/entries +62 -0
  62. data/config/.svn/text-base/routes.rb.svn-base +3 -0
  63. data/config/application.rb +48 -0
  64. data/config/boot.rb +6 -0
  65. data/config/cucumber.yml +8 -0
  66. data/config/database.yml +45 -0
  67. data/config/environment.rb +5 -0
  68. data/config/environments/development.rb +30 -0
  69. data/config/environments/production.rb +60 -0
  70. data/config/environments/test.rb +39 -0
  71. data/config/initializers/backtrace_silencers.rb +7 -0
  72. data/config/initializers/devise.rb +208 -0
  73. data/config/initializers/inflections.rb +10 -0
  74. data/config/initializers/mime_types.rb +5 -0
  75. data/config/initializers/omniauth.rb +3 -0
  76. data/config/initializers/secret_token.rb +7 -0
  77. data/config/initializers/session_store.rb +8 -0
  78. data/config/initializers/wrap_parameters.rb +14 -0
  79. data/config/locales/devise.en.yml +58 -0
  80. data/config/locales/en.yml +13 -0
  81. data/config/routes.rb +64 -0
  82. data/db/migrate/20111121201415_create_users.rb +8 -0
  83. data/db/migrate/20111121201511_add_devise_to_users.rb +31 -0
  84. data/db/migrate/20111127100158_create_authentications.rb +14 -0
  85. data/db/schema.rb +42 -0
  86. data/db/seeds.rb +7 -0
  87. data/doc/README_FOR_APP +2 -0
  88. data/features/manage_sign_ups.feature +28 -0
  89. data/features/step_definitions/sign_up_steps.rb +27 -0
  90. data/features/step_definitions/web_steps.rb +254 -0
  91. data/features/support/env.rb +56 -0
  92. data/features/support/paths.rb +39 -0
  93. data/features/support/selectors.rb +39 -0
  94. data/init.rb +1 -0
  95. data/lib/.svn/all-wcprops +11 -0
  96. data/lib/.svn/entries +65 -0
  97. data/lib/.svn/text-base/assets_offline.rb.svn-base +6 -0
  98. data/lib/assets/.gitkeep +0 -0
  99. data/lib/bootstap_devise_base.rb~ +6 -0
  100. data/lib/bootstrap_devise_base.rb +6 -0
  101. data/lib/bootstrap_devise_base/.svn/all-wcprops +11 -0
  102. data/lib/bootstrap_devise_base/.svn/entries +62 -0
  103. data/lib/bootstrap_devise_base/.svn/text-base/version.rb.svn-base +3 -0
  104. data/lib/bootstrap_devise_base/version.rb +3 -0
  105. data/lib/tasks/.gitkeep +0 -0
  106. data/lib/tasks/cucumber.rake +65 -0
  107. data/log/.gitkeep +0 -0
  108. data/log/development.log +977 -0
  109. data/log/production.log +44 -0
  110. data/log/test.log +799 -0
  111. data/public/404.html +26 -0
  112. data/public/422.html +26 -0
  113. data/public/500.html +26 -0
  114. data/public/assets/application-902e25928a309d43246c45cd2facd7d3.js +19 -0
  115. data/public/assets/application-902e25928a309d43246c45cd2facd7d3.js.gz +0 -0
  116. data/public/assets/application-a5e3fc47c863d5a64c7380ed33b187b6.css +1 -0
  117. data/public/assets/application-a5e3fc47c863d5a64c7380ed33b187b6.css.gz +0 -0
  118. data/public/assets/application.css +1 -0
  119. data/public/assets/application.css.gz +0 -0
  120. data/public/assets/application.js +19 -0
  121. data/public/assets/application.js.gz +0 -0
  122. data/public/assets/manifest.yml +4 -0
  123. data/public/assets/rails-e4b51606cd77fda2615e7439907bfc92.png +0 -0
  124. data/public/assets/rails.png +0 -0
  125. data/public/favicon.ico +0 -0
  126. data/public/robots.txt +5 -0
  127. data/script/cucumber +10 -0
  128. data/script/rails +6 -0
  129. data/test/fixtures/.gitkeep +0 -0
  130. data/test/functional/.gitkeep +0 -0
  131. data/test/integration/.gitkeep +0 -0
  132. data/test/performance/browsing_test.rb +12 -0
  133. data/test/test_helper.rb +13 -0
  134. data/test/unit/.gitkeep +0 -0
  135. data/vendor/assets/stylesheets/.gitkeep +0 -0
  136. data/vendor/plugins/.gitkeep +0 -0
  137. metadata +181 -0
@@ -0,0 +1,3 @@
1
+ // Place all the styles related to the registrations controller here.
2
+ // They will automatically be included in application.css.
3
+ // You can use Sass (SCSS) here: http://sass-lang.com/
@@ -0,0 +1,144 @@
1
+ /* Reset.scss
2
+ * Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
3
+ * ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
4
+
5
+ // Core
6
+ @import "variables.scss";
7
+ @import "mixins.scss";
8
+
9
+ // ERIC MEYER RESET
10
+ // --------------------------------------------------
11
+
12
+ html, body { margin: 0; padding: 0; }
13
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, cite, code, del, dfn, em, img, q, s, samp, small, strike, strong, sub, sup, tt, var, dd, dl, dt, li, ol, ul, fieldset, form, label, legend, button, table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; font-weight: normal; font-style: normal; font-size: 100%; line-height: 1; font-family: inherit; }
14
+ table { border-collapse: collapse; border-spacing: 0; }
15
+ ol, ul { list-style: none; }
16
+ q:before, q:after, blockquote:before, blockquote:after { content: ""; }
17
+
18
+
19
+ // Normalize.css
20
+ // Pulling in select resets form the normalize.css project
21
+ // --------------------------------------------------
22
+
23
+ // Display in IE6-9 and FF3
24
+ // -------------------------
25
+ // Source: http://github.com/necolas/normalize.css
26
+ html {
27
+ overflow-y: scroll;
28
+ font-size: 100%;
29
+ -webkit-text-size-adjust: 100%;
30
+ -ms-text-size-adjust: 100%;
31
+ }
32
+ // Focus states
33
+ a:focus {
34
+ outline: thin dotted;
35
+ }
36
+ // Hover & Active
37
+ a:hover,
38
+ a:active {
39
+ outline: 0;
40
+ }
41
+
42
+ // Display in IE6-9 and FF3
43
+ // -------------------------
44
+ // Source: http://github.com/necolas/normalize.css
45
+ article,
46
+ aside,
47
+ details,
48
+ figcaption,
49
+ figure,
50
+ footer,
51
+ header,
52
+ hgroup,
53
+ nav,
54
+ section {
55
+ display: block;
56
+ }
57
+
58
+ // Display block in IE6-9 and FF3
59
+ // -------------------------
60
+ // Source: http://github.com/necolas/normalize.css
61
+ audio,
62
+ canvas,
63
+ video {
64
+ display: inline-block;
65
+ *display: inline;
66
+ *zoom: 1;
67
+ }
68
+
69
+ // Prevents modern browsers from displaying 'audio' without controls
70
+ // -------------------------
71
+ // Source: http://github.com/necolas/normalize.css
72
+ audio:not([controls]) {
73
+ display: none;
74
+ }
75
+
76
+ // Prevents sub and sup affecting line-height in all browsers
77
+ // -------------------------
78
+ // Source: http://github.com/necolas/normalize.css
79
+ sub,
80
+ sup {
81
+ font-size: 75%;
82
+ line-height: 0;
83
+ position: relative;
84
+ vertical-align: baseline;
85
+ }
86
+ sup {
87
+ top: -0.5em;
88
+ }
89
+ sub {
90
+ bottom: -0.25em;
91
+ }
92
+
93
+ // Img border in a's and image quality
94
+ // -------------------------
95
+ // Source: http://github.com/necolas/normalize.css
96
+ img {
97
+ border: 0;
98
+ -ms-interpolation-mode: bicubic;
99
+ }
100
+
101
+ // Forms
102
+ // -------------------------
103
+ // Source: http://github.com/necolas/normalize.css
104
+
105
+ // Font size in all browsers, margin changes, misc consistency
106
+ button,
107
+ input,
108
+ select,
109
+ textarea {
110
+ font-size: 100%;
111
+ margin: 0;
112
+ vertical-align: baseline;
113
+ *vertical-align: middle;
114
+ }
115
+ button,
116
+ input {
117
+ line-height: normal; // FF3/4 have !important on line-height in UA stylesheet
118
+ *overflow: visible; // Inner spacing ie IE6/7
119
+ }
120
+ button::-moz-focus-inner,
121
+ input::-moz-focus-inner { // Inner padding and border oddities in FF3/4
122
+ border: 0;
123
+ padding: 0;
124
+ }
125
+ button,
126
+ input[type="button"],
127
+ input[type="reset"],
128
+ input[type="submit"] {
129
+ cursor: pointer; // Cursors on all buttons applied consistently
130
+ -webkit-appearance: button; // Style clicable inputs in iOS
131
+ }
132
+ input[type="search"] { // Appearance in Safari/Chrome
133
+ -webkit-appearance: textfield;
134
+ -webkit-box-sizing: content-box;
135
+ -moz-box-sizing: content-box;
136
+ box-sizing: content-box;
137
+ }
138
+ input[type="search"]::-webkit-search-decoration {
139
+ -webkit-appearance: none; // Inner-padding issues in Chrome OSX, Safari 5
140
+ }
141
+ textarea {
142
+ overflow: auto; // Remove vertical scrollbar in IE6-9
143
+ vertical-align: top; // Readability and alignment cross-browser
144
+ }
@@ -0,0 +1,144 @@
1
+ /*
2
+ * Scaffolding.scss
3
+ * Basic and global styles for generating a grid system, structural layout, and page templates
4
+ * ------------------------------------------------------------------------------------------- */
5
+ // Core
6
+ @import "variables.scss";
7
+ @import "mixins.scss";
8
+
9
+ // STRUCTURAL LAYOUT
10
+ // -----------------
11
+
12
+ body {
13
+ background-color: $white;
14
+ margin: 0;
15
+ @include sans-serif-font(normal,$basefont,$baseline);
16
+ color: $grayDark;
17
+ }
18
+
19
+ // Container (centered, fixed-width layouts)
20
+ .container {
21
+ @include fixed-container();
22
+ }
23
+
24
+ .facebook-signin {
25
+ text-align: center;
26
+ margin-left: 40px;
27
+ }
28
+
29
+ // Fluid layouts (left aligned, with sidebar, min- & max-width content)
30
+ .container-fluid {
31
+ position: relative;
32
+ min-width: 940px;
33
+ padding-left: 20px;
34
+ padding-right: 20px;
35
+ @include clearfix();
36
+ > .sidebar {
37
+ position: absolute;
38
+ top: 0;
39
+ left: 20px;
40
+ width: 220px;
41
+ }
42
+ // TODO in v2: rename this and .popover .content to be more specific
43
+ > .content {
44
+ margin-left: 240px;
45
+ }
46
+ }
47
+
48
+
49
+ // BASE STYLES
50
+ // -----------
51
+
52
+ // Links
53
+ a {
54
+ color: $linkColor;
55
+ text-decoration: none;
56
+ line-height: inherit;
57
+ font-weight: inherit;
58
+ &:hover {
59
+ color: $linkColorHover;
60
+ text-decoration: underline;
61
+ }
62
+ }
63
+
64
+ // Quick floats
65
+ .pull-right {
66
+ float: right;
67
+ }
68
+ .pull-left {
69
+ float: left;
70
+ }
71
+
72
+ // Toggling content
73
+ .hide {
74
+ display: none;
75
+ }
76
+ .show {
77
+ display: block;
78
+ }
79
+
80
+
81
+ // GRID SYSTEM
82
+ // -----------
83
+ // To customize the grid system, bring up the variables.scss file and change the column count, size, and gutter there
84
+
85
+ .row {
86
+ @include clearfix();
87
+ margin-left: -1 * $gridGutterWidth;
88
+ }
89
+
90
+ // Find all .span# classes within .row and give them the necessary properties for grid columns (supported by all browsers back to IE7)
91
+ // Credit to @dhg for the idea
92
+ .row > [class*="span"] {
93
+ @include gridColumn();
94
+ }
95
+
96
+ // Default columns
97
+ .span1 { @include columns(1); }
98
+ .span2 { @include columns(2); }
99
+ .span3 { @include columns(3); }
100
+ .span4 { @include columns(4); }
101
+ .span5 { @include columns(5); }
102
+ .span6 { @include columns(6); }
103
+ .span7 { @include columns(7); }
104
+ .span8 { @include columns(8); }
105
+ .span9 { @include columns(9); }
106
+ .span10 { @include columns(10); }
107
+ .span11 { @include columns(11); }
108
+ .span12 { @include columns(12); }
109
+ .span13 { @include columns(13); }
110
+ .span14 { @include columns(14); }
111
+ .span15 { @include columns(15); }
112
+ .span16 { @include columns(16); }
113
+
114
+ // For option 24-column grid
115
+ .span17 { @include columns(17); }
116
+ .span18 { @include columns(18); }
117
+ .span19 { @include columns(19); }
118
+ .span20 { @include columns(20); }
119
+ .span21 { @include columns(21); }
120
+ .span22 { @include columns(22); }
121
+ .span23 { @include columns(23); }
122
+ .span24 { @include columns(24); }
123
+
124
+ // Offset column options
125
+ .row {
126
+ > .offset1 { @include offset(1); }
127
+ > .offset2 { @include offset(2); }
128
+ > .offset3 { @include offset(3); }
129
+ > .offset4 { @include offset(4); }
130
+ > .offset5 { @include offset(5); }
131
+ > .offset6 { @include offset(6); }
132
+ > .offset7 { @include offset(7); }
133
+ > .offset8 { @include offset(8); }
134
+ > .offset9 { @include offset(9); }
135
+ > .offset10 { @include offset(10); }
136
+ > .offset11 { @include offset(11); }
137
+ > .offset12 { @include offset(12); }
138
+ }
139
+ // Unique column sizes for 16-column grid
140
+ .span-one-third { width: 300px; }
141
+ .span-two-thirds { width: 620px; }
142
+ .offset-one-sixth { margin-left: 150px; }
143
+ .offset-one-third { margin-left: 340px; }
144
+ .offset-two-thirds { margin-left: 660px; }
@@ -0,0 +1,226 @@
1
+ /*
2
+ * Tables.scss
3
+ * Tables for, you guessed it, tabular data
4
+ * ---------------------------------------- */
5
+
6
+ // Core
7
+ @import "variables.scss";
8
+ @import "mixins.scss";
9
+ // BASELINE STYLES
10
+ // ---------------
11
+
12
+ table {
13
+ width: 100%;
14
+ margin-bottom: $baseline;
15
+ padding: 0;
16
+ font-size: $basefont;
17
+ border-collapse: collapse;
18
+ th,
19
+ td {
20
+ padding: 10px 10px 9px;
21
+ line-height: $baseline;
22
+ text-align: left;
23
+ }
24
+ th {
25
+ padding-top: 9px;
26
+ font-weight: bold;
27
+ vertical-align: middle;
28
+ }
29
+ td {
30
+ vertical-align: top;
31
+ border-top: 1px solid #ddd;
32
+ }
33
+ // When scoped to row, fix th in tbody
34
+ tbody th {
35
+ border-top: 1px solid #ddd;
36
+ vertical-align: top;
37
+ }
38
+ }
39
+
40
+ // CONDENSED VERSION
41
+ // -----------------
42
+ .condensed-table {
43
+ th,
44
+ td {
45
+ padding: 5px 5px 4px;
46
+ }
47
+ }
48
+
49
+
50
+
51
+ // BORDERED VERSION
52
+ // ----------------
53
+
54
+ .bordered-table {
55
+ border: 1px solid #ddd;
56
+ border-collapse: separate; // Done so we can round those corners!
57
+ *border-collapse: collapse; /* IE7, collapse table to remove spacing */
58
+ @include border-radius(4px);
59
+ th + th,
60
+ td + td,
61
+ th + td {
62
+ border-left: 1px solid #ddd;
63
+ }
64
+ thead tr:first-child th:first-child,
65
+ tbody tr:first-child td:first-child {
66
+ @include border-radius(4px 0 0 0);
67
+ }
68
+ thead tr:first-child th:last-child,
69
+ tbody tr:first-child td:last-child {
70
+ @include border-radius(0 4px 0 0);
71
+ }
72
+ tbody tr:last-child td:first-child {
73
+ @include border-radius(0 0 0 4px);
74
+ }
75
+ tbody tr:last-child td:last-child {
76
+ @include border-radius(0 0 4px 0);
77
+ }
78
+ }
79
+
80
+
81
+ // TABLE CELL SIZES
82
+ // ----------------
83
+
84
+ // This is a duplication of the main grid .columns() mixin, but subtracts 20px to account for input padding and border
85
+ @mixin tableColumns($columnSpan: 1) {
86
+ width: (($gridColumnWidth - 20) * $columnSpan) + (($gridColumnWidth - 20) * ($columnSpan - 1));
87
+ }
88
+ table {
89
+ // Default columns
90
+ .span1 { @include tableColumns(1); }
91
+ .span2 { @include tableColumns(2); }
92
+ .span3 { @include tableColumns(3); }
93
+ .span4 { @include tableColumns(4); }
94
+ .span5 { @include tableColumns(5); }
95
+ .span6 { @include tableColumns(6); }
96
+ .span7 { @include tableColumns(7); }
97
+ .span8 { @include tableColumns(8); }
98
+ .span9 { @include tableColumns(9); }
99
+ .span10 { @include tableColumns(10); }
100
+ .span11 { @include tableColumns(11); }
101
+ .span12 { @include tableColumns(12); }
102
+ .span13 { @include tableColumns(13); }
103
+ .span14 { @include tableColumns(14); }
104
+ .span15 { @include tableColumns(15); }
105
+ .span16 { @include tableColumns(16); }
106
+ }
107
+
108
+
109
+ // ZEBRA-STRIPING
110
+ // --------------
111
+
112
+ // Default zebra-stripe styles (alternating gray and transparent backgrounds)
113
+ .zebra-striped {
114
+ tbody {
115
+ tr:nth-child(odd) td,
116
+ tr:nth-child(odd) th {
117
+ background-color: #f9f9f9;
118
+ }
119
+ tr:hover td,
120
+ tr:hover th{
121
+ background-color: #f5f5f5;
122
+ }
123
+ }
124
+ }
125
+
126
+ table {
127
+ // Tablesorting styles w/ jQuery plugin
128
+ .header {
129
+ cursor: pointer;
130
+ &:after {
131
+ content: "";
132
+ float: right;
133
+ margin-top: 7px;
134
+ border-width: 0 4px 4px;
135
+ border-style: solid;
136
+ border-color: #000 transparent;
137
+ visibility: hidden;
138
+ }
139
+ }
140
+ // Style the sorted column headers (THs)
141
+ .headerSortUp,
142
+ .headerSortDown {
143
+ background-color: rgba(141,192,219,.25);
144
+ text-shadow: 0 1px 1px rgba(255,255,255,.75);
145
+ }
146
+ // Style the ascending (reverse alphabetical) column header
147
+ .header:hover {
148
+ &:after {
149
+ visibility:visible;
150
+ }
151
+ }
152
+ // Style the descending (alphabetical) column header
153
+ .headerSortDown,
154
+ .headerSortDown:hover {
155
+ &:after {
156
+ visibility:visible;
157
+ @include opacity(60);
158
+ }
159
+ }
160
+ // Style the ascending (reverse alphabetical) column header
161
+ .headerSortUp {
162
+ &:after {
163
+ border-bottom: none;
164
+ border-left: 4px solid transparent;
165
+ border-right: 4px solid transparent;
166
+ border-top: 4px solid #000;
167
+ visibility:visible;
168
+ @include box-shadow(none); //can't add boxshadow to downward facing arrow :(
169
+ @include opacity(60);
170
+ }
171
+ }
172
+ // Blue Table Headings
173
+ .blue {
174
+ color: $blue;
175
+ border-bottom-color: $blue;
176
+ }
177
+ .headerSortUp.blue,
178
+ .headerSortDown.blue {
179
+ background-color: lighten($blue, 40%);
180
+ }
181
+ // Green Table Headings
182
+ .green {
183
+ color: $green;
184
+ border-bottom-color: $green;
185
+ }
186
+ .headerSortUp.green,
187
+ .headerSortDown.green {
188
+ background-color: lighten($green, 40%);
189
+ }
190
+ // Red Table Headings
191
+ .red {
192
+ color: $red;
193
+ border-bottom-color: $red;
194
+ }
195
+ .headerSortUp.red,
196
+ .headerSortDown.red {
197
+ background-color: lighten($red, 50%);
198
+ }
199
+ // Yellow Table Headings
200
+ .yellow {
201
+ color: $yellow;
202
+ border-bottom-color: $yellow;
203
+ }
204
+ .headerSortUp.yellow,
205
+ .headerSortDown.yellow {
206
+ background-color: lighten($yellow, 40%);
207
+ }
208
+ // Orange Table Headings
209
+ .orange {
210
+ color: $orange;
211
+ border-bottom-color: $orange;
212
+ }
213
+ .headerSortUp.orange,
214
+ .headerSortDown.orange {
215
+ background-color: lighten($orange, 40%);
216
+ }
217
+ // Purple Table Headings
218
+ .purple {
219
+ color: $purple;
220
+ border-bottom-color: $purple;
221
+ }
222
+ .headerSortUp.purple,
223
+ .headerSortDown.purple {
224
+ background-color: lighten($purple, 40%);
225
+ }
226
+ }