mirror of
https://github.com/formax68/memoChron.git
synced 2026-07-22 05:45:44 +00:00
made a new class for settings-item
This commit is contained in:
parent
b25b33f1dc
commit
8a5c4d09ab
5 changed files with 15 additions and 11 deletions
|
|
@ -1,9 +1,9 @@
|
|||
{
|
||||
"id": "memochron",
|
||||
"name": "MemoChron",
|
||||
"version": "0.15.1",
|
||||
"minAppVersion": "1.8.9",
|
||||
"description": "Calendar integration and note creation for with support for public iCalendar URLs",
|
||||
"author": "Michalis Efstratiadis",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
"id": "memochron",
|
||||
"name": "MemoChron",
|
||||
"version": "0.16.0",
|
||||
"minAppVersion": "1.8.9",
|
||||
"description": "Calendar integration and note creation for with support for public iCalendar URLs",
|
||||
"author": "Michalis Efstratiadis",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "memochron",
|
||||
"version": "0.15.1",
|
||||
"version": "0.16.0",
|
||||
"description": "Calendar integration and note creation plugin for Obsidian",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -134,6 +134,9 @@ export class SettingsTab extends PluginSettingTab {
|
|||
const locationSetting = new Setting(containerEl)
|
||||
.setName("Note location")
|
||||
.setDesc("Where to save new event notes");
|
||||
|
||||
// Add our container class to the setting item
|
||||
locationSetting.settingEl.addClass("memochron-setting-item-container");
|
||||
|
||||
const locationInput = new TextComponent(locationSetting.controlEl);
|
||||
locationInput
|
||||
|
|
|
|||
|
|
@ -266,7 +266,7 @@
|
|||
border-bottom: none;
|
||||
}
|
||||
|
||||
.setting-item {
|
||||
.memochron-setting-item-container {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -4,5 +4,6 @@
|
|||
"0.13.2": "1.8.9",
|
||||
"0.14.0": "1.8.9",
|
||||
"0.15.0": "1.8.9",
|
||||
"0.15.1": "1.8.9"
|
||||
"0.15.1": "1.8.9",
|
||||
"0.16.0": "1.8.9"
|
||||
}
|
||||
Loading…
Reference in a new issue