summaryrefslogtreecommitdiff
path: root/src/resources/themes/shared.css
Commit message (Collapse)AuthorAgeFilesLines
* css: Regenerate from scssAlexander Mikhaylenko2021-01-281-0/+4
|
* css: Regenerate from scssAlexander Mikhaylenko2021-01-281-1/+1
|
* fix(shared-css): remove theme_fg_color definition on clampIan Santopietro2020-11-171-5/+1
| | | | | | | | | Removes the `color: @theme_fg_color` property from the shared-base.scss (and subsequently generated CSS). Having this styling present appears to cause issues with certain themes using dark-colored header bars in otherwise light themes (like Pop, Yaru, Materia, certain Arc variants, etc.) and doesn't appear to cause any changes from the expected behavior when used for the Adwaita, High-Contrast, or elementary themes which are included in the styling.
* Replace languages list drag & drop green lines with an animationYetizone2020-09-161-8/+0
| | | | Also remove unused CSS style classes and regenerate CSS
* prefs-general-page: Move CSS data to _shared-base.scssYetizone2020-08-261-0/+12
| | | | | | Also regenerate CSS Fixes https://gitlab.gnome.org/GNOME/epiphany/-/issues/1281
* css: Regenerate from scssAlexander Mikhaylenko2020-08-181-0/+4
|
* Stop adding background in preferencesAlexander Mikhaylenko2020-07-311-2/+0
| | | | There's no need to as there's no GtkNotebook anymore.
* Move incognito eye into a separate widgetAlexander Mikhaylenko2020-07-311-1/+5
| | | | | This allows it to be on the left for mobile and maybe reduces theme breakages, but who knows.
* Improve contrast in preferences dialogsJan-Michael Brummer2020-07-191-0/+2
| | | | | | Set theme background color in preferences to improve contrast. Fixes: https://gitlab.gnome.org/GNOME/epiphany/-/issues/1257
* Flash notebook arrow in case new tab is not visibleJan-Michael Brummer2020-07-151-0/+4
| | | | Fixes: https://gitlab.gnome.org/GNOME/epiphany/-/issues/48
* css: Regenerate from SCSSAlexander Mikhaylenko2020-06-061-0/+2
|
* Redesign downloads arrowJan-Michael Brummer2019-12-171-0/+4
| | | | | | Add internal progress bar instead of filling the arrow. Fixes: https://gitlab.gnome.org/GNOME/epiphany/issues/1005
* css: Regenerate from SCSSAlexander Mikhaylenko2019-11-061-0/+4
|
* css: Regenerate from sassAlexander Mikhaylenko2019-10-061-5/+3
|
* css: Regenerate from scssAlexander Mikhaylenko2019-09-251-1/+5
|
* css: Regenerate from sassAlexander Mikhaylenko2019-09-231-0/+4
|
* Regenerate CSS from SASSAlexander Mikhaylenko2019-09-231-0/+2
|
* Add pinned tabs notificationJan-Michael Brummer2019-07-271-0/+2
| | | | Fixes: https://gitlab.gnome.org/GNOME/epiphany/issues/797
* Revert "Add pinned tabs notification"Michael Catanzaro2019-07-221-2/+0
| | | This reverts commit f798206b786b03e5d2696947b305be0b9ba38f1c
* Add pinned tabs notificationJan-Michael Brummer2019-07-101-0/+2
| | | | Fixes: https://gitlab.gnome.org/GNOME/epiphany/issues/797
* Add automation modeCarlos Garcia Campos2019-01-041-0/+2
|
* CSS: Regenerate CSS from SASSAlexander Mikhaylenko2018-08-291-1/+1
|
* CSS: Regenerate CSS from SASSAlexander Mikhaylenko2018-08-231-0/+2
|
* CSS: Regenerate CSS from SASSAlexander Mikhaylenko2018-08-231-160/+43
|
* Move progress bar into url boxJan-Michael Brummer2018-07-011-0/+20
| | | | | Moving loading progress bar into url box for EphyLocationEntry widgets. App mode keeps progress bar within embed widget.
* Add unified url barJan-Michael Brummer2018-06-191-1/+4
| | | | | | Unified URL bar moves reader mode button into the url bar. Fixes: https://gitlab.gnome.org/GNOME/epiphany/issues/39
* CSS: Change bookmarked star icon color to orangeJan-Michael Brummer2018-06-051-1/+1
| | | | Fixes: https://gitlab.gnome.org/GNOME/epiphany/issues/27
* Simpler custom CSS theming for non-Adwaita themesAdrian Perez de Castro2018-04-301-0/+137
In particular, the theming for the incognito windows tends to look odd with themes other than Adwaita. It is possible to load different CSS resources depending on the selected theme by handling changes to the GtkSettings::gtk-theme-name property: this splits the CSS into a "shared.css" part which contains the rules which play well with most themes, and an "Adwaita.css" which builds upon the shared CSS rules and is loaded only for the Adwaita theme. The CSS code is still generated from SCSS, with definitions used by SCSS snippets moved into a new _definitions.scss file to avoid repeating them. Note that instead of manually handling theme changes, EphyEmbedShell is changed to inherit from DzlApplication (instead of GtkApplication), which already implements the desired CSS resource loading behaviour. This makes the existing CSS loading code unneeded, and therefore it is removed. Also, the resources are moved into the resource path /org/gnome/Epiphany/themes as expected by DzlApplication. https://bugzilla.gnome.org/show_bug.cgi?id=783912