Skip to content

Commit e928a6e

Browse files
committed
Some upcoming framework changes
1 parent 54445cc commit e928a6e

File tree

9 files changed

+17
-15
lines changed

9 files changed

+17
-15
lines changed

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ module.exports = function (grunt)
117117
forin: true,
118118
globals: {
119119
$: true,
120-
console: true, // Comment this out for production code.
120+
console: true,
121121
jQuery: true,
122122
Zepto: true,
123123
define: true,

js/app.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
//import {$,jQuery} from 'jquery';
1+
//import $ from 'jquery';
22
// export for others scripts to use
33
//window.$ = $;
4-
//window.jQuery = jQuery;
54

65
import Prism from 'prismjs';
76
import 'prismjs/plugins/line-numbers/prism-line-numbers';

scss/app.scss

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
// Support non-latin languages?
77
$internationalization: true,
88

9+
// Which colour scheme?
10+
$color-scheme: default,
11+
912
// Support for Dark Mode?
1013
$use-dark-mode: true,
1114

@@ -16,10 +19,10 @@
1619
$use-icons: true,
1720

1821
// typography grid
19-
$base-font-size: 16px,
20-
$base-line-height: 1.5,
21-
$code-font-size: 0.875rem,
22-
$small-font-size: 0.8125rem,
22+
$base-font-size: 16px,
23+
$base-line-height: 1.5,
24+
$code-font-size: 0.875rem,
25+
$small-font-size: 0.8125rem,
2326

2427
// layout grid
2528
$container-max-width: 75rem,

templates/forms/misc/-content--homepage.txp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
</div>
102102

103103

104-
<div class="wrapper zebra--subtle">
104+
<div class="wrapper box--subtle">
105105
<div class="container">
106106

107107
<div class="align-center py-1">
@@ -162,7 +162,7 @@
162162
</div>
163163

164164

165-
<div class="wrapper zebra--strong">
165+
<div class="wrapper box--strong">
166166
<div class="container">
167167

168168
<div class="align-center py-2 pb-4">

templates/pages/default.txp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<div class="wrapper">
5050
<txp:output_form form="breadcrumbs" />
5151
<txp:if_variable name="page-type" value="search-page">
52-
<div class="zebra--subtle">
52+
<div class="box--subtle">
5353
<div class="container">
5454
<txp:output_form form="search-hero" />
5555
</div>

templates/pages/error_default.txp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<txp:output_form form="header" />
1111
<div class="wrapper">
1212
<txp:output_form form="breadcrumbs" />
13-
<div class="zebra--subtle">
13+
<div class="box--subtle">
1414
<div class="container">
1515
<txp:output_form form="search-hero" />
1616
</div>

themes/hive-framework-0.0.8/forms/misc/-content--homepage.txp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
</div>
102102

103103

104-
<div class="wrapper zebra--subtle">
104+
<div class="wrapper box--subtle">
105105
<div class="container">
106106

107107
<div class="align-center py-1">
@@ -162,7 +162,7 @@
162162
</div>
163163

164164

165-
<div class="wrapper zebra--strong">
165+
<div class="wrapper box--strong">
166166
<div class="container">
167167

168168
<div class="align-center py-2 pb-4">

themes/hive-framework-0.0.8/pages/default.txp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<div class="wrapper">
5050
<txp:output_form form="breadcrumbs" />
5151
<txp:if_variable name="page-type" value="search-page">
52-
<div class="zebra--subtle">
52+
<div class="box--subtle">
5353
<div class="container">
5454
<txp:output_form form="search-hero" />
5555
</div>

themes/hive-framework-0.0.8/pages/error_default.txp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<txp:output_form form="header" />
1111
<div class="wrapper">
1212
<txp:output_form form="breadcrumbs" />
13-
<div class="zebra--subtle">
13+
<div class="box--subtle">
1414
<div class="container">
1515
<txp:output_form form="search-hero" />
1616
</div>

0 commit comments

Comments
 (0)