Skip to content

Commit eb85f56

Browse files
committed
Dev init
2 parents 8b7abb0 + 0b5240b commit eb85f56

16 files changed

Lines changed: 124 additions & 12 deletions

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,12 +353,14 @@ bh_unicode_properties.cache
353353
GitHub.sublime-settings
354354

355355
### VisualStudioCode ###
356+
.vscode/
356357
.vscode/*
357-
!.vscode/settings.json
358+
.vscode/settings.json
358359
!.vscode/tasks.json
359360
!.vscode/launch.json
360361
!.vscode/extensions.json
361362
!.vscode/*.code-snippets
363+
themes/osi/.vscode/settings.json
362364

363365
# Local History for Visual Studio Code
364366
.history/

plugins/osi-features/inc/classes/taxonomies/class-taxonomy-license-category.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,10 @@ public function get_args() {
7171

7272
return wp_parse_args(
7373
[
74-
'rewrite' => array( 'slug' => 'license-category' ),
74+
'rewrite' => array(
75+
'slug' => 'license-category',
76+
'with_front' => false,
77+
),
7578
],
7679
parent::get_args()
7780
);

plugins/osi-features/inc/classes/taxonomies/class-taxonomy-publication.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,11 @@ public function get_args() {
7272
return wp_parse_args(
7373
[
7474
'hierarchical' => true,
75-
'rewrite' => array( 'slug' => 'publication' ),
75+
'rewrite' => array(
76+
'slug' => 'publication',
77+
'with_front' => false,
78+
),
79+
7680
],
7781
parent::get_args()
7882
);

plugins/osi-features/inc/classes/taxonomies/class-taxonomy-seat-type.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,10 @@ public function get_args() {
7272
return wp_parse_args(
7373
[
7474
'hierarchical' => false,
75-
'rewrite' => array( 'slug' => 'seat-type' ),
75+
'rewrite' => array(
76+
'slug' => 'seat-type',
77+
'with_front' => false,
78+
),
7679
],
7780
parent::get_args()
7881
);

plugins/osi-features/inc/classes/taxonomies/class-taxonomy-status.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,11 @@ public function get_args() {
7272
return wp_parse_args(
7373
[
7474
'hierarchical' => false,
75-
'rewrite' => array( 'slug' => 'status' ),
75+
'rewrite' => array(
76+
'slug' => 'about/board-of-directors',
77+
'with_front' => false,
78+
'hierarchical' => false,
79+
),
7680
],
7781
parent::get_args()
7882
);

plugins/osi-features/inc/classes/taxonomies/class-taxonomy-steward.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,10 @@ public function get_args() {
7272
return wp_parse_args(
7373
[
7474
'hierarchical' => false,
75-
'rewrite' => array( 'slug' => 'steward' ),
75+
'rewrite' => array(
76+
'slug' => 'steward',
77+
'with_front' => false,
78+
),
7679
],
7780
parent::get_args()
7881
);

themes/osi/assets/css/editor-style.css

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

themes/osi/assets/css/editor-style.css.map

Lines changed: 5 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

themes/osi/assets/scss/_5_objects.layout.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,11 @@
9191

9292
.single-license & {
9393
.content--page article:not(.archive), .comments {
94+
<<<<<<< HEAD
9495
max-width: $postMax !important;
96+
=======
97+
max-width: $boxedMax !important;
98+
>>>>>>> origin/develop
9599

96100
.alignwide {
97101
@extend %alignwide;

themes/osi/assets/scss/_6_components.header.scss

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,18 @@
6262
// all logos
6363
max-width: 300px;
6464
height: auto;
65+
<<<<<<< HEAD
6566
width: 100%;
6667
transform: translateZ(0); // chrome blurry fix
6768
transition: all .3s;
69+
=======
70+
width: auto;
71+
transform: translateZ(0); // chrome blurry fix
72+
transition: all .3s;
73+
@media only screen and (max-width: #{$break-small}) {
74+
max-width: 180px;
75+
}
76+
>>>>>>> origin/develop
6877
}
6978

7079
.hide-mobile {

0 commit comments

Comments
 (0)