notjustagrid 1.1 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +17 -7
- data/lib/generators/notjustagrid/install/install_generator.rb +11 -11
- data/lib/notjustagrid/version.rb +1 -1
- data/vendor/assets/stylesheets/{forms.scss.erb → notjustagrid/forms.scss.erb} +0 -0
- data/vendor/assets/stylesheets/{grid1200.scss → notjustagrid/grid1200.scss} +0 -0
- data/vendor/assets/stylesheets/{grid1380.scss → notjustagrid/grid1380.scss} +0 -0
- data/vendor/assets/stylesheets/{grid1500.scss → notjustagrid/grid1500.scss} +0 -0
- data/vendor/assets/stylesheets/{grid960.scss → notjustagrid/grid960.scss} +0 -0
- data/vendor/assets/stylesheets/{helpers.scss → notjustagrid/helpers.scss} +0 -0
- data/vendor/assets/stylesheets/{reset.scss → notjustagrid/reset.scss} +0 -0
- data/vendor/assets/stylesheets/{tables.scss.erb → notjustagrid/tables.scss.erb} +0 -0
- data/vendor/assets/stylesheets/{type.scss → notjustagrid/type.scss} +0 -0
- data/vendor/assets/stylesheets/{ux.scss.erb → notjustagrid/ux.scss.erb} +0 -0
- data/vendor/assets/stylesheets/src/forms.css +17 -17
- data/vendor/assets/stylesheets/src/tables.css +8 -8
- data/vendor/assets/stylesheets/src/ux.css +14 -14
- metadata +25 -19
data/README.md
CHANGED
@@ -1,31 +1,41 @@
|
|
1
1
|
# Not Just A Grid
|
2
2
|
|
3
|
-
Notjustagrid is an awesome CSS framework. I like using it and decided to create
|
3
|
+
Notjustagrid is an awesome CSS framework. I like using it and decided to create
|
4
|
+
a Rubygem version of it.
|
4
5
|
|
5
6
|
## Rails 3.1
|
6
7
|
|
7
|
-
Notjustagrid is a Rails engine and vendors the framework files. Just add it to
|
8
|
+
Notjustagrid is a Rails engine and vendors the framework files. Just add it to
|
9
|
+
your Gemfile and `bundle install`
|
8
10
|
|
9
11
|
gem 'notjustagrid'
|
10
12
|
|
11
13
|
Then you need to require the files you want in the `application.css` manifest
|
12
14
|
|
13
|
-
*= require reset
|
14
|
-
*= require grid960
|
15
|
+
*= require notjustagrid/reset
|
16
|
+
*= require notjustagrid/grid960
|
15
17
|
.
|
16
18
|
.
|
17
19
|
.
|
18
|
-
|
19
|
-
|
20
|
+
The vendored stylesheets are SASS files (`.scss`). A better option would be
|
21
|
+
to create a `notjustagrid.css` manifest that requires the files you want and
|
22
|
+
then just require that file in `application.css`
|
20
23
|
|
21
24
|
## Rails 3.0
|
22
25
|
|
23
26
|
Install the gem into your Rails application and then run the install generator to copy the assets.
|
24
27
|
|
25
28
|
rails generate notjustagrid:install
|
29
|
+
|
30
|
+
The generator copies the `css` files from
|
31
|
+
`vendor/assets/stylesheets/src` to `public/notjustagrid`. Note also that
|
32
|
+
the source file are `.css` so you'll have the actual source to use how
|
33
|
+
you want.
|
26
34
|
|
27
35
|
## Credits
|
28
36
|
|
29
|
-
The [Not Just A Grid](http://notjustagrid.com) framework is maintained by
|
37
|
+
The [Not Just A Grid](http://notjustagrid.com) framework is maintained by
|
38
|
+
[Al Redpath](http://twitter.com/notjustagrid) /
|
39
|
+
[Outrageous Creations!](http://www.outrageouscreations.com)
|
30
40
|
|
31
41
|
The Notjustagrid Rubygem is maintained by [Evan Machnic](http://twitter.com/emachnic)
|
@@ -11,20 +11,20 @@ module Notjustagrid
|
|
11
11
|
|
12
12
|
say_status("copying", "stylesheets", :green)
|
13
13
|
directory('stylesheets/src', 'public/stylesheets')
|
14
|
-
# copy_file 'stylesheets/src/forms.css', 'public/stylesheets/forms.css'
|
15
|
-
# copy_file 'stylesheets/src/grid1200.css', 'public/stylesheets/grid1200.css'
|
16
|
-
# copy_file 'stylesheets/src/grid1380.css', 'public/stylesheets/grid1380.css'
|
17
|
-
# copy_file 'stylesheets/src/grid1500.css', 'public/stylesheets/grid1500.css'
|
18
|
-
# copy_file 'stylesheets/src/grid960.css', 'public/stylesheets/grid960.css'
|
19
|
-
# copy_file 'stylesheets/src/helpers.css', 'public/stylesheets/helpers.css'
|
20
|
-
# copy_file 'stylesheets/src/reset.css', 'public/stylesheets/reset.css'
|
21
|
-
# copy_file 'stylesheets/src/tables.css', 'public/stylesheets/tables.css'
|
22
|
-
# copy_file 'stylesheets/src/type.css', 'public/stylesheets/type.css'
|
23
|
-
# copy_file 'stylesheets/src/ux.css', 'public/stylesheets/ux.css'
|
14
|
+
# copy_file 'stylesheets/src/forms.css', 'public/stylesheets/notjustagrid/forms.css'
|
15
|
+
# copy_file 'stylesheets/src/grid1200.css', 'public/stylesheets/notjustagrid/grid1200.css'
|
16
|
+
# copy_file 'stylesheets/src/grid1380.css', 'public/stylesheets/notjustagrid/grid1380.css'
|
17
|
+
# copy_file 'stylesheets/src/grid1500.css', 'public/stylesheets/notjustagrid/grid1500.css'
|
18
|
+
# copy_file 'stylesheets/src/grid960.css', 'public/stylesheets/notjustagrid/grid960.css'
|
19
|
+
# copy_file 'stylesheets/src/helpers.css', 'public/stylesheets/notjustagrid/helpers.css'
|
20
|
+
# copy_file 'stylesheets/src/reset.css', 'public/stylesheets/notjustagrid/reset.css'
|
21
|
+
# copy_file 'stylesheets/src/tables.css', 'public/stylesheets/notjustagrid/tables.css'
|
22
|
+
# copy_file 'stylesheets/src/type.css', 'public/stylesheets/notjustagrid/type.css'
|
23
|
+
# copy_file 'stylesheets/src/ux.css', 'public/stylesheets/notjustagrid/ux.css'
|
24
24
|
|
25
25
|
say_status("copying", "images", :green)
|
26
26
|
directory('images/notjustagrid', 'public/images/notjustagrid')
|
27
27
|
end
|
28
28
|
end
|
29
29
|
end
|
30
|
-
end if ::Rails.version < '3.1'
|
30
|
+
end if ::Rails.version < '3.1'
|
data/lib/notjustagrid/version.rb
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -6,7 +6,7 @@
|
|
6
6
|
.vertical_form fieldset{border:1px solid #888;margin:10px 0;padding:10px 20px 10px 20px;-moz-border-radius:10px;-webkit-border-radius: 10px;border-radius:10px;}
|
7
7
|
.vertical_form fieldset.fieldsetbuttons {padding:10px 10px 10px 20px;}
|
8
8
|
.vertical_form fieldset.fieldsetbuttons div {text-align:right;}
|
9
|
-
.vertical_form legend {margin:0;border:1px solid #888;padding:3px 6px;background:#eee url(
|
9
|
+
.vertical_form legend {margin:0;border:1px solid #888;padding:3px 6px;background:#eee url(../../images/notjustagrid/misc/transoverlay-matte.png) repeat-x;-moz-border-radius:5px;-webkit-border-radius: 5px;border-radius:5px;text-transform:uppercase; letter-spacing:2px;}
|
10
10
|
.vertical_form label {display:block;margin:10px 0 5px 0;}
|
11
11
|
.vertical_form ul {margin:0; padding:0;}
|
12
12
|
.vertical_form li {list-style:none; margin:0; padding:0;}
|
@@ -18,7 +18,7 @@
|
|
18
18
|
.horizontal_form fieldset{border:1px solid #888;margin:10px 0;padding:10px 20px 10px 20px;-moz-border-radius:10px;-webkit-border-radius: 10px;border-radius:10px;}
|
19
19
|
.horizontal_form fieldset.fieldsetbuttons {padding:10px 10px 10px 20px;}
|
20
20
|
.horizontal_form fieldset.fieldsetbuttons div {text-align:right;}
|
21
|
-
.horizontal_form legend {margin:0;border:1px solid #888;padding:3px 6px;background:#eee url(
|
21
|
+
.horizontal_form legend {margin:0;border:1px solid #888;padding:3px 6px;background:#eee url(../../images/notjustagrid/misc/transoverlay-matte.png) repeat-x;-moz-border-radius:5px;-webkit-border-radius: 5px;border-radius:5px;text-transform:uppercase; letter-spacing:2px;}
|
22
22
|
.horizontal_form label {float:left;margin:0 5px 0 0; width:100px; text-align:right;}
|
23
23
|
.horizontal_form ul {margin:0; padding:0;}
|
24
24
|
.horizontal_form li {list-style:none; vertical-align:middle; margin:10px 0;clear:left;}
|
@@ -27,30 +27,30 @@
|
|
27
27
|
/* Input field styling -------------------------------------------------------- */
|
28
28
|
/* ---------------------------------------------------------------------------- */
|
29
29
|
.normalfield, .requiredfield {border: 1px solid #ccc;border-top: 1px solid #444;border-left: 1px solid #444;font: 14px "Trebuchet MS", Arial, Helvetica, sans-serif;letter-spacing:1px;padding:3px 2px 3px 2px;}
|
30
|
-
.normalfield {background: #ffffff url(
|
31
|
-
.requiredfield {background: #fafad8 url(
|
32
|
-
.fielderror {border: 1px solid #ff4444;background: #fee9eb url(
|
33
|
-
.fieldgood {background: #e0ffc7 url(
|
30
|
+
.normalfield {background: #ffffff url(../../images/notjustagrid/misc/formgreyback.gif) repeat-x;}
|
31
|
+
.requiredfield {background: #fafad8 url(../../images/notjustagrid/misc/formyellowback.gif) repeat-x top right;}
|
32
|
+
.fielderror {border: 1px solid #ff4444;background: #fee9eb url(../../images/notjustagrid/misc/formredback.gif) repeat-x top right;}
|
33
|
+
.fieldgood {background: #e0ffc7 url(../../images/notjustagrid/misc/formgreenback.gif) repeat-x;}
|
34
34
|
.requiredfield:focus, .fielderror:focus, .normalfield:forus {border: 1px solid #444444;-webkit-box-shadow: 0 0 7px rgba(0, 144, 255, .7);-moz-box-shadow: 0 0 7px rgba(0, 144, 255, .7);box-shadow: 0 0 7px rgba(0, 144, 255, .7);}
|
35
|
-
.requiredfield:focus {background: #fafad8 url(
|
36
|
-
.normalfield:focus {background: #e0ffc7 url(
|
37
|
-
.fielderror:focus {border: 1px solid #ff4444;background: #fee9eb url(
|
35
|
+
.requiredfield:focus {background: #fafad8 url(../../images/notjustagrid/misc/formyellowback.gif) repeat-x top right;}
|
36
|
+
.normalfield:focus {background: #e0ffc7 url(../../images/notjustagrid/misc/formgreenback.gif) repeat-x;}
|
37
|
+
.fielderror:focus {border: 1px solid #ff4444;background: #fee9eb url(../../images/notjustagrid/misc/formredback.gif) repeat-x top right;}
|
38
38
|
.smallfield {font:10px;padding:2px 1px 2px 1px;}
|
39
39
|
.largefield {font:16px}
|
40
40
|
/* ---------------------------------------------------------------------------- */
|
41
41
|
/* Styled Buttons ------------------------------------------------------------- */
|
42
42
|
/* ---------------------------------------------------------------------------- */
|
43
|
-
.styled_button, .styled_button:visited {background: #222 url(
|
43
|
+
.styled_button, .styled_button:visited {background: #222 url(../../images/notjustagrid/misc/transoverlay-matte.png) repeat-x;font: bold 12px "Trebuchet MS", Arial, Helvetica,sans-serif;text-transform:uppercase;text-decoration: none;line-height:30px;letter-spacing:1px;color: #fff;padding: 0 10px 0 10px;margin:0 3px;height:30px;border: 1px solid rgba(0,0,0,0.4);border-top: 1px solid rgba(255,255,255,0.4);border-left: 1px solid rgba(255,255,255,0.4);border-radius:15px;-moz-border-radius:15px;-webkit-border-radius: 15px;box-shadow: 0 1px 5px rgba(0,0,0,0.7);-moz-box-shadow: 0 1px 5px rgba(0,0,0,0.7);-webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.7);text-shadow: 0 -1px 1px rgba(0,0,0,0.25);position: relative;cursor: pointer;}
|
44
44
|
a.styled_button, a.styled_button:visited {color:#fff;height:30px;line-height:30px;padding:5px 10px;}
|
45
45
|
a.styled_button:hover, a.styled_button:active {color:#fff;white-space:nowrap;}
|
46
46
|
.cancel_button.styled_button:after, .confirm_button.styled_button:after, .question_button.styled_button:after, .delete_button.styled_button:after, .edit_button.styled_button:after, .view_button.styled_button:after {position:absolute;padding-top:7px;right:5px;}
|
47
47
|
.cancel_button.styled_button, .confirm_button.styled_button, .question_button.styled_button, .delete_button.styled_button, .edit_button.styled_button, .view_button.styled_button {padding-right:25px;}
|
48
|
-
.cancel_button.styled_button:after {content: url(
|
49
|
-
.confirm_button.styled_button:after {content: url(
|
50
|
-
.question_button.styled_button:after {content: url(
|
51
|
-
.delete_button.styled_button:after {content: url(
|
52
|
-
.edit_button.styled_button:after {content: url(
|
53
|
-
.view_button.styled_button:after {content: url(
|
48
|
+
.cancel_button.styled_button:after {content: url(../../images/notjustagrid/icons/icon-cancel.png);}
|
49
|
+
.confirm_button.styled_button:after {content: url(../../images/notjustagrid/icons/icon-success.png);}
|
50
|
+
.question_button.styled_button:after {content: url(../../images/notjustagrid/icons/icon-question.png);}
|
51
|
+
.delete_button.styled_button:after {content: url(../../images/notjustagrid/icons/icon-delete.png);}
|
52
|
+
.edit_button.styled_button:after {content: url(../../images/notjustagrid/icons/icon-edit.png);}
|
53
|
+
.view_button.styled_button:after {content: url(../../images/notjustagrid/icons/icon-view.png);}
|
54
54
|
.green.styled_button {background-color:#afc243;}
|
55
55
|
.red.styled_button {background-color: #e33100;}
|
56
56
|
.blue.styled_button {background-color:#6c93b3;}
|
@@ -59,4 +59,4 @@ a.styled_button:hover, a.styled_button:active {color:#fff;white-space:nowrap;}
|
|
59
59
|
.red.styled_button:hover {background-color: #bf2900;}
|
60
60
|
.blue.styled_button:hover {background-color:#5c7d98;}
|
61
61
|
.grey.styled_button:hover {background-color:#ccc;color:#666; text-shadow: 0 1px 1px rgba(255,255,255,0.8);}
|
62
|
-
@-moz-document url-prefix() {button.delete_button.styled_button:after, button.question_button.styled_button:after, button.confirm_button.styled_button:after, button.cancel_button.styled_button:after, button.edit_button.styled_button:after, button.view_button.styled_button:after {padding-top:1px;right:15px;}}
|
62
|
+
@-moz-document url-prefix() {button.delete_button.styled_button:after, button.question_button.styled_button:after, button.confirm_button.styled_button:after, button.cancel_button.styled_button:after, button.edit_button.styled_button:after, button.view_button.styled_button:after {padding-top:1px;right:15px;}}
|
@@ -10,16 +10,16 @@ table.plain td, table.plain th {padding:4px 6px 4px 6px;border:1px solid #bbb;}
|
|
10
10
|
/* ----- */
|
11
11
|
table.plain thead {color:#444;font-size:12px;font-weight:bold;text-transform:uppercase;text-shadow: 0 1px 1px rgba(255,255,255,0.9);}
|
12
12
|
table.plain thead th, table.plain thead td {padding:6px;}
|
13
|
-
table.plain thead tr {background:#eee url(
|
13
|
+
table.plain thead tr {background:#eee url(../../images/notjustagrid/misc/transoverlay-mattesoft.png) repeat-x;}
|
14
14
|
/* ----- */
|
15
15
|
/* tfoot */
|
16
16
|
/* ----- */
|
17
|
-
table.plain tfoot tr {background:#eee url(
|
17
|
+
table.plain tfoot tr {background:#eee url(../../images/notjustagrid/misc/transoverlay-mattesoft.png) repeat-x;}
|
18
18
|
table.plain tfoot {font-size: 10px;}
|
19
19
|
/* ----- */
|
20
20
|
/* tbody */
|
21
21
|
/* ----- */
|
22
|
-
table.plain tbody tr th {text-align:right;font-weight:bold;background:#eee url(
|
22
|
+
table.plain tbody tr th {text-align:right;font-weight:bold;background:#eee url(../../images/notjustagrid/misc/greycorner-even.gif) top left no-repeat;}
|
23
23
|
/* ---------------------------------------------------------------------------- */
|
24
24
|
/* Datalist Table ------------------------------------------------------------- */
|
25
25
|
/* ---------------------------------------------------------------------------- */
|
@@ -31,20 +31,20 @@ table.datalist td, table.datalist th {padding:4px 6px 4px 6px;border:1px solid #
|
|
31
31
|
/* ----- */
|
32
32
|
table.datalist thead {color:#444;font-size:12px;font-weight:bold;text-transform:uppercase;text-shadow: 0 1px 1px rgba(255,255,255,0.9);}
|
33
33
|
table.datalist thead th,table.datalist thead td {padding:6px;}
|
34
|
-
table.datalist thead tr {background:#eee url(
|
34
|
+
table.datalist thead tr {background:#eee url(../../images/notjustagrid/misc/transoverlay-matte.png) repeat-x;}
|
35
35
|
/* ----- */
|
36
36
|
/* tfoot */
|
37
37
|
/* ----- */
|
38
|
-
table.datalist tfoot tr {background:#eee url(
|
38
|
+
table.datalist tfoot tr {background:#eee url(../../images/notjustagrid/misc/transoverlay-matte.png) repeat-x;}
|
39
39
|
table.datalist tfoot td, table.datalist tfoot th {font-size: 10px;}
|
40
40
|
/* ----- */
|
41
41
|
/* tbody */
|
42
42
|
/* ----- */
|
43
|
-
table.datalist tbody tr th {text-align:right;background:url(
|
43
|
+
table.datalist tbody tr th {text-align:right;background:url(../../images/notjustagrid/misc/greycorner-even.gif) top left no-repeat; /* Background image for browser which don't support nth-child */}
|
44
44
|
table.datalist tbody tr:hover {background-color:#dcdcdc;} /* Hover colour for Internet Explorer and other browsers which don't support nth-child */
|
45
45
|
table.datalist tbody tr:nth-child(odd) {background-color:#e6e6e6;}
|
46
46
|
table.datalist tbody tr:nth-child(even) {background-color:#eee;}
|
47
47
|
table.datalist tbody tr:nth-child(odd):hover {background-color:#dcdcdc;}
|
48
48
|
table.datalist tbody tr:nth-child(even):hover {background-color:#d5d5d5;}
|
49
|
-
table.datalist tbody tr:nth-child(odd) th {background:url(
|
50
|
-
table.datalist tbody tr:nth-child(even) th {background:url(
|
49
|
+
table.datalist tbody tr:nth-child(odd) th {background:url(../../images/notjustagrid/misc/colourcorner-even.gif) top left no-repeat;}
|
50
|
+
table.datalist tbody tr:nth-child(even) th {background:url(../../images/notjustagrid/misc/colourcorner-odd.gif) top left no-repeat;}
|
@@ -2,23 +2,23 @@
|
|
2
2
|
/* ---------------------------------------------------------------------------- */
|
3
3
|
/* Filetype hint icons -------------------------------------------------------- */
|
4
4
|
/* ---------------------------------------------------------------------------- */
|
5
|
-
a[href ^='mailto:'] {padding-right: 10px;background: transparent url(
|
6
|
-
a[href $='.pdf'] {padding-right: 10px;background: transparent url(
|
7
|
-
a[href $='.xls'] {padding-right: 10px;background: transparent url(
|
8
|
-
a[href $='.ppt'] {padding-right: 10px;background: transparent url(
|
9
|
-
a[href $='.doc'] {padding-right: 10px;background: transparent url(
|
10
|
-
a[href $='.rtf'],a[href $='.txt'] {padding-right: 10px;background: transparent url(
|
11
|
-
a[href $='.wmv'],a[href $='.mov'],a[href $='.avi'],a[href $='.mpg'],a[href $='.flv'],a[href $='.f4v'],a[href $='.rm'],a[href $='.ram'] {padding-right: 10px;background: transparent url(
|
12
|
-
a[href $='.swf'] {padding-right: 10px;background: transparent url(
|
13
|
-
a[href $='.rss'] {padding-right: 10px;background: transparent url(
|
5
|
+
a[href ^='mailto:'] {padding-right: 10px;background: transparent url(../../images/notjustagrid/icons/icon-email-tiny.png) no-repeat right top;}
|
6
|
+
a[href $='.pdf'] {padding-right: 10px;background: transparent url(../../images/notjustagrid/icons/icon-pdf-tiny.png) no-repeat right top;}
|
7
|
+
a[href $='.xls'] {padding-right: 10px;background: transparent url(../../images/notjustagrid/icons/icon-excel-tiny.png) no-repeat right top;}
|
8
|
+
a[href $='.ppt'] {padding-right: 10px;background: transparent url(../../images/notjustagrid/icons/icon-powerpoint-tiny.png) no-repeat right top;}
|
9
|
+
a[href $='.doc'] {padding-right: 10px;background: transparent url(../../images/notjustagrid/icons/icon-word-tiny.png) no-repeat right top;}
|
10
|
+
a[href $='.rtf'],a[href $='.txt'] {padding-right: 10px;background: transparent url(../../images/notjustagrid/icons/icon-document-tiny.png) no-repeat right top;}
|
11
|
+
a[href $='.wmv'],a[href $='.mov'],a[href $='.avi'],a[href $='.mpg'],a[href $='.flv'],a[href $='.f4v'],a[href $='.rm'],a[href $='.ram'] {padding-right: 10px;background: transparent url(../../images/notjustagrid/icons/icon-video-tiny.png) no-repeat right top;}
|
12
|
+
a[href $='.swf'] {padding-right: 10px;background: transparent url(../../images/notjustagrid/icons/icon-flash-tiny.png) no-repeat right top;}
|
13
|
+
a[href $='.rss'] {padding-right: 10px;background: transparent url(../../images/notjustagrid/icons/icon-rss-tiny.png) no-repeat right top;}
|
14
14
|
/* ---------------------------------------------------------------------------- */
|
15
15
|
/* error boxes ---------------------------------------------------------------- */
|
16
16
|
/* ---------------------------------------------------------------------------- */
|
17
17
|
.warning, .error, .success, .question {padding:15px 15px 15px 70px;background-repeat:no-repeat;background-position:10px center;-moz-border-radius:12px;-webkit-border-radius:12px;border-radius:12px; -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .7); -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, .7); box-shadow: 0 2px 4px rgba(0, 0, 0, .7);margin:20px;text-align:left;position:relative;}
|
18
|
-
.warning {border:2px solid #d18819;background-image: url(
|
19
|
-
.error {border:2px solid #b04242;background-image: url(
|
20
|
-
.success {border:2px solid #459a2a;background-image: url(
|
21
|
-
.question {border:2px solid #637ec1;background-image: url(
|
18
|
+
.warning {border:2px solid #d18819;background-image: url(../../images/notjustagrid/icons/icon-warning-large.png);background-color:#FFFFCC;color:#660000;}
|
19
|
+
.error {border:2px solid #b04242;background-image: url(../../images/notjustagrid/icons/icon-error-large.png);background-color:#f6d4d7;color:#660000;}
|
20
|
+
.success {border:2px solid #459a2a;background-image: url(../../images/notjustagrid/icons/icon-success-large.png);background-color:#e0ffc7;color:#2a4f0b;}
|
21
|
+
.question {border:2px solid #637ec1;background-image: url(../../images/notjustagrid/icons/icon-question-large.png);background-color:#dde2ee;color:#2e52aa;}
|
22
22
|
.warning div, .error div, .success div, .question div {border:10px solid transparent;height:0;width:0;position:absolute;bottom:-25px;left:75px;}
|
23
23
|
.warning div {border-top:15px solid #d18819;}
|
24
24
|
.error div {border-top:15px solid #b04242;}
|
@@ -28,7 +28,7 @@ a[href $='.rss'] {padding-right: 10px;background: transparent url(../images/notj
|
|
28
28
|
/* Pagination styles ---------------------------------------------------------- */
|
29
29
|
/* ---------------------------------------------------------------------------- */
|
30
30
|
div.pagescontainer {padding: 3px;margin: 3px;text-align:right;color:#eee;}
|
31
|
-
div.pagescontainer a, div.pagescontainer span.ghost, div.pagescontainer span.current {font: bold 12px "Trebuchet MS", Arial, Helvetica,sans-serif;text-transform:uppercase;text-decoration: none;line-height:30px;letter-spacing:1px;color: #444;padding: 3px 8px 3px 8px;height:30px;margin:2px;text-align:center;text-shadow: 0 -1px 1px rgba(0,0,0,0.25);border-bottom: 1px solid rgba(0,0,0,0.4);border-top: 1px solid rgba(255,255,255,0.4);border-right: 1px solid rgba(0,0,0,0.4);border-left: 1px solid rgba(255,255,255,0.4);-moz-border-radius:15px;-webkit-border-radius: 15px; border-radius:15px;-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);box-shadow: 0 1px 3px rgba(0,0,0,0.5);text-shadow: 0 1px 1px rgba(255,255,255,0.8);background:#ccc url(
|
31
|
+
div.pagescontainer a, div.pagescontainer span.ghost, div.pagescontainer span.current {font: bold 12px "Trebuchet MS", Arial, Helvetica,sans-serif;text-transform:uppercase;text-decoration: none;line-height:30px;letter-spacing:1px;color: #444;padding: 3px 8px 3px 8px;height:30px;margin:2px;text-align:center;text-shadow: 0 -1px 1px rgba(0,0,0,0.25);border-bottom: 1px solid rgba(0,0,0,0.4);border-top: 1px solid rgba(255,255,255,0.4);border-right: 1px solid rgba(0,0,0,0.4);border-left: 1px solid rgba(255,255,255,0.4);-moz-border-radius:15px;-webkit-border-radius: 15px; border-radius:15px;-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);box-shadow: 0 1px 3px rgba(0,0,0,0.5);text-shadow: 0 1px 1px rgba(255,255,255,0.8);background:#ccc url(../../images/notjustagrid/misc/transoverlay-matte.png) repeat-x;}
|
32
32
|
div.pagescontainer a:hover, div.pagescontainer a:active {background-color:#afc243;color: #fff !important;text-shadow: 0 -1px 1px rgba(0,0,0,0.5);}
|
33
33
|
div.pagescontainer span.ghost { border-bottom: 1px solid rgba(0,0,0,0.1);border-top: 1px solid rgba(0,0,0,0.1);border-right: 1px solid rgba(0,0,0,0.1);border-left: 1px solid rgba(0,0,0,0.1); background-color:#fff;color:#ccc; -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.2);-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.2);box-shadow: 0 1px 3px rgba(0,0,0,0.2);}
|
34
34
|
div.pagescontainer span.current {background-color: #5c7d98;color: #fff;text-shadow: 0 -1px 1px rgba(0,0,0,0.5);}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: notjustagrid
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2011-
|
12
|
+
date: 2011-09-12 00:00:00.000000000Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
16
|
-
requirement: &
|
16
|
+
requirement: &2156677240 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: '3.0'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *2156677240
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: rake
|
27
|
-
requirement: &
|
27
|
+
requirement: &2156676520 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ~>
|
@@ -32,10 +32,10 @@ dependencies:
|
|
32
32
|
version: 0.9.2
|
33
33
|
type: :development
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *2156676520
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: sass
|
38
|
-
requirement: &
|
38
|
+
requirement: &2156669080 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - ~>
|
@@ -43,7 +43,7 @@ dependencies:
|
|
43
43
|
version: 3.1.7
|
44
44
|
type: :development
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
46
|
+
version_requirements: *2156669080
|
47
47
|
description: Make it easy to install notjustagrid into your Rails app
|
48
48
|
email:
|
49
49
|
- emachnic@broadmac.net
|
@@ -112,13 +112,16 @@ files:
|
|
112
112
|
- vendor/assets/images/notjustagrid/misc/transoverlay-matte.png
|
113
113
|
- vendor/assets/images/notjustagrid/misc/transoverlay-mattesoft.png
|
114
114
|
- vendor/assets/images/notjustagrid/misc/typegrid.gif
|
115
|
-
- vendor/assets/stylesheets/forms.scss.erb
|
116
|
-
- vendor/assets/stylesheets/grid1200.scss
|
117
|
-
- vendor/assets/stylesheets/grid1380.scss
|
118
|
-
- vendor/assets/stylesheets/grid1500.scss
|
119
|
-
- vendor/assets/stylesheets/grid960.scss
|
120
|
-
- vendor/assets/stylesheets/helpers.scss
|
121
|
-
- vendor/assets/stylesheets/reset.scss
|
115
|
+
- vendor/assets/stylesheets/notjustagrid/forms.scss.erb
|
116
|
+
- vendor/assets/stylesheets/notjustagrid/grid1200.scss
|
117
|
+
- vendor/assets/stylesheets/notjustagrid/grid1380.scss
|
118
|
+
- vendor/assets/stylesheets/notjustagrid/grid1500.scss
|
119
|
+
- vendor/assets/stylesheets/notjustagrid/grid960.scss
|
120
|
+
- vendor/assets/stylesheets/notjustagrid/helpers.scss
|
121
|
+
- vendor/assets/stylesheets/notjustagrid/reset.scss
|
122
|
+
- vendor/assets/stylesheets/notjustagrid/tables.scss.erb
|
123
|
+
- vendor/assets/stylesheets/notjustagrid/type.scss
|
124
|
+
- vendor/assets/stylesheets/notjustagrid/ux.scss.erb
|
122
125
|
- vendor/assets/stylesheets/src/forms.css
|
123
126
|
- vendor/assets/stylesheets/src/grid1200.css
|
124
127
|
- vendor/assets/stylesheets/src/grid1380.css
|
@@ -129,9 +132,6 @@ files:
|
|
129
132
|
- vendor/assets/stylesheets/src/tables.css
|
130
133
|
- vendor/assets/stylesheets/src/type.css
|
131
134
|
- vendor/assets/stylesheets/src/ux.css
|
132
|
-
- vendor/assets/stylesheets/tables.scss.erb
|
133
|
-
- vendor/assets/stylesheets/type.scss
|
134
|
-
- vendor/assets/stylesheets/ux.scss.erb
|
135
135
|
homepage: http://notjustagrid.com
|
136
136
|
licenses: []
|
137
137
|
post_install_message:
|
@@ -144,15 +144,21 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
144
144
|
- - ! '>='
|
145
145
|
- !ruby/object:Gem::Version
|
146
146
|
version: '0'
|
147
|
+
segments:
|
148
|
+
- 0
|
149
|
+
hash: -1371828357745584444
|
147
150
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
148
151
|
none: false
|
149
152
|
requirements:
|
150
153
|
- - ! '>='
|
151
154
|
- !ruby/object:Gem::Version
|
152
155
|
version: '0'
|
156
|
+
segments:
|
157
|
+
- 0
|
158
|
+
hash: -1371828357745584444
|
153
159
|
requirements: []
|
154
160
|
rubyforge_project: notjustagrid
|
155
|
-
rubygems_version: 1.8.
|
161
|
+
rubygems_version: 1.8.10
|
156
162
|
signing_key:
|
157
163
|
specification_version: 3
|
158
164
|
summary: The notjustagrid CSS framework in a gem
|