vitrina 0.2.8 → 0.3.0

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.
Files changed (64) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +13 -2
  3. data/_includes/head.html +1 -1
  4. data/_includes/util/items.html +9 -3
  5. data/_includes/util/navbar_items.html +9 -3
  6. data/_sass/elements.scss +1 -1
  7. data/node_modules/.yarn-integrity +3 -3
  8. data/node_modules/bulma/CHANGELOG.md +69 -0
  9. data/node_modules/bulma/README.md +1 -1
  10. data/node_modules/bulma/bulma.sass +2 -1
  11. data/node_modules/bulma/css/bulma-rtl.css +11331 -0
  12. data/node_modules/bulma/css/bulma-rtl.css.map +1 -0
  13. data/node_modules/bulma/css/bulma-rtl.min.css +1 -0
  14. data/node_modules/bulma/css/bulma.css +6935 -6459
  15. data/node_modules/bulma/css/bulma.css.map +1 -1
  16. data/node_modules/bulma/css/bulma.min.css +1 -1
  17. data/node_modules/bulma/package.json +11 -7
  18. data/node_modules/bulma/sass/.DS_Store +0 -0
  19. data/node_modules/bulma/sass/base/_all.sass +0 -1
  20. data/node_modules/bulma/sass/base/generic.sass +1 -1
  21. data/node_modules/bulma/sass/base/helpers.sass +1 -281
  22. data/node_modules/bulma/sass/base/minireset.sass +1 -1
  23. data/node_modules/bulma/sass/components/_all.sass +0 -1
  24. data/node_modules/bulma/sass/components/breadcrumb.sass +3 -3
  25. data/node_modules/bulma/sass/components/card.sass +1 -1
  26. data/node_modules/bulma/sass/components/dropdown.sass +3 -3
  27. data/node_modules/bulma/sass/components/level.sass +2 -2
  28. data/node_modules/bulma/sass/components/media.sass +10 -8
  29. data/node_modules/bulma/sass/components/menu.sass +2 -2
  30. data/node_modules/bulma/sass/components/message.sass +1 -1
  31. data/node_modules/bulma/sass/components/modal.sass +2 -2
  32. data/node_modules/bulma/sass/components/navbar.sass +9 -9
  33. data/node_modules/bulma/sass/components/panel.sass +2 -2
  34. data/node_modules/bulma/sass/components/tabs.sass +35 -12
  35. data/node_modules/bulma/sass/elements/button.sass +7 -7
  36. data/node_modules/bulma/sass/elements/content.sass +5 -5
  37. data/node_modules/bulma/sass/elements/notification.sass +7 -2
  38. data/node_modules/bulma/sass/elements/progress.sass +1 -1
  39. data/node_modules/bulma/sass/elements/table.sass +3 -1
  40. data/node_modules/bulma/sass/elements/tag.sass +24 -16
  41. data/node_modules/bulma/sass/form/checkbox-radio.sass +1 -1
  42. data/node_modules/bulma/sass/form/file.sass +2 -2
  43. data/node_modules/bulma/sass/form/select.sass +4 -4
  44. data/node_modules/bulma/sass/form/tools.sass +18 -10
  45. data/node_modules/bulma/sass/helpers/_all.sass +10 -0
  46. data/node_modules/bulma/sass/helpers/color.sass +37 -0
  47. data/node_modules/bulma/sass/helpers/float.sass +8 -0
  48. data/node_modules/bulma/sass/helpers/other.sass +8 -0
  49. data/node_modules/bulma/sass/helpers/overflow.sass +2 -0
  50. data/node_modules/bulma/sass/helpers/position.sass +5 -0
  51. data/node_modules/bulma/sass/helpers/spacing.sass +28 -0
  52. data/node_modules/bulma/sass/helpers/typography.sass +98 -0
  53. data/node_modules/bulma/sass/helpers/visibility.sass +122 -0
  54. data/node_modules/bulma/sass/layout/hero.sass +1 -1
  55. data/node_modules/bulma/sass/utilities/_all.sass +1 -1
  56. data/node_modules/bulma/sass/utilities/derived-variables.scss +132 -0
  57. data/node_modules/bulma/sass/utilities/functions.sass +5 -0
  58. data/node_modules/bulma/sass/utilities/initial-variables.sass +1 -0
  59. data/node_modules/bulma/sass/utilities/mixins.sass +24 -0
  60. data/package.json +2 -2
  61. data/vitrina.gemspec +1 -1
  62. metadata +15 -4
  63. data/node_modules/bulma/sass/components/list.sass +0 -39
  64. data/node_modules/bulma/sass/utilities/derived-variables.sass +0 -106
@@ -108,3 +108,8 @@
108
108
  @if type-of($color) != 'color'
109
109
  @return $color
110
110
  @return darken($color, $amount)
111
+
112
+ @function bulmaLighten($color, $amount)
113
+ @if type-of($color) != 'color'
114
+ @return $color
115
+ @return lighten($color, $amount)
@@ -75,3 +75,4 @@ $speed: 86ms !default
75
75
  // Flags
76
76
 
77
77
  $variable-columns: true !default
78
+ $rtl: false !default
@@ -128,6 +128,30 @@
128
128
  @media screen and (min-width: $fullhd)
129
129
  @content
130
130
 
131
+ =ltr
132
+ @if not $rtl
133
+ @content
134
+
135
+ =rtl
136
+ @if $rtl
137
+ @content
138
+
139
+ =ltr-property($property, $spacing, $right: true)
140
+ $normal: if($right, "right", "left")
141
+ $opposite: if($right, "left", "right")
142
+ @if $rtl
143
+ #{$property}-#{$opposite}: $spacing
144
+ @else
145
+ #{$property}-#{$normal}: $spacing
146
+
147
+ =ltr-position($spacing, $right: true)
148
+ $normal: if($right, "right", "left")
149
+ $opposite: if($right, "left", "right")
150
+ @if $rtl
151
+ #{$opposite}: $spacing
152
+ @else
153
+ #{$normal}: $spacing
154
+
131
155
  // Placeholders
132
156
 
133
157
  =unselectable
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vitrina",
3
- "version": "0.2.8",
3
+ "version": "0.3.0",
4
4
  "description": "A general purpose, configurable, Jekyll theme",
5
5
  "main": "index.html",
6
6
  "author": {
@@ -26,7 +26,7 @@
26
26
  "build": "bundle exec jekyll build"
27
27
  },
28
28
  "dependencies": {
29
- "bulma": "^0.8.2",
29
+ "bulma": "^0.9.0",
30
30
  "fork-awesome": "^1.1.7"
31
31
  }
32
32
  }
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'vitrina'
5
- s.version = '0.2.8'
5
+ s.version = '0.3.0'
6
6
  s.authors = ['Augusto Goulart']
7
7
  s.email = ['josegoulart.aluno@unipampa.edu.br']
8
8
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vitrina
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.8
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Augusto Goulart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-02 00:00:00.000000000 Z
11
+ date: 2020-09-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: github-pages
@@ -144,6 +144,9 @@ files:
144
144
  - node_modules/bulma/LICENSE
145
145
  - node_modules/bulma/README.md
146
146
  - node_modules/bulma/bulma.sass
147
+ - node_modules/bulma/css/bulma-rtl.css
148
+ - node_modules/bulma/css/bulma-rtl.css.map
149
+ - node_modules/bulma/css/bulma-rtl.min.css
147
150
  - node_modules/bulma/css/bulma.css
148
151
  - node_modules/bulma/css/bulma.css.map
149
152
  - node_modules/bulma/css/bulma.min.css
@@ -158,7 +161,6 @@ files:
158
161
  - node_modules/bulma/sass/components/card.sass
159
162
  - node_modules/bulma/sass/components/dropdown.sass
160
163
  - node_modules/bulma/sass/components/level.sass
161
- - node_modules/bulma/sass/components/list.sass
162
164
  - node_modules/bulma/sass/components/media.sass
163
165
  - node_modules/bulma/sass/components/menu.sass
164
166
  - node_modules/bulma/sass/components/message.sass
@@ -191,6 +193,15 @@ files:
191
193
  - node_modules/bulma/sass/grid/_all.sass
192
194
  - node_modules/bulma/sass/grid/columns.sass
193
195
  - node_modules/bulma/sass/grid/tiles.sass
196
+ - node_modules/bulma/sass/helpers/_all.sass
197
+ - node_modules/bulma/sass/helpers/color.sass
198
+ - node_modules/bulma/sass/helpers/float.sass
199
+ - node_modules/bulma/sass/helpers/other.sass
200
+ - node_modules/bulma/sass/helpers/overflow.sass
201
+ - node_modules/bulma/sass/helpers/position.sass
202
+ - node_modules/bulma/sass/helpers/spacing.sass
203
+ - node_modules/bulma/sass/helpers/typography.sass
204
+ - node_modules/bulma/sass/helpers/visibility.sass
194
205
  - node_modules/bulma/sass/layout/_all.sass
195
206
  - node_modules/bulma/sass/layout/footer.sass
196
207
  - node_modules/bulma/sass/layout/hero.sass
@@ -199,7 +210,7 @@ files:
199
210
  - node_modules/bulma/sass/utilities/_all.sass
200
211
  - node_modules/bulma/sass/utilities/animations.sass
201
212
  - node_modules/bulma/sass/utilities/controls.sass
202
- - node_modules/bulma/sass/utilities/derived-variables.sass
213
+ - node_modules/bulma/sass/utilities/derived-variables.scss
203
214
  - node_modules/bulma/sass/utilities/functions.sass
204
215
  - node_modules/bulma/sass/utilities/initial-variables.sass
205
216
  - node_modules/bulma/sass/utilities/mixins.sass
@@ -1,39 +0,0 @@
1
- $list-background-color: $scheme-main !default
2
- $list-shadow: 0 2px 3px rgba($scheme-invert, 0.1), 0 0 0 1px rgba($scheme-invert, 0.1) !default
3
- $list-radius: $radius !default
4
-
5
- $list-item-border: 1px solid $border !default
6
- $list-item-color: $text !default
7
- $list-item-active-background-color: $link !default
8
- $list-item-active-color: $link-invert !default
9
- $list-item-hover-background-color: $background !default
10
-
11
- .list
12
- @extend %block
13
- background-color: $list-background-color
14
- border-radius: $list-radius
15
- box-shadow: $list-shadow
16
- // &.is-hoverable > .list-item:hover:not(.is-active)
17
- // background-color: $list-item-hover-background-color
18
- // cursor: pointer
19
-
20
- .list-item
21
- display: block
22
- padding: 0.5em 1em
23
- &:not(a)
24
- color: $list-item-color
25
- &:first-child
26
- border-top-left-radius: $list-radius
27
- border-top-right-radius: $list-radius
28
- &:last-child
29
- border-bottom-left-radius: $list-radius
30
- border-bottom-right-radius: $list-radius
31
- &:not(:last-child)
32
- border-bottom: $list-item-border
33
- &.is-active
34
- background-color: $list-item-active-background-color
35
- color: $list-item-active-color
36
-
37
- a.list-item
38
- background-color: $list-item-hover-background-color
39
- cursor: pointer
@@ -1,106 +0,0 @@
1
- $primary: $turquoise !default
2
-
3
- $info: $cyan !default
4
- $success: $green !default
5
- $warning: $yellow !default
6
- $danger: $red !default
7
-
8
- $light: $white-ter !default
9
- $dark: $grey-darker !default
10
-
11
- // Invert colors
12
-
13
- $orange-invert: findColorInvert($orange) !default
14
- $yellow-invert: findColorInvert($yellow) !default
15
- $green-invert: findColorInvert($green) !default
16
- $turquoise-invert: findColorInvert($turquoise) !default
17
- $cyan-invert: findColorInvert($cyan) !default
18
- $blue-invert: findColorInvert($blue) !default
19
- $purple-invert: findColorInvert($purple) !default
20
- $red-invert: findColorInvert($red) !default
21
-
22
- $primary-invert: findColorInvert($primary) !default
23
- $primary-light: findLightColor($primary) !default
24
- $primary-dark: findDarkColor($primary) !default
25
- $info-invert: findColorInvert($info) !default
26
- $info-light: findLightColor($info) !default
27
- $info-dark: findDarkColor($info) !default
28
- $success-invert: findColorInvert($success) !default
29
- $success-light: findLightColor($success) !default
30
- $success-dark: findDarkColor($success) !default
31
- $warning-invert: findColorInvert($warning) !default
32
- $warning-light: findLightColor($warning) !default
33
- $warning-dark: findDarkColor($warning) !default
34
- $danger-invert: findColorInvert($danger) !default
35
- $danger-light: findLightColor($danger) !default
36
- $danger-dark: findDarkColor($danger) !default
37
- $light-invert: findColorInvert($light) !default
38
- $dark-invert: findColorInvert($dark) !default
39
-
40
- // General colors
41
-
42
- $scheme-main: $white !default
43
- $scheme-main-bis: $white-bis !default
44
- $scheme-main-ter: $white-ter !default
45
- $scheme-invert: $black !default
46
- $scheme-invert-bis: $black-bis !default
47
- $scheme-invert-ter: $black-ter !default
48
-
49
- $background: $white-ter !default
50
-
51
- $border: $grey-lighter !default
52
- $border-hover: $grey-light !default
53
- $border-light: $grey-lightest !default
54
- $border-light-hover: $grey-light !default
55
-
56
- // Text colors
57
-
58
- $text: $grey-dark !default
59
- $text-invert: findColorInvert($text) !default
60
- $text-light: $grey !default
61
- $text-strong: $grey-darker !default
62
-
63
- // Code colors
64
-
65
- $code: $red !default
66
- $code-background: $background !default
67
-
68
- $pre: $text !default
69
- $pre-background: $background !default
70
-
71
- // Link colors
72
-
73
- $link: $blue !default
74
- $link-invert: findColorInvert($link) !default
75
- $link-light: findLightColor($link) !default
76
- $link-dark: findDarkColor($link) !default
77
- $link-visited: $purple !default
78
-
79
- $link-hover: $grey-darker !default
80
- $link-hover-border: $grey-light !default
81
-
82
- $link-focus: $grey-darker !default
83
- $link-focus-border: $blue !default
84
-
85
- $link-active: $grey-darker !default
86
- $link-active-border: $grey-dark !default
87
-
88
- // Typography
89
-
90
- $family-primary: $family-sans-serif !default
91
- $family-secondary: $family-sans-serif !default
92
- $family-code: $family-monospace !default
93
-
94
- $size-small: $size-7 !default
95
- $size-normal: $size-6 !default
96
- $size-medium: $size-5 !default
97
- $size-large: $size-4 !default
98
-
99
- // Lists and maps
100
- $custom-colors: null !default
101
- $custom-shades: null !default
102
-
103
- $colors: mergeColorMaps(("white": ($white, $black), "black": ($black, $white), "light": ($light, $light-invert), "dark": ($dark, $dark-invert), "primary": ($primary, $primary-invert, $primary-light, $primary-dark), "link": ($link, $link-invert, $link-light, $link-dark), "info": ($info, $info-invert, $info-light, $info-dark), "success": ($success, $success-invert, $success-light, $success-dark), "warning": ($warning, $warning-invert, $warning-light, $warning-dark), "danger": ($danger, $danger-invert, $danger-light, $danger-dark)), $custom-colors) !default
104
- $shades: mergeColorMaps(("black-bis": $black-bis, "black-ter": $black-ter, "grey-darker": $grey-darker, "grey-dark": $grey-dark, "grey": $grey, "grey-light": $grey-light, "grey-lighter": $grey-lighter, "white-ter": $white-ter, "white-bis": $white-bis), $custom-shades) !default
105
-
106
- $sizes: $size-1 $size-2 $size-3 $size-4 $size-5 $size-6 $size-7 !default