Format SCSS to use CSS-safe comments so i don't break everything again when doing CSS
This commit is contained in:
parent
1293a3cbdd
commit
d38cdacedd
7 changed files with 66 additions and 12 deletions
|
@ -12,7 +12,7 @@ dependencies:
|
|||
id: articletopics
|
||||
theme: geofresco
|
||||
region: sidebar_first
|
||||
weight: -8
|
||||
weight: -9
|
||||
provider: null
|
||||
plugin: 'facet_block:article_topics'
|
||||
settings:
|
||||
|
|
|
@ -12,7 +12,7 @@ dependencies:
|
|||
id: articletype
|
||||
theme: geofresco
|
||||
region: sidebar_first
|
||||
weight: -7
|
||||
weight: -8
|
||||
provider: null
|
||||
plugin: 'facet_block:article_type'
|
||||
settings:
|
||||
|
|
29
config/sync/block.block.test.yml
Normal file
29
config/sync/block.block.test.yml
Normal file
|
@ -0,0 +1,29 @@
|
|||
uuid: 244b7196-d70f-4c7f-a6cc-052613934da2
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- fixed_block_content.fixed_block_content.test
|
||||
module:
|
||||
- block_visibility_groups
|
||||
- fixed_block_content
|
||||
theme:
|
||||
- geofresco
|
||||
id: test
|
||||
theme: geofresco
|
||||
region: tile_one
|
||||
weight: -8
|
||||
provider: null
|
||||
plugin: 'fixed_block_content:test'
|
||||
settings:
|
||||
id: 'fixed_block_content:test'
|
||||
label: Test
|
||||
provider: fixed_block_content
|
||||
label_display: '0'
|
||||
view_mode: ''
|
||||
visibility:
|
||||
condition_group:
|
||||
id: condition_group
|
||||
negate: false
|
||||
block_visibility_group: ''
|
||||
context_mapping: { }
|
|
@ -0,0 +1,11 @@
|
|||
uuid: 4397074c-50bf-4bc6-a5e4-c6237f9fa9f2
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
module:
|
||||
- default_content
|
||||
id: config_sync.module.default_content
|
||||
snapshotSet: config_sync
|
||||
extensionType: module
|
||||
extensionName: default_content
|
||||
items: { }
|
|
@ -31,6 +31,7 @@ module:
|
|||
ctools: 0
|
||||
datetime: 0
|
||||
dblog: 0
|
||||
default_content: 0
|
||||
drutopia_article: 0
|
||||
drutopia_blog: 0
|
||||
drutopia_collection: 0
|
||||
|
|
12
config/sync/fixed_block_content.fixed_block_content.test.yml
Normal file
12
config/sync/fixed_block_content.fixed_block_content.test.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
uuid: b0d8dca6-8a54-4dc2-9de5-b4181947f699
|
||||
langcode: en
|
||||
status: true
|
||||
dependencies:
|
||||
config:
|
||||
- block_content.type.basic
|
||||
content:
|
||||
- 'block_content:basic:979bd711-02c7-4365-90d6-68a2df808816'
|
||||
id: test
|
||||
title: Test
|
||||
block_content_bundle: basic
|
||||
default_content: '{"_links":{"self":{"href":"https:\/\/geo.ddev.site\/block\/2?_format=hal_json"},"type":{"href":"http:\/\/fixed_block_content.drupal.org\/rest\/type\/block_content\/basic"}},"langcode":[{"value":"en","lang":"en"}],"type":[{"target_id":"basic"}],"status":[{"value":true,"lang":"en"}],"info":[{"value":"Test","lang":"en"}],"reusable":[{"value":true}],"default_langcode":[{"value":true,"lang":"en"}],"revision_translation_affected":[{"value":true,"lang":"en"}],"metatag":[{"value":{"title":"| Grassroots Economic Organizing","canonical_url":"https:\/\/geo.ddev.site\/block\/2"}}],"body":[{"value":"\u003Cp\u003EHEEEEEY this is a test Test TEST\u003C\/p\u003E\r\n\r\n\u003Cp\u003EPlease... do something?\u003C\/p\u003E\r\n","format":"basic_html","processed":"\u003Cp\u003EHEEEEEY this is a test Test TEST\u003C\/p\u003E\n\n\u003Cp\u003EPlease... do something?\u003C\/p\u003E","summary":"","lang":"en"}]}'
|
|
@ -1,10 +1,14 @@
|
|||
@charset "UTF-8";
|
||||
// Extend or override Bulma's components,
|
||||
// ../../node_modules/bulma/sass/components
|
||||
/**
|
||||
* Extend or override Bulma's components,
|
||||
* ../../node_modules/bulma/sass/components
|
||||
*/
|
||||
|
||||
// Make menu items slightly less far apart so we never entirely lose
|
||||
// 'Community' on mid-size screens.
|
||||
// See https://gitlab.com/drutopia/octavia/issues/52
|
||||
/**
|
||||
* Make menu items slightly less far apart so we never entirely lose
|
||||
* 'Community' on mid-size screens.
|
||||
* See https://gitlab.com/drutopia/octavia/issues/52
|
||||
*/
|
||||
.navbar-item, .navbar-link {
|
||||
padding-left: .75rem;
|
||||
padding-right: .75rem;
|
||||
|
@ -14,8 +18,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
// Featured images on article pages
|
||||
|
||||
/* Featured images on article pages */
|
||||
.featured-image figure.image {
|
||||
width: 100vw;
|
||||
position: relative;
|
||||
|
@ -33,9 +36,7 @@
|
|||
padding: 0.5rem 1.5rem 1.5rem;
|
||||
}
|
||||
|
||||
// Give titles, from which we removed the Hero classes, the same padding
|
||||
// as sections.
|
||||
|
||||
/* Give titles, from which we removed the Hero classes, the same padding as sections. */
|
||||
.block-page-title-block {
|
||||
padding: 1rem 1.5rem;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue