bulma-clean-theme 0.3 → 0.4

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.
@@ -11,6 +11,10 @@ $table-head-cell-color: $text-strong !default
11
11
  $table-foot-cell-border-width: 2px 0 0 !default
12
12
  $table-foot-cell-color: $text-strong !default
13
13
 
14
+ $table-head-background-color: transparent !default
15
+ $table-body-background-color: transparent !default
16
+ $table-foot-background-color: transparent !default
17
+
14
18
  $table-row-hover-background-color: $white-bis !default
15
19
 
16
20
  $table-row-active-background-color: $primary !default
@@ -62,16 +66,19 @@ $table-striped-row-even-hover-background-color: $white-ter !default
62
66
  border-color: $table-row-active-color
63
67
  color: currentColor
64
68
  thead
69
+ background-color: $table-head-background-color
65
70
  td,
66
71
  th
67
72
  border-width: $table-head-cell-border-width
68
73
  color: $table-head-cell-color
69
74
  tfoot
75
+ background-color: $table-foot-background-color
70
76
  td,
71
77
  th
72
78
  border-width: $table-foot-cell-border-width
73
79
  color: $table-foot-cell-color
74
80
  tbody
81
+ background-color: $table-body-background-color
75
82
  tr
76
83
  &:last-child
77
84
  td,
@@ -16,6 +16,13 @@ $tag-delete-margin: 1px !default
16
16
  margin-bottom: -0.5rem
17
17
  &:not(:last-child)
18
18
  margin-bottom: 1rem
19
+ // Sizes
20
+ &.are-medium
21
+ .tag:not(.is-normal):not(.is-large)
22
+ font-size: $size-normal
23
+ &.are-large
24
+ .tag:not(.is-normal):not(.is-medium)
25
+ font-size: $size-medium
19
26
  &.has-addons
20
27
  .tag
21
28
  margin-right: 0
@@ -37,6 +44,16 @@ $tag-delete-margin: 1px !default
37
44
  margin-left: 0.5rem
38
45
  &:not(:last-child)
39
46
  margin-right: 0
47
+ &.has-addons
48
+ .tag
49
+ margin-right: 0
50
+ &:not(:first-child)
51
+ margin-left: 0
52
+ border-bottom-left-radius: 0
53
+ border-top-left-radius: 0
54
+ &:not(:last-child)
55
+ border-bottom-right-radius: 0
56
+ border-top-right-radius: 0
40
57
 
41
58
  .tag:not(body)
42
59
  align-items: center
@@ -62,6 +79,8 @@ $tag-delete-margin: 1px !default
62
79
  background-color: $color
63
80
  color: $color-invert
64
81
  // Sizes
82
+ &.is-normal
83
+ font-size: $size-small
65
84
  &.is-medium
66
85
  font-size: $size-normal
67
86
  &.is-large
@@ -1,5 +1,6 @@
1
1
  $footer-background-color: $white-bis !default
2
+ $footer-padding: 3rem 1.5rem 6rem !default
2
3
 
3
4
  .footer
4
5
  background-color: $footer-background-color
5
- padding: 3rem 1.5rem 6rem
6
+ padding: $footer-padding
@@ -109,8 +109,6 @@
109
109
  min-height: 50vh
110
110
  &.is-fullheight
111
111
  min-height: 100vh
112
- &.is-fullheight-with-navbar
113
- min-height: calc(100vh - #{$navbar-height})
114
112
 
115
113
  // Components
116
114
 
@@ -33,7 +33,8 @@ $control-padding-horizontal: calc(0.625em - #{$control-border-width}) !default
33
33
  &:active,
34
34
  &.is-active
35
35
  outline: none
36
- &[disabled]
36
+ &[disabled],
37
+ fieldset[disabled] &
37
38
  cursor: not-allowed
38
39
 
39
40
  %control
@@ -67,6 +67,7 @@ $link-active-border: $grey-dark !default
67
67
  // Typography
68
68
 
69
69
  $family-primary: $family-sans-serif !default
70
+ $family-secondary: $family-sans-serif !default
70
71
  $family-code: $family-monospace !default
71
72
 
72
73
  $size-small: $size-7 !default
data/package-lock.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "bulma-clean-theme",
3
+ "version": "1.0.0",
4
+ "lockfileVersion": 1,
5
+ "requires": true,
6
+ "dependencies": {
7
+ "bulma": {
8
+ "version": "0.7.4",
9
+ "resolved": "https://registry.npmjs.org/bulma/-/bulma-0.7.4.tgz",
10
+ "integrity": "sha512-krG2rP6eAX1WE0sf6O0SC/FUVSOBX4m1PBC2+GKLpb2pX0qanaDqcv9U2nu75egFrsHkI0zdWYuk/oGwoszVWg=="
11
+ }
12
+ }
13
+ }
data/package.json CHANGED
@@ -10,6 +10,6 @@
10
10
  "author": "chrisrhymes",
11
11
  "license": "MIT",
12
12
  "dependencies": {
13
- "bulma": "^0.7.2"
14
- },
13
+ "bulma": "^0.7.4"
14
+ }
15
15
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bulma-clean-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.3'
4
+ version: '0.4'
5
5
  platform: ruby
6
6
  authors:
7
7
  - chrisrhymes
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-03-02 00:00:00.000000000 Z
11
+ date: 2019-03-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -80,20 +80,48 @@ dependencies:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '2.5'
83
+ - !ruby/object:Gem::Dependency
84
+ name: kramdown
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '1.17'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '1.17'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rouge
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '3.3'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '3.3'
83
111
  - !ruby/object:Gem::Dependency
84
112
  name: bundler
85
113
  requirement: !ruby/object:Gem::Requirement
86
114
  requirements:
87
115
  - - "~>"
88
116
  - !ruby/object:Gem::Version
89
- version: '1.16'
117
+ version: '2.0'
90
118
  type: :development
91
119
  prerelease: false
92
120
  version_requirements: !ruby/object:Gem::Requirement
93
121
  requirements:
94
122
  - - "~>"
95
123
  - !ruby/object:Gem::Version
96
- version: '1.16'
124
+ version: '2.0'
97
125
  - !ruby/object:Gem::Dependency
98
126
  name: rake
99
127
  requirement: !ruby/object:Gem::Requirement
@@ -126,6 +154,7 @@ files:
126
154
  - _includes/menubar.html
127
155
  - _includes/pagination.html
128
156
  - _includes/post-card.html
157
+ - _includes/tabs.html
129
158
  - _layouts/blog.html
130
159
  - _layouts/default.html
131
160
  - _layouts/page.html
@@ -135,6 +164,7 @@ files:
135
164
  - _posts/2018-10-13-test.md
136
165
  - _sass/_layout.scss
137
166
  - _sass/_main.scss
167
+ - _sass/syntax.scss
138
168
  - assets/css/app.scss
139
169
  - assets/js/app.js
140
170
  - blog/index.html
@@ -194,6 +224,7 @@ files:
194
224
  - node_modules/bulma/sass/utilities/functions.sass
195
225
  - node_modules/bulma/sass/utilities/initial-variables.sass
196
226
  - node_modules/bulma/sass/utilities/mixins.sass
227
+ - package-lock.json
197
228
  - package.json
198
229
  homepage: https://www.github.com/chrisrhymes/bulma-clean-theme
199
230
  licenses: