Skip to content

Commit 4e8483b

Browse files
authored
Merge pull request #837 from kepano/superlight
Obsidian 1.9 updates
2 parents de81e71 + 2ce3563 commit 4e8483b

40 files changed

+407
-2960
lines changed

Minimal.css

Lines changed: 134 additions & 1021 deletions
Large diffs are not rendered by default.

manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Minimal",
3-
"version": "7.7.19",
4-
"minAppVersion": "1.6.1",
3+
"version": "8.0.0",
4+
"minAppVersion": "1.9.0",
55
"author": "@kepano",
66
"authorUrl": "https://twitter.com/kepano",
77
"fundingUrl": "https://www.buymeacoffee.com/kepano"

src/css/main.css

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

src/css/main.css.map

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

src/css/main.min.css

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

src/css/main.min.css.map

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

src/css/style-settings.css

Lines changed: 27 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,33 @@ settings:
185185
format: hex
186186
default-light: '#'
187187
default-dark: '#'
188+
-
189+
id: bases
190+
title: Bases
191+
type: heading
192+
level: 2
193+
collapsed: true
194+
-
195+
id: bases-toolbar-opacity
196+
title: Toolbar opacity
197+
type: variable-number-slider
198+
default: 1
199+
min: 0
200+
max: 1
201+
step: 0.05
202+
-
203+
id: bases-table-header-icon-display
204+
title: Table header icons
205+
type: variable-select
206+
allowEmpty: false
207+
default: none
208+
options:
209+
-
210+
label: Hidden
211+
value: none
212+
-
213+
label: Visible
214+
value: flex
188215
-
189216
id: blockquotes
190217
title: Blockquotes
@@ -2079,11 +2106,6 @@ settings:
20792106
title: Hide setting descriptions
20802107
description: Press and hold setting names to see their description.
20812108
type: class-toggle
2082-
-
2083-
id: styled-scrollbars
2084-
title: Styled scrollbars
2085-
description: Use styled scrollbars (replaces native scrollbars)
2086-
type: class-toggle
20872109
-
20882110
id: animations
20892111
title: Animation speed

src/scss/app/bases.scss

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
.bases-view {
2+
--bases-table-text-size: var(--table-text-size);
3+
}
4+
.bases-embed {
5+
.bases-header {
6+
height: auto;
7+
min-height: 0;
8+
.query-toolbar {
9+
padding-bottom: 2px;
10+
opacity: var(--bases-toolbar-opacity);
11+
transition: 0.15s 0.15s opacity;
12+
&:hover {
13+
opacity: 1;
14+
transition: 0s opacity;
15+
}
16+
}
17+
}
18+
}
19+
.bases-table-header-icon {
20+
display: var(--bases-table-header-icon-display);
21+
}

src/scss/components/folding.scss

Whitespace-only changes.

src/scss/components/indentation-guides.scss

Whitespace-only changes.

0 commit comments

Comments
 (0)