Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix!: keep the naming convetion the same for all display vars #68

Merged
merged 1 commit into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chrome/defaults.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
--tf-rounding: 0px; /* Border radius used through out the config */
--tf-margin: 0.8rem; /* Margin used between elements in sidebery */
--tf-display-horizontal-tabs: none; /* If horizontal tabs should be shown, none = hidden, block = shown */
--tf-nav-buttons-display: none; /* If the navigation buttons (back, forward) should be shown, none = hidden, block = shown */
--tf-display-nav-buttons: none; /* If the navigation buttons (back, forward) should be shown, none = hidden, block = shown */
--tf-newtab-logo: " __ __ ____ \A / /____ _ __/ /_/ __/___ _ __\A / __/ _ \\| |/_/ __/ /_/ __ \\| |/_/\A / /_/ __/> </ /_/ __/ /_/ /> < \A \\__/\\___/_/|_|\\__/_/ \\____/_/|_| ";
}
2 changes: 1 addition & 1 deletion chrome/navbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/* configurable navigation buttons */
#back-button,
#forward-button {
display: var(--tf-nav-buttons-display);
display: var(--tf-display-nav-buttons);
}

/*
Expand Down
2 changes: 1 addition & 1 deletion nix/hm-module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ in {
(lib.strings.concatStrings [ " --tf-border-radius: " cfg.config.border.radius ";" ])
(lib.strings.concatStrings [ " --tf-sidebery-margin: " cfg.config.sidebery.margin ";" ])
(lib.strings.concatStrings [ " --tf-display-horizontal-tabs: " (if cfg.config.displayHorizontalTabs then "block" else "none") ";" ])
(lib.strings.concatStrings [ " --tf-nav-buttons-display: " (if cfg.config.displayNavButtons then "block" else "none") ";" ])
(lib.strings.concatStrings [ " --tf-display-nav-buttons: " (if cfg.config.displayNavButtons then "block" else "none") ";" ])
(lib.strings.concatStrings [ " --tf-newtab-logo: " cfg.config.newtabLogo ";" ])
" }"
];
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ border radius it would look like this:
--tf-rounding: 0px; /* Border radius used through out the config */
--tf-margin: 0.8rem; /* Margin used between elements in sidebery */
--tf-display-horizontal-tabs: none; /* If horizontal tabs should be shown, none = hidden, block = shown */
--tf-nav-buttons-display: none; /* If the navigation buttons (back, forward) should be shown, none = hidden, block = shown */
--tf-display-nav-buttons: none; /* If the navigation buttons (back, forward) should be shown, none = hidden, block = shown */
--tf-newtab-logo: " __ __ ____ \A / /____ _ __/ /_/ __/___ _ __\A / __/ _ \\| |/_/ __/ /_/ __ \\| |/_/\A / /_/ __/> </ /_/ __/ /_/ /> < \A \\__/\\___/_/|_|\\__/_/ \\____/_/|_| ";
}
```
Expand Down