Skip to content

Commit

Permalink
Sets content editor width back to 100%.
Browse files Browse the repository at this point in the history
  • Loading branch information
frankyonnetti committed Jun 3, 2024
1 parent ca38456 commit 424e604
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 8 deletions.
2 changes: 1 addition & 1 deletion claroalter/claroalter.info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ base theme: claro
description: 'DesignHammer Admin Theme Enhancements'
core_version_requirement: ^9 || ^10

version: '0.1.3'
version: '0.1.4'

libraries:
- claro/global-styling
Expand Down
File renamed without changes.
Binary file modified claroalter_base/bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions claroalter_base/claroalter.info.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Claro Alter
name: Claro Alter (Base)
type: theme
base theme: claro
description: 'DesignHammer Admin Theme Enhancements'
core_version_requirement: ^9 || ^10

version: '0.1.2'
version: '0.1.4'

libraries:
- claro/global-styling
Expand Down
10 changes: 10 additions & 0 deletions claroalter_base/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,16 @@ a:focus,
padding-top: 32px;
}

.layout-region--node-main,
.layout-region--node-footer {
width: 100%;
}

.layout-region--node-main .layout-region__content,
.layout-region--node-footer .layout-region__content {
max-width: unset;
}

.views-tabs .action-list li,
.views-tabs .views-tabs__action-list-button.form-submit,
.views-tabs a {
Expand Down
2 changes: 1 addition & 1 deletion claroalter_base/css/style.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions claroalter_base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
"license": "GPL-2.0 AND MIT",
"homepage": "https://designhammer.com",
"scripts": {
"serve": "browser-sync start --config './bsync-config.js'",
"serve": "browser-sync start --config './bsync.config.js'",
"style": "sass --style=expanded --error-css --source-map ./src/sass/style.scss:./css/style.css ./src/sass/toolbar.scss:./css/toolbar.css",
"postcss": "postcss ./css/**.css --use autoprefixer --no-map --replace",
"script": "uglifyjs ./src/js/script.js --source-map --compress --output ./js/script.js",
"build:style": "bun style && bun postcss",
"build": "bun build:style && bun script",
"onchange:style": "nodemon --watch ./src/sass/ --ext scss --exec 'bun build:style' --quiet",
"onchange:script": "nodemon --watch ./src/js/ --ext js --exec 'bun script' --quiet",
"watch": "concurrently --raw --kill-others 'bun serve' 'bun onchange:style' 'bun onchange:script'"
"watch:style": "nodemon --watch ./src/sass/ --ext scss --exec 'bun build:style' --quiet",
"watch:script": "nodemon --watch ./src/js/ --ext js --exec 'bun script' --quiet",
"watch": "concurrently --raw --kill-others 'bun serve' 'bun watch:style' 'bun watch:script'"
},
"browserslist": [
"> 0.2%",
Expand Down
10 changes: 10 additions & 0 deletions claroalter_base/src/sass/_main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,16 @@ a:focus,
}
}

.layout-region--node-main,
.layout-region--node-footer {
width: 100%;
}

.layout-region--node-main .layout-region__content,
.layout-region--node-footer .layout-region__content {
max-width: unset;
}

.views-tabs .action-list li,
.views-tabs .views-tabs__action-list-button.form-submit,
.views-tabs a {
Expand Down

0 comments on commit 424e604

Please sign in to comment.