mirror of
https://github.com/TomSchimansky/CustomTkinter.git
synced 2023-08-10 21:13:13 +03:00
remove tabview colors in themes
This commit is contained in:
parent
b62543f332
commit
fcfda7ed24
@ -6,14 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
ToDo:
|
ToDo:
|
||||||
- complete other theme files
|
- complete other theme files
|
||||||
- create grayscale theme file
|
|
||||||
- change font attribute in wiki
|
- change font attribute in wiki
|
||||||
- add new button attributes to wiki
|
- add new button attributes to wiki
|
||||||
|
|
||||||
|
- create grayscale theme file
|
||||||
- cursor configuring
|
- cursor configuring
|
||||||
- overwrite winfo methods
|
- overwrite winfo methods
|
||||||
|
|
||||||
## Unreleased - 2022-10-2
|
## [5.0.0] - 2022-11-13
|
||||||
### Added
|
### Added
|
||||||
- Added CTkTextbox with automatic x and y scrollbars, corner_radius, border_width, border_spacing
|
- Added CTkTextbox with automatic x and y scrollbars, corner_radius, border_width, border_spacing
|
||||||
- Added CTkSegmentedButton
|
- Added CTkSegmentedButton
|
||||||
@ -42,9 +42,6 @@ ToDo:
|
|||||||
- Removed Settings class and moved settings to widget and window classes
|
- Removed Settings class and moved settings to widget and window classes
|
||||||
- removed customtkinter.set_spacing_scaling(), now set_widget_scaling() is used for spacing too
|
- removed customtkinter.set_spacing_scaling(), now set_widget_scaling() is used for spacing too
|
||||||
|
|
||||||
### Fixed
|
|
||||||
|
|
||||||
|
|
||||||
## [4.6.0] - 2022-09-17
|
## [4.6.0] - 2022-09-17
|
||||||
### Added
|
### Added
|
||||||
- CTkProgressBar indeterminate mode, automatic progress loop with .start() and .stop()
|
- CTkProgressBar indeterminate mode, automatic progress loop with .start() and .stop()
|
||||||
|
@ -39,10 +39,7 @@
|
|||||||
"scrollbar_button_hover": ["gray40", "gray53"],
|
"scrollbar_button_hover": ["gray40", "gray53"],
|
||||||
"segmented_button": ["#979DA2", "#4A4D50"],
|
"segmented_button": ["#979DA2", "#4A4D50"],
|
||||||
"segmented_button_unselected": ["#979DA2", "#4A4D50"],
|
"segmented_button_unselected": ["#979DA2", "#4A4D50"],
|
||||||
"segmented_button_unselected_hover": ["gray70", "gray41"],
|
"segmented_button_unselected_hover": ["gray70", "gray41"]
|
||||||
"tabview_button_frame": ["gray70", "gray35"],
|
|
||||||
"tabview_button": ["gray60", "gray45"],
|
|
||||||
"tabview_button_hover": ["gray50", "gray55"]
|
|
||||||
},
|
},
|
||||||
"text": {
|
"text": {
|
||||||
"macOS": {
|
"macOS": {
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import sys
|
import sys
|
||||||
import tkinter
|
import tkinter
|
||||||
import tkinter.ttk as ttk
|
import tkinter.ttk as ttk
|
||||||
from typing import Union, Callable, Tuple, Optional
|
from typing import Union, Callable, Tuple
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from typing import TypedDict
|
from typing import TypedDict
|
||||||
|
Loading…
Reference in New Issue
Block a user