Skip to content

Commit

Permalink
Internal: New screenshot (#212)
Browse files Browse the repository at this point in the history
* few comments

* Tested up to 5.6

* remove duplicate

* add utilities scss

* Post Password Form Submit button alignment

When a post is password-protected, the Post Password Form Submit button isn't aligned properly.

* Update Changelog

* Move Hello Theme Header & Footer experiment to stable status

* Changelog

* Build

* Add ref to changelog

* Aligned page title to the header and footer

* Internal: Add accessibility-ready tag

* Tweak: Remove unused image file

* Internal: update text & links

* Internal: fix URL

* Tweak: Mark the header footer tab in the customizer

* Fix: Remove override the default width

* Changelog

* Tweak: Add theme_support for `script` and `style` to avoid validation warnings (#184)

* A different way to align title

* changelog

* Tweak: Add output escaping, fixed: #194

* Tweak: Added Skip to Content link to dynamic or template header

* Changelog

* Update header.php

* Changelog

* changelog

* changelog

* Update release date

* Update date release

* Internal: New screenshot

* Fix: Tables with various colors looks weird (#126)

* Changelog

Co-authored-by: Roman <romanbondar@users.noreply.github.com>
Co-authored-by: Yakir Sitbon <kingyes1@gmail.com>
  • Loading branch information
3 people committed Jul 11, 2022
1 parent 83659d4 commit f97ba30
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
17 changes: 11 additions & 6 deletions assets/scss/reset/_table.scss
Expand Up @@ -4,8 +4,13 @@
* To override any of the settings in this section, add your styling code in the custom directory.
*/

$table-border-color: #80808080;
$table-bg: transparent;
$table-bg-odd: #8080801a;
$table-bg-hover: #80808012;

table {
background-color: transparent;
background-color: $table-bg;
width: 100%;
margin-bottom: 15px;
font-size: 0.9em;
Expand All @@ -17,7 +22,7 @@ table {
padding: 15px;
line-height: 1.5;
vertical-align: top;
border: 1px solid $gray-light;
border: 1px solid $table-border-color;
}

th {
Expand All @@ -42,7 +47,7 @@ table {

th,
td {
border-top: 1px solid $gray-light;
border-top: 1px solid $table-border-color;
}
}
}
Expand All @@ -52,17 +57,17 @@ table {

> tr:nth-child(odd) > td,
> tr:nth-child(odd) > th {
background-color: $gray-lightest;
background-color: $table-bg-odd;
}

tr:hover > td,
tr:hover > th {
background-color: darken($gray-lighter, 2%);
background-color: $table-bg-hover;
}
}

tbody + tbody {
border-top: 2px solid $gray-light;
border-top: 2px solid $table-border-color;
}

@media (max-width: $screen-sm - $screen-diff) {
Expand Down
4 changes: 4 additions & 0 deletions readme.txt
Expand Up @@ -90,6 +90,10 @@ Source: https://stocksnap.io/photo/4B83RD7BV9

== Changelog ==

= 2.6.1 - 2022-07-12 =
* Fix: Tables looks weird on certain backgrounds ([#126](https://github.com/elementor/hello-theme/issues/126))
* Fix: Remove unnecessary PHP tags ([#213](https://github.com/elementor/hello-theme/issues/213))

= 2.6.0 - 2022-07-10 =
* Tweak: Added `theme_support` for `script` and `style` to avoid validation warnings ([#184](https://github.com/elementor/hello-theme/issues/184))
* Tweak: Sanitized content for allowed HTML tags in post title ([#118](https://github.com/elementor/hello-theme/issues/118))
Expand Down
Binary file modified screenshot.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f97ba30

Please sign in to comment.