aboutsummaryrefslogtreecommitdiff
path: root/libLumina/themes
Commit message (Collapse)AuthorAge
* Change the desktop icon text color to white by default: This just looks a ↵Ken Moore2015-11-23
| | | | lot better with this type of outlining, and is not too uncommon since Windows 10 also has white text by default for desktop icons.
* A couple changes to Lumina:Ken Moore2015-11-09
| | | | | | 1) Add 3 different "view modes" for applications in the start menu: Alphabetical (no categories), Partial Categories (same as before - still on list though), or Categories (need to click the category to go into it and see the applications).2) Fix the theming of partially checked checkboxes and groupboxes. 3) Force the desktop icons to have black text in the theme (no matter which color scheme is in use). 4) Adjust the outlining effects of the desktop icons to use a radial gradient now, so you get a smoother effect which does not steal eye focus as much on contrasting backgrounds.
* Adjust the theme file a little bit for some more visual cues about which ↵Ken Moore2015-10-15
| | | | list/tree widget currently has focus.
* Add Inheritance to the Lumian theme files.Ken Moore2015-10-13
| | | | Now you can specify: "INHERITS=<name of theme>" within the theme file and it will replace that line with the contents of the other theme (if it exists). This allows all the lumina-interface-specific settings to be put within the "None" theme, and the Lumina-Default theme just inherits those settings at the outset (a lot easier to maintain/adjust going forward).
* Remove the box outline for the applauncher plugin: the new font outlines ↵Ken Moore2015-10-13
| | | | takes care of readability instead now.
* Adjust the theming of the calendar widgets so that the day/week are a bit ↵Ken Moore2015-09-11
| | | | more distinct from the main days area
* Add come fixes to libLumina to work with the new systemstart plugin, and ↵Ken Moore2015-09-10
| | | | adjust the theme files accordingly.
* Update the Lumina-default theme a tiny bit (round off the borders for scroll ↵Ken Moore2015-08-14
| | | | bars, etc).
* Update the lumina themes and the PC-BSD color scheme a bit, and a couple ↵Ken Moore2015-07-09
| | | | more minor adjustments to case sensitivity in the luminaDesktop.conf parsing.
* Fix a bug in the writeFile() function when passed an empty list of text. ↵Ken Moore2015-06-20
| | | | This fixes the issue with removing the last "favorite" from the system causing a crash.Also make sure to remove any empty lines from the favorites when loading them.
* Oops, fix a typo where the accent color was still being used for the ↵Ken Moore2015-06-11
| | | | highlighted desktopview items.
* Adjust the themes to use the PRIMARY colors instead of the ACCENT colors for ↵Ken Moore2015-06-10
| | | | desktop plugin shaders/backgrounds. This ensures a uniformity with the panel appearance (when the panel is following the theme). Also add an entry for the new systemmonitor plugin.
* Update the included themes to ensure that the new Boot Splash is themed properlyKen Moore2015-05-21
|
* Clean up the new theme modifications a bit to remove some duplications and ↵Ken Moore2015-05-08
| | | | unintendeded aftereffects. Also move those new modifications into the "None" theme (since it impacts the desktop and not generic applications).
* Adapt the theme for the other pluginswi2015-05-08
|
* correct the menu colors of the desktop's iconswi2015-05-05
|
* New icon layout for the icons on the desktopwi2015-05-05
|
* Final fix for the default Lumina theme.Ken Moore2015-02-18
|
* Update the Lumina-default theme file a bit more.Ken Moore2015-02-18
|
* Another couple small fixes for the default lumina theme.Ken Moore2015-02-09
|
* Oops, forgot to add the new Lumina theme definitions into the "None" theme ↵Ken Moore2015-02-05
| | | | (so things still function properly).
* Finish cleaning up that last bits of hard-coded stylesheets, and tie them in ↵Ken Moore2015-02-05
| | | | to the lumina theme system.
* Clean up the default theme template a bit more, and remove some leftover ↵Ken Moore2015-02-04
| | | | stylesheet declarations in the lumina-config ui file.
* Find/fix a couple other issues with the themes files.Ken Moore2015-02-03
|
* Update the theme files that are included with Lumina (much nicer now).Ken Moore2015-02-03
|
* Update the themes that are included within Lumina.Ken Moore2015-01-19
|
* Update the Lumina-default theme template to work properly with Qt5.Ken Moore2015-01-05
|
* Clean up the default theme template a little bit.Ken Moore2014-11-10
|
* Add a new Lumina Theme: NoneKen Moore2014-11-10
| | | | This disables all the special Qt theming (except for the custom font/font size), and will use the default theme for Qt.
* Oops, add the default theme template to the Lumina build. Now users will ↵Ken Moore2014-10-15
| | | | actually have a theme available by default that can be edited/changed.
* Large update to the Lumina project: provide full theming capabilities.Ken Moore2014-10-10
| | | | | | | | | | | | | 1) New libLumina classes: LuminaThemes.h 2) Single-line usage to add lumina theme usage to an application (already added to all the Lumina utilities) 3) Include a Lumina-default theme template, as well as a single color scheme (will add more later) 4) Will create a global Qt style for "lumina" so that this theme engine can be automatically applied to all Qt applications at a later date (want to make sure to beat this up and get it working reliably before turning it on for everything). Major Features: 1) Full Qt theme capabilities through Qt stylesheets (so they can be modified and applied on the fly). 2) Stylesheets are broken into a couple pieces: an "incomplete" stylesheet file (the theme template) with variables in place of colors, font size, and font family. A "color" file which variable->value definitions for the different colors. And a themesettings.cfg files which keeps track of the files/font settings. 3) Along with this, add the ability to specify the icon theme that is used as well, and make that automatically re-loaded as necessary. 4) Add the ability to read/set thes values in lumina-config. The lumina-config usage is still a bit rough: working on cleaning it up right now.
* Get the new LuminaThemes class working with a sample color theme for Insight ↵Ken Moore2014-10-06
(for testing). The theme loading/usage appears to be working, now I just need to generalize the theme template so that it applies to all the QAbstract* widgets
bgstack15