concisecss 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/app/assets/javascripts/concisecss/close.js +4 -4
  4. data/app/assets/javascripts/concisecss/dropdown.js +30 -30
  5. data/app/assets/javascripts/concisecss/naver.js +348 -348
  6. data/app/assets/javascripts/concisecss/navigation.js +18 -18
  7. data/app/assets/javascripts/concisecss/non-responsive.js +46 -46
  8. data/app/assets/stylesheets/_defaults.scss +55 -58
  9. data/app/assets/stylesheets/base/_blockquotes.scss +32 -32
  10. data/app/assets/stylesheets/base/_container.scss +8 -8
  11. data/app/assets/stylesheets/base/_forms.scss +83 -81
  12. data/app/assets/stylesheets/base/_grid.scss +63 -59
  13. data/app/assets/stylesheets/base/_headings.scss +137 -134
  14. data/app/assets/stylesheets/base/_lists.scss +109 -109
  15. data/app/assets/stylesheets/base/_main.scss +28 -25
  16. data/app/assets/stylesheets/base/_selection.scss +18 -18
  17. data/app/assets/stylesheets/base/_tables.scss +78 -76
  18. data/app/assets/stylesheets/base/_type.scss +50 -50
  19. data/app/assets/stylesheets/concise.scss +7 -12
  20. data/app/assets/stylesheets/generic/_clearfix.scss +9 -9
  21. data/app/assets/stylesheets/generic/_conditional.scss +111 -107
  22. data/app/assets/stylesheets/generic/_helper.scss +81 -81
  23. data/app/assets/stylesheets/generic/_mixins.scss +73 -66
  24. data/app/assets/stylesheets/generic/_normalize.scss +189 -189
  25. data/app/assets/stylesheets/generic/_print.scss +105 -104
  26. data/app/assets/stylesheets/generic/_shared.scss +36 -32
  27. data/app/assets/stylesheets/objects/_badges.scss +43 -43
  28. data/app/assets/stylesheets/objects/_breadcrumbs.scss +30 -30
  29. data/app/assets/stylesheets/objects/_buttons.scss +264 -264
  30. data/app/assets/stylesheets/objects/_colors.scss +28 -25
  31. data/app/assets/stylesheets/objects/_dropdowns.scss +153 -153
  32. data/app/assets/stylesheets/objects/_groups.scss +82 -82
  33. data/app/assets/stylesheets/objects/_navigation.scss +330 -325
  34. data/app/assets/stylesheets/objects/_progress.scss +92 -88
  35. data/app/assets/stylesheets/objects/_wells.scss +93 -93
  36. data/lib/concisecss/concisecss_source.rb +1 -6
  37. data/lib/concisecss/version.rb +1 -1
  38. metadata +2 -3
  39. data/app/assets/stylesheets/generic/_debug.scss +0 -98
@@ -1,53 +1,53 @@
1
1
  @if $use-badges == true {
2
- //------------------------------------//
3
- // $BADGES
4
- //------------------------------------//
5
- .label,
6
- .badge {
7
- background-color: #b5b5b5;
8
- color: #fff;
9
- @include font-size(12px);
10
- font-weight: bold;
11
- padding: 3px 7px;
12
- text-align: center;
13
- vertical-align: baseline;
14
- white-space: nowrap;
15
- }
2
+ //------------------------------------
3
+ // BADGES
4
+ //------------------------------------
5
+ .label,
6
+ .badge {
7
+ background-color: #b5b5b5;
8
+ color: #fff;
9
+ @include font-size(12px);
10
+ font-weight: bold;
11
+ padding: 3px 7px;
12
+ text-align: center;
13
+ vertical-align: baseline;
14
+ white-space: nowrap;
15
+ }
16
16
 
17
- .label {
18
- border-radius: 4px;
19
- display: inline;
20
- }
17
+ .label {
18
+ border-radius: 4px;
19
+ display: inline;
20
+ }
21
21
 
22
- .badge {
23
- border-radius: 10px;
24
- display: inline-block;
25
- padding: 1px 7px;
26
- }
22
+ .badge {
23
+ border-radius: 10px;
24
+ display: inline-block;
25
+ padding: 1px 7px;
26
+ }
27
27
 
28
- .label[href] {
29
- &:hover, &:focus {
30
- color: #fff;
31
- cursor: pointer;
32
- text-decoration: none;
33
- }
28
+ .label[href] {
29
+ &:hover, &:focus {
30
+ color: #fff;
31
+ cursor: pointer;
32
+ text-decoration: none;
34
33
  }
34
+ }
35
35
 
36
- a.badge {
37
- &:hover, &:focus {
38
- color: #fff;
39
- cursor: pointer;
40
- text-decoration: none;
41
- }
36
+ a.badge {
37
+ &:hover, &:focus {
38
+ color: #fff;
39
+ cursor: pointer;
40
+ text-decoration: none;
42
41
  }
42
+ }
43
43
 
44
- .label a,
45
- .badge a {
46
- color: #fff;
47
- cursor: pointer;
48
- text-decoration: none;
49
- }
44
+ .label a,
45
+ .badge a {
46
+ color: #fff;
47
+ cursor: pointer;
48
+ text-decoration: none;
49
+ }
50
50
 
51
- .label:empty,
52
- .badge:empty { display: none; }
51
+ .label:empty,
52
+ .badge:empty { display: none; }
53
53
  }
@@ -1,35 +1,35 @@
1
1
  @if $use-breadcrumbs == true {
2
- //------------------------------------//
3
- // $BREADCRUMBS
4
- //------------------------------------//
5
- .breadcrumbs {
6
- @include font-size(13px);
7
- margin: 12px 0;
8
- padding: 5px 15px 5px 0;
2
+ //------------------------------------
3
+ // BREADCRUMBS
4
+ //------------------------------------
5
+ .breadcrumbs {
6
+ @include font-size(13px);
7
+ margin: 12px 0;
8
+ padding: 5px 15px 5px 0;
9
+
10
+ li {
11
+ display: inline;
12
+ margin-right: 10px;
13
+
14
+ &:last-child { margin-right: 0px; }
15
+
16
+ &:after {
17
+ content: "/";
18
+ color: #ccc;
19
+ padding-left: 12px;
20
+ vertical-align: middle;
21
+ }
22
+
23
+ &:last-child {
24
+ color: #999;
9
25
 
10
- li {
11
- display: inline;
12
- margin-right: 10px;
13
-
14
- &:last-child { margin-right: 0px; }
15
-
16
- &:after {
17
- content: "/";
18
- color: #ccc;
19
- padding-left: 12px;
20
- vertical-align: middle;
21
- }
22
-
23
- &:last-child {
24
- color: #999;
25
-
26
- a { color: #999; }
27
-
28
- &:after { content: ""; }
29
- }
30
- }
26
+ a { color: #999; }
31
27
 
32
- .well,
33
- &.well { padding-left: 15px; }
28
+ &:after { content: ""; }
29
+ }
34
30
  }
31
+
32
+ .well,
33
+ &.well { padding-left: 15px; }
34
+ }
35
35
  }